Skip to content

Commit

Permalink
Changed LC_NUMERIC to C/POSIX/en_US.utf8 to acccount for different la…
Browse files Browse the repository at this point in the history
…nguages in benchmarking

Co-authored-by: Jan-Hinrich Nölke <[email protected]>
Co-authored-by: Christoph Bender <[email protected]>
  • Loading branch information
3 people committed Aug 23, 2024
1 parent d8be0c9 commit 0639887
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion simpa_examples/benchmarking/get_final_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_final_table(savefolder: str = None):
mean_df.to_csv(str(df_file).replace('.csv', '_mean.csv'), index=False)

# save to markdown for nice visualization
mean_df.to_markdown(str(df_file).replace('data_frame.csv', '_mean.md'), index=False)
mean_df.to_markdown(str(df_file).replace('data_frame.csv', 'mean.md'), index=False)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion simpa_examples/benchmarking/run_benchmarking.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ done

for ((i=0; i < number; i++))
do
for spacing in $(seq $start $step $stop)
for spacing in $(LC_NUMERIC=C seq $start $step $stop)
do
for profile in "${profiles[@]}"
do
Expand Down

0 comments on commit 0639887

Please sign in to comment.