<Amy1>
how to debug openmp program? For example, xx = bb; I use print("xx = %d bb = %d\n",xx,bb); and the two value is the same. But when I insert a breakpoint after the "xx=bb" using gdb, the two value is not the same.
hkaiser has quit [Quit: bye]
weilewei has quit [Remote host closed the connection]
nikunj97 has quit [Quit: Leaving]
nikunj97 has joined #ste||ar
Nikunj__ has joined #ste||ar
nikunj97 has quit [Ping timeout: 260 seconds]
Nikunj__ is now known as nikunj97
K-ballo has quit [Ping timeout: 256 seconds]
K-ballo has joined #ste||ar
bita_ has quit [Read error: Connection reset by peer]
kale[m] has quit [Ping timeout: 260 seconds]
kale[m] has joined #ste||ar
<nikunj97>
what is the difference between hpx::naming::id_type and hpx::id_type?
<nikunj97>
binpacking_distribution_policy operator() takes vector<hpx::id_type> as argument and hpx::components::binpacking_distribution_policy(hpx::find_all_localities()) throws an error from compiler end
nikunj97 has quit [Read error: Connection reset by peer]
nikunj97 has joined #ste||ar
Nikunj__ has joined #ste||ar
nikunj97 has quit [Ping timeout: 256 seconds]
sayefsakin has joined #ste||ar
Nikunj__ has quit [Read error: Connection reset by peer]
sayefsakin has quit [Read error: Connection reset by peer]
sayefsakin has joined #ste||ar
kale[m] has quit [Ping timeout: 256 seconds]
kale[m] has joined #ste||ar
Nikunj__ has joined #ste||ar
sayefsakin has quit [Quit: Leaving]
jaafar has quit [Remote host closed the connection]
jaafar has joined #ste||ar
kale[m] has quit [Ping timeout: 265 seconds]
kale[m] has joined #ste||ar
kale[m] has quit [Ping timeout: 260 seconds]
kale[m] has joined #ste||ar
kale[m] has quit [Ping timeout: 256 seconds]
kale[m] has joined #ste||ar
kale[m] has quit [Ping timeout: 256 seconds]
Ameetk has joined #ste||ar
<Ameetk>
AnyOne !!Paysend XDR token : How it is getting price value of 5 different native coins ?
hkaiser has joined #ste||ar
kale[m] has joined #ste||ar
kale[m] has quit [Quit: Quit]
kale[m] has joined #ste||ar
Ameetk has quit [Remote host closed the connection]
karame_ has quit [Remote host closed the connection]
<hkaiser>
ms[m], gdaiss[m]: feel free to use this link for the Kokkos discussion before the PMC meeting
<ms[m]>
hkaiser: oh yes, certainly
<ms[m]>
well spotted!
<ms[m]>
kokkos meeting will be tomorrow, gdaiss is off enjoying a day off
<hkaiser>
slacker
<hkaiser>
when tomorrow?
<ms[m]>
totally
<hkaiser>
ms[m]: at what time do you meet tomorrow for Kokkos ? can I join?
<ms[m]>
yeah, of course
<ms[m]>
same time as it would've been today
<hkaiser>
ok, thanks - I have a meeting at the hour, so will have to leave earlier
<ms[m]>
ah, well, I'm pretty sure we can move it a bit as well
<ms[m]>
if you're up early anyway we can ping you a bit earlier and start when you're free
<hkaiser>
ms[m]: yah, I should be around earlier
<heller1>
hkaiser: ms: I'm off as well
<hkaiser>
k
nan111 has joined #ste||ar
weilewei has joined #ste||ar
<Nikunj__>
hkaiser, are you available for a call sometime this week/weekend? I Have some questions regarding implementation for distributed portions.
<Nikunj__>
also what is the difference between hpx::id_type and hpx::naming::id_type?
<hkaiser>
Nikunj__: yes, weekend should be fine
Nikunj__ is now known as nikunj97
<nikunj97>
binpacking_distribution_policy operator() takes vector<hpx::id_type> as argument and hpx::components::binpacking_distribution_policy(hpx::find_all_localities()) throws an error from compiler end
<hkaiser>
no difference the second is a using for the first
<nikunj97>
hkaiser, this is what I'm using: hpx::future<int> exec = hpx::async<foo_action>(hpx::components::binpacking_distribution_policy(hpx::find_all_localities()), 25);
<nikunj97>
am I getting something wrong here?
<hkaiser>
nikunj97: does it work?
<nikunj97>
no, it throws a compiler error
<hkaiser>
I'd start with a simpler policy, however
<nikunj97>
this is what the compiler throws: no matching function for call to ‘hpx::components::binpacking_distribution_policy::binpacking_distribution_policy(std::vector<hpx::naming::id_type>)
<hkaiser>
give me a sec, I'm in a meeting
<nikunj97>
sure
karame_ has joined #ste||ar
<hkaiser>
nikunj97: you're supposed to use the binpacked (static) instance: binpacked(localities, "<counter_name>")
<hkaiser>
look at the operator()() it exposes
<hkaiser>
i.e. async(action(), binpacked(...), ...)
<nikunj97>
hkaiser, isn't that the same as one I'm using?