Revision e918a01dbc156ce419cf8d576c7d0cab54f1226d authored by Zongyi Li on 03 September 2018, 03:57:13 UTC, committed by Zongyi Li on 19 September 2018, 17:33:45 UTC
I didn't change candecomp. Only modified mps_cross
1 parent 3db755b
Raw File
Makefile
# Automate testing etc
BACKEND?='numpy'

all: install test

install:
	pip install -e .

test:
	TENSORLY_BACKEND=$(BACKEND) pytest -v tensorly

test-all:
	TENSORLY_BACKEND='mxnet' pytest -v tensorly
	TENSORLY_BACKEND='numpy' pytest -v tensorly
	TENSORLY_BACKEND='pytorch' pytest -v tensorly

test-coverage:
	TENSORLY_BACKEND=$(BACKEND) pytest -v --cov tensorly tensorly

back to top