Skip to content

Commit 7886dc6

Browse files
committed
working on benchmarking
1 parent f145e08 commit 7886dc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

microbiorust-py/benchmarks/bench_pipeline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ def setup(self):
1818
# 1. Benchmark TIME
1919
def time_process_all(self):
2020
# This calls your function that returns Vec<String>
21-
result = gbk_to_faa(self.filepath)
21+
result = microbiorust.gbk_to_faa(self.filepath)
2222
for r in result:
2323
print(r)
2424

2525
# 2. Benchmark MEMORY (The known spike)
2626
def peakmem_process_all(self):
27-
result = gbk_to_faa(self.filepath)
27+
result = microbiorust.gbk_to_faa(self.filepath)
2828
for r in result:
2929
print(r)

0 commit comments

Comments
 (0)