-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
master #10
base: small_vector_relocation
Are you sure you want to change the base?
master #10
Conversation
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
…minor changes to plotting script * Further simplified the default template for the benchmark Signed-off-by: Vedant <[email protected]>
…accordingly Signed-off-by: Vedant <[email protected]>
…orrect option Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
…, and made minor changes to perftests ci Signed-off-by: Vedant <[email protected]>
Signed-off-by: Vedant <[email protected]>
Make sure that --hpx:ini log settings take effect
Add components documentation
Add distance.cpp test in CMake
Signed-off-by: Vedant <[email protected]>
Fixing distance test
- this prevents sends to be posted before their corresponding receives - flyby: improved MPI error handling, now throws exceptions instead of assert
Adding optional handshakes to acknowledge the received data
Addressing cmake warnings issued starting V3.30
…ntation Co-authored-by: isidorostsa <[email protected]>
Remove leftovers from libfabric parcelport
Download Boost from their own archives, not from Sourceforge
Replace previously downloaded CDash conv.xsl with local version
Signed-off-by: Shreyas Atre <[email protected]>
Signed-off-by: Shreyas Atre <[email protected]>
- macOSs command line tools 16+ apparently has issues with at_quick_exit not found - For those, this feature macro should be disabled as it cannot execute at runtime but compiles Signed-off-by: Shreyas Atre <[email protected]>
…long int" This reverts commit 75973a8. Signed-off-by: Shreyas Atre <[email protected]>
This reverts commit 76d847a. Signed-off-by: Shreyas Atre <[email protected]>
Attempting to work around a Boost.Spirit problem
Execute feature test for at_quick_exit
…-vectorization Fix vectorization error on copy algorithm
Fix bullet points in Quickstart
Accommodate for CircleCI reduce available number of cores to two
Fixed escape characters format to handle warning due to misinterpretation of syntax
@@ -14,8 +14,10 @@ | |||
{ | |||
std::atomic<T> a; | |||
a.store(T{}); | |||
T i = a.load(); | |||
(void) i; | |||
[[maybe_unused]] T i = a.load(); |
Check notice
Code scanning / CodeQL
Unused local variable Note test
[[maybe_unused]] T i = a.load(); | ||
|
||
// force using libatomic, if needed | ||
[[maybe_unused]] bool b = a.is_lock_free(); |
Check notice
Code scanning / CodeQL
Unused local variable Note test
public: | ||
template <typename F, typename S, typename... Ts> | ||
void bulk_sync_execute(F&& f, S const& shape, Ts&&... ts) | ||
decltype(auto) bulk_sync_execute(F&& f, S const& shape, Ts&&... ts) |
Check notice
Code scanning / CodeQL
Unused local variable Note
public: | ||
template <typename F, typename S, typename... Ts> | ||
void bulk_sync_execute(F&& f, S const& shape, Ts&&... ts) | ||
decltype(auto) bulk_sync_execute(F&& f, S const& shape, Ts&&... ts) |
Check notice
Code scanning / CodeQL
Unused static variable Note
@@ -136,10 +141,16 @@ | |||
freebsd_environ = environ; | |||
#endif | |||
// set a handler for std::abort | |||
std::signal(SIGABRT, hpx::detail::on_abort); | |||
std::atexit(hpx::detail::on_exit); | |||
[[maybe_unused]] auto prev_sh = |
Check notice
Code scanning / CodeQL
Unused local variable Note
@@ -112,7 +110,9 @@ | |||
{ | |||
is_started_ = false; | |||
if (!err) | |||
f_(); | |||
{ | |||
[[maybe_unused]] auto _ = f_(); |
Check notice
Code scanning / CodeQL
Unused local variable Note
td->get_description(), td->get_state().state()); | ||
return true; | ||
}); | ||
[[maybe_unused]] auto ret = |
Check notice
Code scanning / CodeQL
Unused local variable Note
|
||
/////////////////////////////////////////////////////////////////////////// | ||
runtime::runtime(hpx::util::runtime_configuration& rtcfg, bool initialize) | ||
: rtcfg_(rtcfg) | ||
runtime::runtime(hpx::util::runtime_configuration rtcfg, bool initialize) |
Check notice
Code scanning / CodeQL
Large object passed by value Note
runtime_configuration
} | ||
|
||
// this constructor is called by the distributed runtime only | ||
runtime::runtime(hpx::util::runtime_configuration& rtcfg) | ||
: rtcfg_(rtcfg) | ||
runtime::runtime(hpx::util::runtime_configuration rtcfg) |
Check notice
Code scanning / CodeQL
Large object passed by value Note
runtime_configuration
for (auto&& tinfo : thread_map_) | ||
{ | ||
if (tinfo.tid_ == tid) | ||
{ | ||
label_map_.erase(tinfo.label_); | ||
if (tinfo.cleanup_) | ||
{ | ||
tinfo.cleanup_(i); | ||
[[maybe_unused]] auto _ = tinfo.cleanup_(i); |
Check notice
Code scanning / CodeQL
Unused local variable Note
…e_address-feature-test Feature test for __builtin_frame_address
Add device guard for noexcept
Fix outdated documentation and missing flags
…address-feature-test-2 HPX_HAVE_THREADS_GET_STACK_POINTER to match builtin_frame_address feature test
No description provided.