Calculations of Ramsey Numbers using parallel computing and SIMD.
In the bash, enter the Rust directory:
cd gt_algorithms
cargo run --release --example ramsey
To run without SIMD, call this:
cargo run --release --example ramsey --no-default-features
To run the unit tests use:
cargo test
To benchmark the rust code.
This will run the benchmark without SIMD.
cargo bench --no-default-features
This will run the benchmark with SIMD.
cargo bench
To setup your python virtual environment run the following command
make build_pyDist
This command will run the makefile from pyDist which will setup a virtual environment in a new dirctory called pyDist. You can activate the virtual environment using
source pyDist/distEnv/bin/activate
and you can deactivate it using
deactivate
This virtual environment is not added to your commits.