Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / parallel

Parallel

parallel

Great Reads

by dmihailescu
UI and concurrent programming using IAsyncResult, BackgroundWorker, TPL, and ‘async’ syntax.
by Arman Aşçı
Time division multiplexing between 6 x 7-Segment displays control with Parallel Port and x86 assembly.
by Wayne Wood
Verify the execution efficiency of a short CUDA program when using the library thrust
by Wayne Wood
Verify the execution efficiency of a series of short .NET 4.0 parallel programming samples

Latest Articles

by dmihailescu
UI and concurrent programming using IAsyncResult, BackgroundWorker, TPL, and ‘async’ syntax.
by Arman Aşçı
Time division multiplexing between 6 x 7-Segment displays control with Parallel Port and x86 assembly.
by Wayne Wood
Verify the execution efficiency of a short CUDA program when using the library thrust
by Wayne Wood
Verify the execution efficiency of a series of short .NET 4.0 parallel programming samples

All Articles

Sort by Score

parallel 

by Girish J Jain
In this post, I am going to talk about asynchronous programming in Microsoft .NET Framework in the form of questions and answer.
by Minh Danh Nguyen (ToughDev)
Emulate parallel port printer to capture data from Tektronix 1230 Logic Analyzer
by Jake Drew
ML methods using bootstrap samples and parallel processing to model very large volumes of data in short periods of time
by Adnan Boz
In this blog post, I’m diving deeper into Thrust usage scenarios with a simple implementation of Monte Carlo Simulation.
by Adnan Boz
Massively Parallel Random Nunber Generation using CUDA C, Thrust and C#
by Jake Drew
How to mine webpages in parallel
by Alexander Golde
Parallel execution in ANKHOR flowsheet
by Alexander Golde
While Moores law is still intact, one can easily observe that there has been a plateau reached at the performance improvements due to an increase in GHz.
by Amir Zuker
I've been playing around with the parallel extensions shipped as part of the .NET 4.0 and Visual Studio 2010 RC. Turning immutable atomic self-contained CPU-bound operations to run in parallel is pretty easy. However...
by Aron Weiler
Parallel for loop in C#
by Adarsh Chaurasia - Passionate Trainer
Summary about Parallel Programming in C# 4.0 with comparative study of the PFX (Parallel Programming Framework) technologies with each other
by George Mamaladze
Parallel Programing, PLINQ and Globalization
by Jake Drew
ABSTRACT This article comprises a detailed overview of the various multicore and parallel programming options available within the C# programming language.
by Koder Hack
Parallel programming using Microsoft .NET Framework 4.0
by TheCannyCoder
Parallel Streams and Spliterators
by Naveen
An improvisation to boost unit test frame work that will let you run unit test cases in parallel.
by John Michael Hauck
“Programming Massively Parallel Processors (second edition)” by Kirk and Hwu is a very good second book for those interested in getting started with CUDA.
by PascalLandau
In the fifth part of this tutorial series on developing PHP on Docker we will setup some PHP code quality tools and provide a convenient way to control them via GNU make.
by Trần_Tuấn_Anh
Understanding synchronization in Java is crucial for developing multi-threaded applications. One of the powerful synchronization tools available in Java is the CyclicBarrier. This article delves into what a CyclicBarrier is, how it works, and provides practical examples and demo results.
by Trần_Tuấn_Anh
The Fork/Join Framework is an essential tool in Java for optimizing parallel processing tasks. It is designed to take full advantage of multi-core processors by breaking down large tasks into smaller subtasks, executing them in parallel, and then combining the results.
by Trần_Tuấn_Anh
In Spring Framework, the singleton bean scope is the default and most commonly used scope. Despite its widespread use, many developers wonder how a singleton bean can handle multiple parallel requests in a multi-threaded environment without running into concurrency issues.