Threaded Code examples

Link/UrlTags
OpenMP [Knowledgebase]
OpenMP samples   These samples can be downloaded from Open MP Source code repository in SourceForge.  Also refer to  OpenMP specifications in openmp.org.   List of samples in the above ...

Posted: 2009-03-09 14:16:42 by
Multi-thread apps for Multi-Core, Threaded Code examples, Glossary of Technical Terms, Parallel Programming & Multi-Core
AE provided [Knowledgebase]
These samples are from Intel® application engineers. OpenMP and Win32 Threads Usage Example by Stanislav BratanovThe code example computes a trigonometric formula for arrays of input coefficie ...

Posted: 2009-03-01 21:39:08 by
Multi-thread apps for Multi-Core, Threaded Code examples
From online books [Knowledgebase]
  Evaluation Only. Created with Aspose.Words. Copyright 2003-2006 Aspose Pty Ltd. Technical Books for Multi-Core Software Developers Multi-thread apps for Multi-core; Threaded Code Examples These ...

Posted: 2008-11-24 16:00:03 by
Multi-thread apps for Multi-Core, Threaded Code examples
Open source samples [Knowledgebase]
Technion Software Systems Lab Projects The students in the Technion university took some open source projects, optimized them using a variety of techniques including threading and microarchitectu ...

Posted: 2009-03-09 14:19:20 by
Multi-thread apps for Multi-Core, Threaded Code examples
Parallel for [Knowledgebase]
Parallel seismic simulation that demonstrates use of parallel_for.   SeismicSimulation.h============================================================================== Copyright 2005-2006 Intel Corp ...

Posted: 2009-03-09 15:19:25 by
Threading Building Blocks, Multi-thread apps for Multi-Core, Threaded Code examples
Parallel for -Tachyon [Knowledgebase]
Parallel raytracer / renderer that demonstrates the use of parallel_for. This example includes software developed by John E. Stone. See below for copyright information. Tachyon Ray Tracing System This ...

Posted: 2009-03-09 15:50:19 by
Threading Building Blocks, Multi-thread apps for Multi-Core, Threaded Code examples
Parallel reduce [Knowledgebase]
Parallel version of the Sieve of Eratosthenes Copyright 2005-2006 Intel Corporation. All Rights Reserved. Example program that computes number of prime numbers up to n, where n is a command line ...

Posted: 2009-03-11 16:45:28 by
Threading Building Blocks, Multi-thread apps for Multi-Core, Threaded Code examples
Parallel while [Knowledgebase]
Introduction Example that uses parallel_while to do parallel preorder traversal of a sparse graph. Each vertex in the graph is called a "cell". Each cell has a value. The value is a matrix. Some ...

Posted: 2009-03-11 15:37:43 by
Threading Building Blocks, Multi-thread apps for Multi-Core, Threaded Code examples
Pipeline [Knowledgebase]
Text filter that demonstrates class pipeline text_filter.cpp Copyright 2005-2006 Intel Corporation. All Rights Reserved.   Example program that reads a file of text and changes the first l ...

Posted: 2009-03-11 14:58:37 by
Threading Building Blocks, Multi-thread apps for Multi-Core, Threaded Code examples
Substring finder [Knowledgebase]
Introduction A simple example that uses the parallel_for template in a substring matching program. For each position in a string, the program displays the length of the largest matching substring ...

Posted: 2009-03-11 14:48:02 by
Threading Building Blocks, Multi-thread apps for Multi-Core, Threaded Code examples
Task - tree sum [Knowledgebase]
Introduction This is a simple example that sums values in a tree. The example exhibits some speedup, but not a lot, because it quickly saturates the system bus on a multiprocessor. For good speed ...

Posted: 2009-03-11 11:31:39 by
Threading Building Blocks, Multi-thread apps for Multi-Core, Threaded Code examples
NearestNeighbors [Knowledgebase]
Problem Statement You will be given two sets of points in N-dimensional space: A and B. Your task is: for every point b in set B, find the point a in set A that is closest to b (using E ...

Posted: 2009-03-01 20:27:55 by
Multi-thread apps for Multi-Core, Threaded Code examples, TopCoder* contests
StringSearch [Knowledgebase]
Problem Statement      The goal of this problem is to search a large string, S, (up to 2 million characters) for smaller strings, u, (up to 100K each). Given a string t=u[n], you w ...

Posted: 2008-12-05 16:37:14 by
Multi-thread apps for Multi-Core, Threaded Code examples, TopCoder* contests
Threading case studies [Knowledgebase]
Introduction This section contains a number of projects where a single-threaded application has been taken, converted to use multi-threading, and the performance improvements measured and docume ...

Posted: 2009-03-01 20:04:39 by
Multi-thread apps for Multi-Core, Threaded Code examples, TopCoder* contests