James Dean
|
Registered User
|
|
|
1d |
asked | Can one configure gdb/ddd to never step into certain functions? |
|
Nov 13 |
comment |
How to combine Pool.map with Array (shared memory) in Python multiprocessing? The assert on pickling the shared data array seems to be an artificial constraint on using the shared resource with multi-processing but given that constraint you have provided some reasonable workarounds so I will give you the points for accepted answer. |
|
Nov 13 |
comment |
How to combine Pool.map with Array (shared memory) in Python multiprocessing? I had a closer look at the source code and the information about the shared memory can be pickled (needed to get info about it over to the client process on windows) but that code has an assert to only run during process spawning. I wonder why that is. |
|
Nov 12 |
revised |
How to combine Pool.map with Array (shared memory) in Python multiprocessing? added 162 characters in body |
|
Nov 12 |
comment |
How to combine Pool.map with Array (shared memory) in Python multiprocessing? You are getting closer but there is still the issue that the toShare array length has to be fixed before the pool is created. So you are still creating the shared memory segment before the processes are created. What I really want to see as a general solution is a way to create a new variable length shared array after the pool is created, pass info about it to the worker process and have it read from it. |
|
Nov 12 |
comment |
How to combine Pool.map with Array (shared memory) in Python multiprocessing? So the real problem seems to be that how we can pickle the information about an Array so it can be send and connected to from the other process. |
|
Nov 12 |
comment |
How to combine Pool.map with Array (shared memory) in Python multiprocessing? Even on platforms with fork you can not insert new shared data into toShare after the fork since each process will have its own independent copy at that point. |
|
Nov 4 |
comment |
How to combine Pool.map with Array (shared memory) in Python multiprocessing? You are right that it is safe on fork based platforms. But I would like to know if there is a shared memory based way to share large amounts of data after the process pool is created. |
|
Nov 4 |
comment |
How to combine Pool.map with Array (shared memory) in Python multiprocessing? I do not believe the use of globals is safe and would certainly not work on windows where the processes are not forked. |
|
Nov 4 |
asked | How to combine Pool.map with Array (shared memory) in Python multiprocessing? |
|
Nov 4 |
comment |
Clojure: Call a function for each element in a vector with it index I added (dotimes [n 100] ...) around my tests and got the same results it seems hotspot can not do much about these differences. Recur version takes about 230 msecs. Index vector about 690 msecs. |
|
Oct 30 |
comment |
Clojure: Call a function for each element in a vector with it index I guess i need to test with hot-spot optimized. I just ran the exact same test in Python and there it ran in 80 msec. |
|
Oct 30 |
answered | Clojure: Call a function for each element in a vector with it index |
|
Oct 30 |
asked | Clojure: Call a function for each element in a vector with it index |
|
Oct 29 |
asked | Clojure: How do I get a list of combinations of ‘coordinates’? |
|
Oct 28 |
comment |
Clojure: How do I apply a function to a subset of the entries in a hash-map? Would you mind giving a statement by statement description for us new to Clojure? |
|
Oct 28 |
asked | Clojure: How do I apply a function to a subset of the entries in a hash-map? |
|
Oct 27 |
asked | What is the best way to initialize all the elements of a JTable with Clojure? |
|
Oct 26 |
awarded | ● Popular Question |
|
Oct 2 |
asked | Can seek and tell work with UTF-8 encoded documents in Python? |
|
Oct 1 |
answered | What is the best way to do Gui in Clojure? |
|
Oct 1 |
comment |
What is the best way to do Gui in Clojure? Also note that in the more recent versions of closure you need to add a . in front of the member function calls in the todo block. |
|
Sep 16 |
awarded | ● Yearling |
|
Sep 2 |
asked | Is it possible to limit TextCtrl to accept numbers only in wxPython? |
|
Jul 28 |
comment |
Can one unroll a loop when working with an integer template parameter? I like this one. Too bad my compiler does not compile it :-(. |
|
Jul 28 |
comment |
What happens when you run out of ram with mlockall set? The platforms would be 64 bit linux, 64 bit AIX, 64 bit Solaris, 64 bit HP-UX. |
|
Jul 27 |
asked | What happens when you run out of ram with mlockall set? |
|
Jul 27 |
awarded | ● Popular Question |
|
Jul 10 |
awarded | ● Guru |
|
Jul 8 |
comment |
Can one unroll a loop when working with an integer template parameter? Maybe my compiler is not so smart (VC++.Net 2003) but it was not unrolling the loop for the longer sequences. On my computer with my compiler there was a 20% speed improvement by manually unrolling the loop. |
|
Jul 8 |
comment |
Can one unroll a loop when working with an integer template parameter? The loop is already unrolled. This is a very specialized hash function. Character values are just 0,1,2,3 . |
|
Jul 8 |
comment |
Can one unroll a loop when working with an integer template parameter? The loop is already unrolled. It the elimination of the compare in the switch statement that I am thinking about. |
|
Jul 8 |
asked | Can one unroll a loop when working with an integer template parameter? |
|
Jul 3 |
awarded | ● Popular Question |
|
Jun 18 |
comment |
How to use pure in D 2.0 I guess this is probably the best it gets. I was just hoping we could avoid generating all the garbage and time spend making copies somehow. |
|
Jun 17 |
revised |
How to use pure in D 2.0 added 184 characters in body |
|
Jun 17 |
comment |
How to use pure in D 2.0 I agree that TestPure addMsg can not be pure in general since it changes its state. I was just hoping that the compiler could figure out somehow that run2 is actually valid as being pure since there is no way that it changes data that is visible to any other thread since it is the creator of the TestPure object. Is there some other qualifier that could be added to the addMsg function that could help the compiler here? |
|
Jun 17 |
comment |
What debugger can be used with D 2.0 on windows and how do I use it? I got the following working on Windows: Eclipse with Descent for IDE dsource.org/projects/descent After install I set up rebuild for compilation dsource.org/projects/descent/… And this is how to set up the debugger dsource.org/projects/descent/… |
|
Jun 17 |
comment |
How to use pure in D 2.0 The following does compile and shows that different objects are returned for each call. pure int* test_pure2() { int* p = new int; *p = 42; return p; } int* i1 = test_pure2(); int* i2 = test_pure2(); writeln( i1, i2 ); |
|
Jun 17 |
asked | How to use pure in D 2.0 |
|
Jun 16 |
asked | What debugger can be used with D 2.0 on windows and how do I use it? |
|
Jun 10 |
revised |
Quality Assurance Code of Conduct Minor cleanup. |
|
Jun 10 |
answered | Quality Assurance Code of Conduct |
|
Jun 2 |
revised |
What is the best online SQL tutorial for learning to write complex reporting queries? Made question less subjective. |
|
Jun 2 |
asked | What is the best online SQL tutorial for learning to write complex reporting queries? |
