Steven R. Brandt

Results 71 comments of Steven R. Brandt

@hkaiser I was imagining that remote_run() would return a value from the locality which was supplied in the first argument.

@hkaiser it doesn't have to be the only way of doing things, but I think it should be an option.

@hkaiser an alternative is to enforce a distributed array way of doing things. ``` arr = distribute_array(shape, tiling, init_func) ... arr3 = distribute_mul(arr, arr2) # should be operator overload eventually...

Let me understand, synchronizing doesn't fill in outer boundaries of refined regions? Cheers, Steve On Sun, Feb 26, 2012 at 11:22 AM, Erik Schnetter [email protected] wrote: > Every time a...

Note that when parenthesis are present, a \* is also needed, otherwise a function call is assumed. Thus x = 3 a b*(x+y) Mathematica doesn't have this issue, as function...

Here's how I configured HPX ``` cmake \ -DHPX_WITH_EXAMPLES=OFF \ -DHPX_WITH_MORE_THAN_64_THREADS=ON \ -DCMAKE_CXX_COMPILER=clang++ \ -DHPX_WITH_CXX_STANDARD=20 \ -DCMAKE_CXX_FLAGS=-stdlib=libc++ \ -DHPX_WITH_FETCH_ASIO=ON \ .. ```

So the question is, why doesn't cmake pass the flags along? The hpxcxx command does. Shouldn't they both do it?

This is by design. In presync-only, if you try to access a variable you have not declared access to, and you circumvent the compile time checks of the macro, you...

Yes, you have described things correctly. We could add a warning if there are multiple declarations.

I'm slightly confused. What is "the first case?"