aboutsummaryrefslogtreecommitdiff
path: root/Math_Test.jai
diff options
context:
space:
mode:
authordam <dam@gudinoff>2023-07-01 01:55:25 +0100
committerdam <dam@gudinoff>2023-07-01 01:55:25 +0100
commite33e8c5d19f56e2c48f116c2e36e6e413e1d5fc5 (patch)
tree598f172de8f96fa8a433d053a7db98fbac01a7e9 /Math_Test.jai
parentcd7c80fdcc98f38527e7e35488c064af169bd7c0 (diff)
downloadtask-time-tracker-e33e8c5d19f56e2c48f116c2e36e6e413e1d5fc5.tar.zst
task-time-tracker-e33e8c5d19f56e2c48f116c2e36e6e413e1d5fc5.zip
Use nsec instead of usec for performance calculation.
Diffstat (limited to 'Math_Test.jai')
-rw-r--r--Math_Test.jai8
1 files changed, 4 insertions, 4 deletions
diff --git a/Math_Test.jai b/Math_Test.jai
index d216fd2..d03bd32 100644
--- a/Math_Test.jai
+++ b/Math_Test.jai
@@ -225,8 +225,8 @@ main :: () {
for 0..DATA_SIZE-1 assert(numbers_zgen[it] == numbers_zasm[it]);
- perf_gen := cast(float)DATA_SIZE/cast(float)to_microseconds(time_gen);
- perf_asm := cast(float)DATA_SIZE/cast(float)to_microseconds(time_asm);
+ perf_gen := cast(float)DATA_SIZE/cast(float)to_nanoseconds(time_gen);
+ perf_asm := cast(float)DATA_SIZE/cast(float)to_nanoseconds(time_asm);
best_gen = max(best_gen, perf_gen);
best_asm = max(best_asm, perf_asm);
}
@@ -241,11 +241,11 @@ main :: () {
ff := context.print_style.default_format_float;
ff.zero_removal = .NO;
ff.width = 7;
- ff.trailing_width = 1;
+ ff.trailing_width = 3;
context.print_style.default_format_float = ff;
write_strings(
- " | (ops / usec) |\n",
+ " | (ops / nsec) |\n",
" | generic | x64 asm |\n"
);