https://github.com/tensorly/tensorly
Revision 970a340ed3a91ec63564132b5b0bfdc4af05e778 authored by ThomasDelteil on 24 January 2018, 00:04:44 UTC, committed by Jean Kossaifi on 24 January 2018, 22:34:41 UTC
1 parent 3174ae9
Raw File
Tip revision: 970a340ed3a91ec63564132b5b0bfdc4af05e778 authored by ThomasDelteil on 24 January 2018, 00:04:44 UTC
Update tensor_decomposition.rst
Tip revision: 970a340
Makefile
# Automate testing etc
BACKEND?='mxnet'

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