https://github.com/tensorly/tensorly
Revision 0b7d14754a26a542ab40203048d23d14bc269946 authored by Jean Kossaifi on 12 August 2019, 10:07:00 UTC, committed by Jean Kossaifi on 12 August 2019, 10:07:00 UTC
1 parent 0fa8ab5
Raw File
Tip revision: 0b7d14754a26a542ab40203048d23d14bc269946 authored by Jean Kossaifi on 12 August 2019, 10:07:00 UTC
PyTorch backend: use solve instead of gels/gesv
Tip revision: 0b7d147
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