https://github.com/tensorly/tensorly
Revision cb4cd6cde41cda50b32c255a003c292c65b8e1b3 authored by Cyrillus on 26 July 2022, 23:11:41 UTC, committed by Cyrillus on 26 July 2022, 23:11:41 UTC
1 parent af2fb20
Raw File
Tip revision: cb4cd6cde41cda50b32c255a003c292c65b8e1b3 authored by Cyrillus on 26 July 2022, 23:11:41 UTC
Fix indexing assignment problem
Tip revision: cb4cd6c
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