Hartmut Kaiser

Results 521 comments of Hartmut Kaiser

@stevenrbrandt STEllAR-GROUP/hpx#4424 has been merged. `hpx.lock_detection=0` should take effect for you now.

Which test is failing, concretely? Could you elaborate, please?

@baumanfx could you update your version of Blaze, please? I think we depend on V3.5, if not top of master.

@baumanfx Hmmm, this looks like a compiler problem. The use of `if constexpr()` in HPX is guarded by: ``` #if defined(HPX_HAVE_CXX17_STRUCTURED_BINDINGS) && defined (HPX_HAVE_CXX17_IF_CONSTEXPR) ``` which means that the feature...

Thanks @baumanfx. I have created a PR for HPX (see https://github.com/STEllAR-GROUP/hpx/pull/3770) that removes the `if constexpr()` alltogether. I'd appreciate it if you had time to verify whether this fixes your...

@baumanfx ok, thanks. Unfortunately this is not really helping in debugging things. Could you get in contact with @diehlpk please? He has successfully compiled HPX on PIs, so he might...

@NanmiaoWu I'll have a look asap.

Will this work on other platforms (other than Linux) as well? Also, shouldn't we leave the current install step in place (which simply copies the Python files to the proper...

Ok, I think the main problem is that the way HPX TCP connections work is not documented adequately. Here are the basics: Every HPX locality needs to listen to a...

> Problems: > (1) Not sure how to use params with the longer version of hpx::init() This is probably what you're looking for: https://hpx-docs.stellar-group.org/latest/html/libs/init_runtime/api.html?highlight=init_params#_CPPv4N3hpx4initEiPPcRK11init_params > (2) I can only use...