Introduction to Parallel Runtime Library
June 25, 2009 – 4:27 pmParallel Runtime Library is library designed to provide parallel APIs. PRL designed for High Performance Computing and its work in .NET platform. Why Parallel Runtime Library: In single core/processor it's fine and easy to manage the concurrency, and the threading that work, but because the multi-core/processor become common it's important to use a different approach to manage the concurrency, and the threading for real Parallel Computing. The main reason of developing Parallel Runtime Library is allow the parallel computing for the High Performance Computing into .NET, and make it easy and mature. The main point with the Parallel Runtime Library is allows the developers to develop parallel software and algorithms so easy without care about how to scheduling and manage the tasks. Also Parallel Runtime Library it's great way to learn how the scheduling algorithm, lock-free data structure works. You many ask me, Why HPC in .NET ? A lot of people only consider ...