You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two things worth mentioning, about ssvu::FastFunc
from @SuperV1234.
(PS: I wonder what Vittorio Romeo is planning with this: vrm::core::delegate.
But I could not find examples and usage is not clear to me.)
ssvu::FastFunc does not work for all callables.
To include it, run cmake with this flag -DSSVU=ON
i.e.
git clone https://github.com/jamboree/CxxFunctionBenchmark.git # there are updates nowcd CxxFunctionBenchmark/
mkdir build/
cd build/
# to include ssvu::FastFunc, cmake needs -DSSVU=ON
cmake -DSSVU=ON .. # or if you want to use a custom boost: cmake -DSSVU=ON -DBOOST_ROOT=/path/to/boost ..
make -j4 VERBOSE=1
./various
It only runs function_pointer, lambda_capture and lambda.
ssvu::FastFunc can not handle the following 4 callables: ref
ssvu::FastFunc is buggy and will return wrong results in certain instances
No description provided.
The text was updated successfully, but these errors were encountered: