Skip to content

Commit ceda3d0

Browse files
committed
*: fix python csv generation bug in Makefile
1 parent 4002891 commit ceda3d0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Makefile

+2-6
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,8 @@ export TACO_TENSOR_PATH = data/
2626
python-bench: results numpy/*.py
2727
echo $(benches_name)
2828
-pytest $(IGNORE_FLAGS) --benchmark-json=$(NUMPY_JSON) $(BENCHFLAGS) $(BENCHES)
29-
make convert-csv
30-
31-
.PHONY: convert-csv
32-
convert-csv:
3329
python numpy/converter.py --json_name $(NUMPY_JSON)
34-
30+
3531
.PHONY: convert-csv-all
3632
convert-csv-all:
3733
python numpy/converter.py --all
@@ -50,7 +46,7 @@ taco/build/taco-bench: results check-and-reinit-submodules taco/benchmark/google
5046
taco/benchmark/googletest: check-and-reinit-submodules
5147
if [ ! -d "taco/benchmark/googletest" ] ; then git clone https://github.com/google/googletest taco/benchmark/googletest; fi
5248

53-
.PHONY: csvs
49+
.PHONY: results
5450
results:
5551
mkdir -p results/taco
5652
mkdir -p results/numpy

0 commit comments

Comments
 (0)