-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated perf test shell script to use release profile
- Loading branch information
1 parent
1dc368c
commit 34ddf94
Showing
2 changed files
with
24 additions
and
15 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
# Define the output file | ||
output_file="all_output_lto.txt" | ||
|
||
# Clear the output file if it already exists | ||
> "$output_file" | ||
|
||
# Run each command and append its output to the output file | ||
cargo run --release -- -s single_node_property_projection -e memory -r memory --seed 12345 >> "$output_file" | ||
cargo run --release -- -s single_node_property_projection -e rocksdb -r rocksdb --seed 12345 >> "$output_file" | ||
cargo run --release -- -s single_node_property_projection -e redis -r redis --seed 12345 >> "$output_file" | ||
|
||
cargo run --release -- -s single_node_calculation_projection -e memory -r memory --seed 12345 >> "$output_file" | ||
cargo run --release -- -s single_node_calculation_projection -e rocksdb -r rocksdb --seed 12345 >> "$output_file" | ||
cargo run --release -- -s single_node_calculation_projection -e redis -r redis --seed 12345 >> "$output_file" | ||
|
||
cargo run --release -- -s single_path_averaging_projection -e memory -r memory --seed 12345 >> "$output_file" | ||
cargo run --release -- -s single_path_averaging_projection -e rocksdb -r rocksdb --seed 12345 >> "$output_file" | ||
cargo run --release -- -s single_path_averaging_projection -e redis -r redis --seed 12345 >> "$output_file" | ||
|
||
cargo run --release -- -s single_path_no_change_averaging_projection -e memory -r memory --seed 12345 >> "$output_file" | ||
cargo run --release -- -s single_path_no_change_averaging_projection -e rocksdb -r rocksdb --seed 12345 >> "$output_file" | ||
cargo run --release -- -s single_path_no_change_averaging_projection -e redis -r redis --seed 12345 >> "$output_file" |