Tagged Questions

0
votes
5answers
690 views

Parallel iteration in C#?

Is there a way to do foreach style iteration over parallel enumerables in C#? For subscriptable lists, I know one could use a regular for loop iterating an int over the index rang …
1
vote
1answer
89 views

When should you not use the new parallel loop functions in c#

For maintainability purposes, my impulse is to simply use parallel processing all the time. For simple loops it sounds like there is overhead which could actually slow the function …
3
votes
2answers
51 views

How can I run Test::Perl::Critic in parallel?

I've written a simple test case based on Test::Perl::Critic which runs critic on every single source file in the repository (all_critic_ok). However, this test takes a long time, e …
1
vote
3answers
37 views

C# 4.0 AsParallel() UnAuthorizedAccessException when accessing the file system

I am using the C# 4.0 AsParallel() extension method and getting an UnAuthorizedAccessException when accessing the file system foreach (var item in items.AsParallel()) { File.O …
3
votes
3answers
118 views

minimum work size of a goroutine

Does anyone know approximately what the minimum work size is needed in order for a goroutine to be beneficial (assuming that there are free cores for the work to be offloaded to)?
3
votes
6answers
187 views

Parallel programming course or classification and prediction course?

Well I can't decide if I should take the "Parallel Programming and Architectures" course, or the "Algorithms for Classification and Prediction" course ... so I figured I'd ask my v …
0
votes
2answers
56 views

Sorting a 3 parallel list that includes strings and numeric value in Python

how to sort using 3 parallel array lists: num1 = ['a','b','c,'] num2 = ['apple','pear','grapes'] num3 = [2.5,4.0,.68] I used 2 for statements followed by a if statement. Sorting …
0
votes
4answers
162 views

how can I iterate through two lists in parallel in Python? [closed]

Possible Duplicates: Iterate a list as tuples in python How do I iterate over the tuples of the items of two or more lists in Python? I have two iterables in Python and …
4
votes
2answers
64 views

Best practices for writing parallel unit tests

I'm looking into using parallel unit tests for our project(s) and was wondering about any best practices for actually writing such parallel unit tests.
2
votes
3answers
304 views

Parallel “insertions” into a binary trie in Haskell

I have a list of n-bit "words" type BitWord = [Bool] and a trie which stores the word from the top to bottom: data Tree = Bs Tree Tree -- Bs (zero_bit) (one_bit) | X …
0
votes
1answer
46 views

How to parllelize this, using OPENMP sections

Hi, I have this function which i want to parallelize using openmp sections. I broke the function into various sections and applied #pragma omp sections but it gives segmentation fa …
0
votes
1answer
25 views

DirectShow on multiple machines with wcf

Is it any how possible to run DirectShow on multiple machines with wcf?
2
votes
6answers
380 views

Parallel SSH in Python

Hi, I wonder what is the best way to handle parallel SSH connections in python. I need to open several SSH connections to keep in background and to feed commands in interactive or …
0
votes
1answer
29 views

Can variable which is declared in same procedure body where tasks are be considered as shared for these tasks?

Variable is used in 1 task only, but the question is: can it be CALLED shared?
2
votes
3answers
160 views

Emulating fork() on Win32? [closed]

Possible Duplicates: What’s the best way to duplicate fork() in windows? What is the closest thing windows has to fork()? Is there a good way to emulate Unix fork( …

1 2 3 4 5 next
15 30 50 per page