https://github.com/tensorly/tensorly
Revision 5282f44c47a2d907c1a142d660b4018570039915 authored by lan496 on 19 November 2019, 09:49:15 UTC, committed by lan496 on 19 November 2019, 09:49:15 UTC
1 parent 64f596e
Raw File
Tip revision: 5282f44c47a2d907c1a142d660b4018570039915 authored by lan496 on 19 November 2019, 09:49:15 UTC
add kwargs in SVD functions
Tip revision: 5282f44
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