https://github.com/tensorly/tensorly
Revision f2aec732e0870db8ba4a9818e659a740073c72b0 authored by Aaron Meyer on 27 July 2022, 13:42:35 UTC, committed by Aaron Meyer on 27 July 2022, 13:42:35 UTC
1 parent cb4cd6c
Raw File
Tip revision: f2aec732e0870db8ba4a9818e659a740073c72b0 authored by Aaron Meyer on 27 July 2022, 13:42:35 UTC
Use tensordot for readability. Black format.
Tip revision: f2aec73
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