Skip to content

Commit eafa637

Browse files
committed
henlo
1 parent 638ac96 commit eafa637

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

codeflash/benchmarking/codeflash_trace.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ def wrapper(*args: tuple, **kwargs: dict) -> object:
112112
start_time = time.thread_time_ns()
113113
result = func(*args, **kwargs)
114114
end_time = time.thread_time_ns()
115-
logger.info(f"CodeflashTrace: Function {func.__name__} executed in {end_time - start_time} ns")
116115
execution_time = end_time - start_time
117116
self.function_call_count += 1
118117

codeflash/benchmarking/plugin/plugin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ def _run_benchmark(
244244
os.environ["CODEFLASH_BENCHMARK_FUNCTION_NAME"] = call_identifier
245245
os.environ["CODEFLASH_BENCHMARK_MODULE_PATH"] = benchmark_module_path
246246
os.environ["CODEFLASH_BENCHMARK_LINE_NUMBER"] = str(line_number)
247-
os.environ["CODEFLASH_BENCHMARKING"] = "True"
248247
start = time.perf_counter_ns()
249248
result = func(*args, **kwargs)
250249
end = time.perf_counter_ns()

0 commit comments

Comments
 (0)