https://github.com/tensorly/tensorly
Revision bbe5336258072fda518a7ec64afe409cca3e0ab2 authored by Aaron Meurer on 05 February 2019, 18:24:32 UTC, committed by Aaron Meurer on 05 February 2019, 18:24:32 UTC
2 parent s 12e1765 + 2d56a42
Raw File
Tip revision: bbe5336258072fda518a7ec64afe409cca3e0ab2 authored by Aaron Meurer on 05 February 2019, 18:24:32 UTC
Merge branch 'master' into sparse-parafac
Tip revision: bbe5336
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