-
Notifications
You must be signed in to change notification settings - Fork 171
Description
I am trying to run the SLIDE (cpp implementation) per the steps in the readme, while with below configuration, is all failed, the platform I am using is a Xeon-SKX,
Configuration 1:
compile latest master code and run
./runme Config_amz.csv
new Network
Segmentation fault (core dumped)
Configuration 2:
Per description "You can also revert to the commit 2d10d46 to ignore the HugePages optmization and still use SLIDE (which could lead to a 30% slower performance).
run “git checkout 2d10d46” and run.
./runme Config_amz.csv
terminate called after throwing an instance of 'std::out_of_range'
what(): basic_string::substr: __pos (which is 18446744073709551615) > this->size() (which is 0)
Aborted (core dumped)
Configuration 3:
Makefile code line 16 change to
OPT_FLAGS := -fno-strict-aliasing -g -O3 -fopenmp -march=skylake -mtune=intel -mavx2 -mavx512f
./runme Config_amz.csv
new Network
Segmentation fault (core dumped)
May I know if I did the right thing?
Thanks.