hkaiser changed the topic of #ste||ar to: The topic is 'STE||AR: Systems Technology, Emergent Parallelism, and Algorithm Research | stellar.cct.lsu.edu | HPX: A cure for performance impaired parallel applications | github.com/STEllAR-GROUP/hpx | Buildbot: http://rostam.cct.lsu.edu/ | Log: http://irclog.cct.lsu.edu/
nikunj has joined #ste||ar
nikunj has quit [Client Quit]
nikunj has joined #ste||ar
nikunj has quit [Ping timeout: 276 seconds]
weilewei has joined #ste||ar
<weilewei>
simbergm yes, the build_type shows up
<weilewei>
simbergm how should I enable tests run on hpx spack?
<diehlpk>
hkaiser, What about having the AMT workshop in the week before Easter in march 2021
<hkaiser>
diehlpk: sure
<diehlpk>
Ok, I will let karen know
<hkaiser>
diehlpk: I have nothing planned yet ;-)
<diehlpk>
I will submit the proposal tomorrow after the vis meeting
<diehlpk>
We have a vis meeting for octotiger since a while
<hkaiser>
nod, cool
hkaiser has quit [Quit: bye]
weilewei has quit [Remote host closed the connection]
diehlpk has quit [Ping timeout: 250 seconds]
nikunj has joined #ste||ar
nikunj has quit [Quit: Leaving]
khuck has quit [*.net *.split]
jaafar has quit [*.net *.split]
heller has quit [*.net *.split]
simbergm has quit [*.net *.split]
jbjnr has quit [*.net *.split]
mdiers_ has quit [*.net *.split]
diehlpk_work has quit [*.net *.split]
simbergm has joined #ste||ar
jbjnr has joined #ste||ar
simbergm has quit [*.net *.split]
simbergm has joined #ste||ar
khuck has joined #ste||ar
jaafar has joined #ste||ar
mdiers_ has joined #ste||ar
diehlpk_work has joined #ste||ar
heller has joined #ste||ar
K-ballo has joined #ste||ar
K-ballo has quit [Read error: Connection reset by peer]
K-ballo has joined #ste||ar
K-ballo has quit [Ping timeout: 250 seconds]
K-ballo has joined #ste||ar
rori has joined #ste||ar
hkaiser has joined #ste||ar
<simbergm>
K-ballo: yt?
<K-ballo>
simbergm: partially
<simbergm>
ok, then I'll just ask the short version: are there any known "difficulties" with invoke_fused?
<K-ballo>
no
<simbergm>
trying to get clang to compile some cuda code, vanilla clang complains about no type named type in invoke_fused_result, cray clang ice's, and nvcc is happy
<simbergm>
and I'm trying to figure out whose fault it is
<K-ballo>
no type in invoke_fused_result means the call is not well formed
<simbergm>
right
<simbergm>
do you have any tricks for debugging these kind of (lack of) template instantiations?
<K-ballo>
you should get the types involved in the call in the error message
<K-ballo>
you could try setting up the equivalent call manually, to see what causes it to be ill-formed
<K-ballo>
that your lambda has an explicit return type?
<K-ballo>
either that, or it doesn't take 3 arguments
<K-ballo>
the arguments for your call are hpx::compute::cuda::target_ptr<int>&, hpx::compute::cuda::target_ptr<int>&, hpx::compute::cuda::target_ptr<int>&
<simbergm>
it does... and no explicit return type (it's void)
<K-ballo>
what are the 3 parameters of the lambda?