PLINQ is a parallel query execution engine for LINQ. PLINQ supports the data parallelism pattern by adding additional syntax to allow queries to be declared as running in parallel.

learn more… | top users | synonyms

3
votes
2answers
50 views

Using PLINQ AsParallel() on a range

I'd like to rewrite this Parallel.For loop using a PLINQ method AsParallel(). As far as I have seen, AsParallel() requires passing an entire sequence to it, eg create Array A, then call ...
4
votes
1answer
81 views

Memory usage constraints on thread count using PLINQ

I'm using PLINQ to data-parallelize an operation. Each thread consumes a very large amount of memory which is variable based on algorithm settings, there's no easy way to pre-calculate how much memory ...
2
votes
1answer
106 views

How to do Parallel filtering

How do I achieve parallel filtering in F#? Basically I want to do Array.Parallel.Choose except with a sequence expression to create an Array. I tried: Async.Parallel [for x in 1..40 do yield async { ...
2
votes
1answer
81 views

How Am I Botching PLINQ? (Parallelizing Simple/Fast Computations)

I'm trying to use PLINQ to speed up a simple simulation, but I'm managing to slow it down instead (uncommented AsParallel runs slower): class Program { private static readonly Random Random = new ...
3
votes
1answer
56 views

understanding PLINQ bottleneck in tree search

I'm having some strange results with PLINQ that I can't seem to explain. I've been trying to parallelize an Alpha Beta tree search to speed up the search process, but it is effectively slowing it ...
2
votes
2answers
132 views

Can PLINQ or TPL suffocate .net thread pool and IIS request processing queue?

Here is a scenario. A gateway hosted by IIS. A request may require issuing multiple independent other requests to another service each of which may take up to several seconds. Naturally I thought it ...
0
votes
0answers
80 views

Having an array of task pools with identifiers that need to be load balanced how to run them in one thread bool?

Say we have something similar to Dictionary<int, List<Task>> UsersTasks. We want to have a fixed Max Degree Of Parallelism == N (< 32). where each user from UsersTasks would get tasks ...
0
votes
1answer
37 views

Is it a typo in MSDN aticle about 10 first items ordered in PLINQ query or..?

The MSDN article "Order Preservation in PLINQ" states: The following example overrides the default behavior by using the AsOrdered operator on the source sequence. This ensures that the Take ...
1
vote
2answers
79 views

Sending multiple messages to WCF operation using plinq (multithreading)

I'm not exactly sure how a WCF proxy class will handle sending requests through plinq. Does the following code snippit look ok, or does it look like it could cause problems with shared state across ...
2
votes
1answer
81 views

Parallel inner join

I want to perform inner join between products and categories with using PLINQ. But I'm not sure if I should call AsParallel method for both collections. // PLINQ - Option 1 jointTables = from c ...
3
votes
3answers
102 views

Speculative execution using the TPL

I have a List<Task<bool>> that I want to enumerate in parallel finding the first task to complete with a result of true and not waiting for or observe exceptions on any of the other tasks ...
4
votes
2answers
81 views

How do I get lazy loading with PLINQ?

One of the nice things about linq was having infinite data sources processed lazily on request. I tried parallelizing my queries, and found that lazy loading was not working. For example... class ...
2
votes
1answer
62 views

Why doesn't WithMergeOptions(ParallelMergeOptions.NotBuffered) make results available immediately?

(I am currently restricted to .NET 4.0) I have a situation where I want to process items in parallel as much as possible, order must be maintained, and items can be added at any time until "stop" is ...
3
votes
3answers
107 views

Track progress when using TPL's Parallel.ForEach

What is the best way way to track progress in the following long total = Products.LongCount(); long current = 0; double Progress = 0.0; Parallel.ForEach(Products, product => { try { ...
2
votes
1answer
39 views

ParallelQuery core balancing

I have 200,000 tasks that will run in parallel for speed gains. I'm using ParallelEnumerable.Range(0, 200000).Sum( a => /*do_something*/ ). as the task counter goes from 0 to 200,000 the required ...
3
votes
2answers
124 views

Find differences of 2 collections with 40K objects

I have 2 collections both containing the same type of object and both collections have approximately 40K objects each. The code for the object each collection contains is basically like a dictionary ...
1
vote
0answers
25 views

Semantics of reducer and combiner in PLINQ

Inspired by Clojure 1.5's reducers library, I've been playing with making PLINQ's ParallelEnumerable.Aggregate() method behave the same way. For the most part, it very straightforwardly does. There's ...
5
votes
2answers
87 views

Taking advantage of PLINQ with custom Enumerable Extensions

Many custom Enumerable extensions can be implemented in terms of other builtin operations - for example this trivial convenience method: public static bool AnyOf<TElement>(this TElement item, ...
0
votes
1answer
77 views

Running a simple LINQ query in parallel

I'm still very new to LINQ and PLINQ. I generally just use loops and List.BinarySearch in a lot of cases, but I'm trying to get out of that mindset where I can. public class Staff { // ... public ...
1
vote
1answer
52 views

How do I parallelise this with or without PLINQ?

I have the following code snippet: // Initialise rectangular matrix with [][] instead of [,] double data[][] = new double[m]; for (int i = 0; i < m; i++) data[i] = new double[n]; // Populate ...
0
votes
0answers
76 views

Is it a good idea to integrate Plinq and cuda [closed]

Would it be possible to create a linq type of wrapper of CUDA library? A user just use list.CudaForEach(x=>{...}) to call cuda with possible some dividing scheme in the function to use Cuda for ...
2
votes
1answer
53 views

PLinq on single CORE processor

Will the performance of PLINQ be any different from a normal LINQ query when you have only a single CORE processor assuming that you are querying a collection having one million records. I understand ...
4
votes
2answers
108 views

Modification of a local variable to null, via another thread, how is that possible

While I'm working on parallelism of our framework, I've confronted a strange condition which I can't imagine why! I simplified the situation to describe it easy. consider this code: foreach(var ...
1
vote
1answer
162 views

Make C# ParallelEnumerable.OrderBy stable sort

I'm sorting a list of objects by their integer ids in parallel using OrderBy. I have a few objects with the same id and need the sort to be stable. According to Microsoft's documentation, the ...
0
votes
3answers
67 views

How does PLINQ Order input

If I have the following order in an IEnumerable (list) : 1 - 2 - 3 - 4 - 5 and If I run a PLINQ query on this say : list.AsParallel().AsOrdered().WithDegreeOfParallelism(10).Select( ...
3
votes
1answer
67 views

PLINQ O(n^2) while modifying basis list

Suppose I have this sequential function: private void Process() { for (int i = 0; i < Particles.Count; i++) for (int j = 0; j < Particles.Count; j++) if (check(Particles[i], ...
3
votes
3answers
234 views

PLINQ AsParallel().ForAll() accessing resource

Suppose I have a number of Particles in X,Y space, and I want to normalise them all such that the average X and Y are 0. Serial implementation: public void Normalise() { double avgX = 0.0; ...
0
votes
1answer
114 views

Parallel Linq query fails to execute

Hello I have just started to try and understand Parallel Linq and with my first attempt I am having no success. I am using EF 4.0 and a repository pattern class that I created to query the data. I ...
1
vote
2answers
58 views

plinq select count where all functions evaluate true

I have a set of data all doubles: 100 rows 20 columns I’m pulling the data into a IEnumerable list with: var RowsOfData = File.ReadLines(dll.Globals.OutputDir + dll.Globals.filename).Select(a ...
1
vote
0answers
105 views

PLINQ Custom Partitioner to allow iterating long ranges

I need help in creating a custom partitioner for PLINQ that will let me iterate over IEnumerable with length greater than Int32. This is in reference to this question where the answer given to me was ...
3
votes
1answer
67 views

Plinq inside Plinq?

Let's say I have a DataTable. var dt = getDataTable(); and then I do Parallel.For (0, dt.Rows.Count, i => Foo (dt.Rows[i])); Foo is a function which do some calculations on a row. Should ...
3
votes
1answer
202 views

PLINQ query giving overflow exception

I'm running a PLINQ query as follows: ParallelQuery<string> winningCombos = from n in nextComboMaker.GetNextCombo() ...
1
vote
1answer
149 views

Does PLINQ respect SynchronizationContext?

Say, I have the following code: IPrincipal capturedPrincipal = Thread.CurrentPrincipal; myseq.AsParallel().Select(x => { Thread.CurrenctPrincipal = capturedPrincipal; /*call code protected ...
4
votes
1answer
172 views

Refactor LINQ ForEach to return IEnumerable<T>

I am creating an array with the following CreateArray static method: public static int[] CreateArray(int size) { var ret = new int[size]; ret[0] = 0; ret[1] = 1; ...
0
votes
1answer
119 views

.NET parallel LINQ equivalent in Ruby [closed]

I want to be able to do something like this in Ruby: (new[]{"http://google.com", "http://facebook.com", "http://microsoft.com", "http://twitter.com", "http://stackoverflow.com"}) .AsParallel() ...
5
votes
1answer
143 views

How to start processing the results of a Parallel query, in order, before the query has finished?

I have a collection of strings which I need to perform two operations on. The first of these can safely be processed independently in any order (yay), but then the output must be processed ...
0
votes
1answer
75 views

PLINQ query, need to know how many iterations performed

what I'm basically doing is iterating in parallel over a sequence of letter combinations, when I get the combo I want it's considered a win. I want to get all the wins from this query (which it's ...
1
vote
1answer
100 views

Process a list with a nested loop using PLINQ

I had a loop like this: this.results = new List<Tuple<int, IEnumerable<Thing>>>(); var utcNow = DateTime.UtcNow; var resultsLocker = new object(); ...
4
votes
2answers
188 views

PLINQ not improving the performance

I wrote a LINQ to find out frequencies of unique characters from a text file.I was also transforming my initial result into an object with the help of select.The final result comes out in the form of ...
3
votes
1answer
134 views

Plinq's Range partitioning vs Chunk partitioning?

In which scenarios Will Range partitioning will be better choice than Chunk partitioning ? (and vise verse) I already know that Chunk partitioning : grabbing smal chunks of elements from the ...
0
votes
1answer
146 views

Performance Linq

Today I tested the performance impacts of Linq and PLinq querys. Therefore I used the article on msdn How to: Measure PLINQ Query Performance. void Main() { var source = Enumerable.Range(0, ...
2
votes
1answer
245 views

Plinq, Cores and WithDegreeOfParallelism?

AS far as I understood , Plinq decides how many thread to open ( each on a thread on different core) by cores count. __________ Core 1 Core 2 Core 3 Core 4 ___________ So If I Have a Plinq ...
6
votes
1answer
89 views

Why would OutOfMemoryException be thrown while using PLINQ Take()?

After I upgraded to DotNet 4.5, a query started giving me OutOfMemoryExceptions. The (distilled) query is: var tests = new int[]{} .AsParallel() .GroupBy(_ => _) .Take(int.MaxValue) ...
2
votes
1answer
223 views

AsParallel crashing a MonoTouch app

MonoTouch advertises support for AsParallel on its website with this code snippet: from item in items.AsParallel () let result = DoExpensiveWork (item) select result; However, even a trivial ...
1
vote
2answers
263 views

Parallel.ForEach changes behavior with more than one thread

I have an array of files that are having write operations performed on them, I'm using a Parallel.ForEach loop to speed this up. The problem is that when I have more than one thread, it behaves ...
0
votes
1answer
112 views

partition data into chunks and then assure thread safty

i'm writing some code that basically receive data from socket, perform deserialization and then passed to my application.the deserialized objects can be grouped by their id's (the id is being ...
1
vote
1answer
84 views

Plinq in a single core?

As far as I understand: Programming to leverage multicores or multiple processors is called parallel programming. But what about If I don't have >1 cores ? Does a command like: ...
5
votes
1answer
156 views

Application hangs using PLINQ AsParallel(). No problems with LINQ

I'm new to LINQ and PLINQ, and I'm building a project to test them. Stub: class Stub { private Boolean mytf; public Stub() { Random generator = new Random(); if ...
1
vote
2answers
402 views

C# Parallel ForEach hold value

I am working on an app that searches for email addresses in Google search results' URLs. The problem is it needs to return the value it found in each page + the URL in which it found the email, to a ...
0
votes
1answer
113 views

How to use parallel linq when two enumerables need to be combined

I have two enumerables that I would like to use with PLINQ, how do I combine them correctly? Here they are: List<Message> messageList=...; IEnumerable<int> ...

1 2 3 4