Skip to content

Commit 947faa8

Browse files
author
Rohan Yadav
committed
*: allow benchmark CSV output for Makefile to be overridden
1 parent c8ab242 commit 947faa8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ NUMPY_JSON ?= results/numpy/$(benches_name)benches_$(shell date +%Y_%m_%d_%H%M%S
1313
NUMPY_JSON := $(NUMPY_JSON)
1414

1515
# Taco Specific Flags
16-
TACO_OUT = results/taco/$(benches_name)benches_$(shell date +%Y_%m_%d_%H%M%S).csv
16+
ifeq ($(TACO_OUT),)
17+
TACO_OUT := results/taco/$(benches_name)benches_$(shell date +%Y_%m_%d_%H%M%S).csv
18+
endif
1719

1820
# Set GRAPHBLAS=ON if compiling GraphBLAS benchmarks.
1921
ifeq ($(GRAPHBLAS),)

0 commit comments

Comments
 (0)