Re: [hpx-users] Component registration causing error C2491 on VS 2013

2015-06-10 Thread Shmuel Levine
Hartmut Kaiser writes: > Hartmut- thanks for your prompt response. Unfortunately, I was not subscribed to the list at the time and I never saw your response. I only just now had the insight to search gmane for this thread, and lo and behold... I've since subscribed to the mailing list. >

Re: [hpx-users] hpx 0.9.11 segmentation fault running on multiple localities

2016-01-08 Thread shmuel . levine
Thanks - I'll give the master branch a try. It a little ironic -- I specifically used a release branch to avoid possible bugs in the master branch. I seem to recall a discussion on the mailing list where it was re

[hpx-users] Filling a vector of futures

2016-03-01 Thread shmuel . levine
I came across an issue last night trying to initialize a vector of futures. I first tried std::fill but I (obviously - in retrospect) cant't assign ‎a float to future. hpx::fill also didn't work. I also tried hpx::for_each and hpx::make_ready_future -- it surprised me that this also wouldn't compi

[hpx-users] Memory management in a distributed app

2016-08-28 Thread Shmuel Levine
tributed environment - especially where the parallelism isn't handled explicitly in the code (as opposed to an MPI program, for example, where this is far more straightforward). Thanks and best regards, Shmuel Levine [1] The actual code is slightly more complicated than the above description

[hpx-users] Improving documentation about configuring cluster for HPX and for running an HPX application

2016-08-28 Thread Shmuel Levine
Hi All, I'd like to ask if it might be possible for someone to provide more clarity as to how to actually configure a cluster to use HPX, and how to run an HPX application (or at least the specific considerations for setting up a cluster to run an application). As the above is general and mo

[hpx-users] Serializing type-erased classes

2016-09-20 Thread Shmuel Levine
Hi, Could someone please help me to better understand how to write serialization functions for a class using type erasure? Looking at my code, and at the hpx/runtime/serialization/ code, I just can't figure out how to handle this. Even assuming that the boilerplate code is able to correctly

Re: [hpx-users] Troubleshooting (lack of) parallel execution

2017-05-01 Thread shmuel . levine
Hi Hartmut, Thanks for the quick reply. It appears that I was not completely clear in my original question. Specifically, I seem to have the same problems regardless of whether or not I'm using MKL. The separate matrix multiplication test code that I wrote was for the purposes of determining

Re: [hpx-users] Troubleshooting (lack of) parallel execution

2017-05-01 Thread shmuel . levine
GitHub link in my original email Get Outlook for Android On Mon, May 1, 2017 at 12:04 PM -0400, "Hartmut Kaiser" wrote: Shmuel, > Thanks for the quick reply. It appears that I was not completely clear in > my original question. Specifically, I seem to have the same prob

[hpx-users] HPX - guidance regarding inter-locality communications

2017-12-07 Thread Shmuel Levine
but I tend to write too much in general. I'd greatly appreciate any advice on how to best handle these cases. Also, any feedback on my rough concepts would be sincerely appreciated. Thanks and best regards, Shmuel Levine ___ hpx-users mailing list hpx-users@stellar.cct.lsu.edu https://mail.cct.lsu.edu/mailman/listinfo/hpx-users

[hpx-users] Handling UI output from set of remote components

2018-10-19 Thread Shmuel Levine
etails for Distributed_Fitter - I didn't think it was relevant here. I would really, really appreciate any input, feedback, comments, criticisms of any kind. This is a part-time project of mine, but this has been consuming an inordinate amount of my

[hpx-users] Correct arguments for broadcast* functions

2018-12-18 Thread Shmuel Levine
Hi all, After a bit of trial and error, I've managed to successfully use the broadcast functions (broadcast and broadcast_apply); however, my code seems a little convoluted, so I was wondering if I am, in fact, using this correctly. * I am calling this function on component actions. *