Hartmut Kaiser

Results 521 comments of Hartmut Kaiser

@tsung-wei-huang if you refer to the number of cores to run your HPX application on, then you can pass the `--hpx:threads=N` command line option, where N is the number of...

> @hkaiser is there any way I can do this through environment variable? Unfortunately, this can't be controlled through an environment variable, ATM. But we could easily add this functionality,...

> I'm not sure if we want to have more ways of setting the number of threads, but doesn't the configuration system already allow customizing things through environment variables? Having...

Let's leave this open for the time being as I want to have a look at our build system to see what we can do to avoid the issue.

> What I see is: > > ``` > set_target_properties(HPX::compression_bzip2 PROPERTIES > INTERFACE_LINK_LIBRARIES "HPX::hpx;${VCPKG_IMPORT_PREFIX}/lib/bz2.lib;Boost::iostreams" > ) > ``` Where do you see that?

FWIW, I have explained the issue (and proposed a fix for the duplicate symbols) here: https://github.com/STEllAR-GROUP/hpx/issues/5908#issuecomment-1143523338

> @hkaiser Is there any way I could reproduce that either on ROSTAM or at CCT somehow? Otherwise I could link it to [this GSoC project](https://github.com/STEllAR-GROUP/hpx/issues/5340). Unfortunately, we don't have...

These things are taken straight from the C++ standard and from additional proposals for standardization: - C++11: http://isocpp.org/files/papers/N3690.pdf - Improvements to std::future and Related APIs: http://isocpp.org/files/papers/N3721.pdf The only thing you...

> What has been done so far with e.g. the parallel algorithms? The docs we have for the algorithms were taken partially from the TS (very scarce), cppreference (we also...

Thanks for reporting! However I don't think that the trivial Fibonacci implementation is a good benchmark for any runtime system... what is your real usecase?