https://github.com/tensorly/tensorly
Revision eb382122bc84bc649959bbba21257b8a5998e3ce authored by Aaron Meyer on 10 July 2020, 20:14:48 UTC, committed by GitHub on 10 July 2020, 20:14:48 UTC
1 parent d5ae55f
Raw File
Tip revision: eb382122bc84bc649959bbba21257b8a5998e3ce authored by Aaron Meyer on 10 July 2020, 20:14:48 UTC
Update candecomp_parafac.py
Tip revision: eb38212
Makefile
# Automate testing etc
BACKEND?='numpy'

.PHONY: all test install clean debug

all: install test

install:
	pip install -e .

debug:
	TENSORLY_BACKEND=$(BACKEND) pytest -v --pdb tensorly

test:
	TENSORLY_BACKEND=$(BACKEND) pytest -v tensorly

test-all:
	TENSORLY_BACKEND='numpy' pytest -v tensorly
	TENSORLY_BACKEND='cupy' pytest -v tensorly
	TENSORLY_BACKEND='pytorch' pytest -v tensorly
	TENSORLY_BACKEND='mxnet' pytest -v tensorly
	TENSORLY_BACKEND='jax' pytest -v tensorly
	TENSORLY_BACKEND='tensorflow' pytest -v tensorly

test-coverage:
	TENSORLY_BACKEND=$(BACKEND) pytest -v --cov tensorly tensorly

back to top