https://github.com/tensorly/tensorly
Revision ddc74bf6fbdd2eae308f7760664db370753f1dd9 authored by Aaron Meurer on 05 February 2019, 20:01:33 UTC, committed by Aaron Meurer on 05 February 2019, 20:01:33 UTC
1 parent cd88d3f
Raw File
Tip revision: ddc74bf6fbdd2eae308f7760664db370753f1dd9 authored by Aaron Meurer on 05 February 2019, 20:01:33 UTC
Remove duplicate stack definition
Tip revision: ddc74bf
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