https://github.com/tensorly/tensorly
Revision 5206d0db221321d0e2b9faa31fdcd5c63d0267fb authored by Zongyi Li on 03 September 2018, 03:39:10 UTC, committed by Zongyi Li on 03 September 2018, 03:39:10 UTC
Resolve the conflicts on pytorch and tensorflow backends.
2 parent s 3cce636 + 3db755b
Raw File
Tip revision: 5206d0db221321d0e2b9faa31fdcd5c63d0267fb authored by Zongyi Li on 03 September 2018, 03:39:10 UTC
Merge branch 'tensorly-master' into TTcross
Tip revision: 5206d0d
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