Hello,
I've noticed that C++ test programs for promise+scalar type fail when optimization options are specified.
The problem
Consider the following program (test/cpp/future1.cpp):
constexpr int SIGNAL_VALUE = 42
hclib::promise_t<int> *event = new hclib::promise_t<int>();
hclib::async([=]() {
// T1
int signal = event->get_future()->wait();
assert(signal == SIGNAL_VALUE);
printf("signal = %d\n", signal);
});
hclib::async([=]() {
// T2
sleep(1);
event->put(SIGNAL_VALUE);
});
Task T1 waits on a promise with scalar type (promise_t<int>) which is put by Task T2 (event->put(SIGNAL_VALUE)) and we expect that Task T1 receives 42. However, if this program is compiled with optimization options (-O1, -O2, -O3), the assertion fails (or a wrong value is printed).
Steps to reproduce the problem
I confirmed I can reproduce the problem on my laptop (Apple LLVM 8.0.0) and davinci (g++ 6.2.0). Also, It's worth noting that HClib itself is built with the -O3 option (by install.sh). The problem is more about a compiler option you give when compiling test programs.
$ git clone git@github.com:habanero-rice/hclib.git
$ ./install.sh
$ source ./hclib-install/bin/hclib_setup_env.sh
$ cd test/cpp
$ emacs Makefile # add the -O3 option
$ ./test_all.sh # or make -j
$ ./future1
The Cause
The root cause is the current implementation of future_t::wait() (get() has the same issue). Here is the implementation (hclib-future.hpp):
T &&wait() {
_ValUnion tmp;
tmp.vp = hclib_future_wait(this);
return std::move(tmp.val);
}
The problem is , since the variable tmp is allocated on stack, the value can be easily lost at the end of wait even though the returned value is a rvalue reference.
Possbile Solutions
Here are possible solutions. I'd vote for 1 because 2 would prevent compilation optimizations. However, If returning a rvalue reference is important and/or there are any other solutions, please let me know. Also, if the performance is the case (e.g., A scenario where T is not a primitive type and the overhead of copy constructor would not be small), I'd be happy to try to come up with a better solution and/or create synthetic benchmarks to discuss the performance.
1. Return by value
T wait() {
_ValUnion tmp;
tmp.vp = hclib_future_wait(this);
return tmp.val;
}
2. The use of volatile
volatile T&& wait() {
volatile _ValUnion tmp;
tmp.vp = hclib_future_wait(this);
return std::move(tmp.val);
}
Thanks,
Akihiro
Hello,
I've noticed that C++ test programs for promise+scalar type fail when optimization options are specified.
The problem
Consider the following program (test/cpp/future1.cpp):
Task T1 waits on a promise with scalar type (
promise_t<int>) which is put by Task T2 (event->put(SIGNAL_VALUE)) and we expect that Task T1 receives42. However, if this program is compiled with optimization options (-O1, -O2, -O3), the assertion fails (or a wrong value is printed).Steps to reproduce the problem
I confirmed I can reproduce the problem on my laptop (Apple LLVM 8.0.0) and davinci (g++ 6.2.0). Also, It's worth noting that HClib itself is built with the -O3 option (by install.sh). The problem is more about a compiler option you give when compiling test programs.
The Cause
The root cause is the current implementation of
future_t::wait()(get()has the same issue). Here is the implementation (hclib-future.hpp):The problem is , since the variable
tmpis allocated on stack, the value can be easily lost at the end ofwaiteven though the returned value is a rvalue reference.Possbile Solutions
Here are possible solutions. I'd vote for 1 because 2 would prevent compilation optimizations. However, If returning a rvalue reference is important and/or there are any other solutions, please let me know. Also, if the performance is the case (e.g., A scenario where T is not a primitive type and the overhead of copy constructor would not be small), I'd be happy to try to come up with a better solution and/or create synthetic benchmarks to discuss the performance.
1. Return by value
2. The use of
volatileThanks,
Akihiro