https://github.com/tensorly/tensorly
Revision d9052352aa716af7f22d6eda65f4f02080d3ac12 authored by Jean KOSSAIFI on 20 October 2016, 11:56:06 UTC, committed by Jean KOSSAIFI on 20 October 2016, 11:56:06 UTC
1 parent 53b58af
Raw File
Tip revision: d9052352aa716af7f22d6eda65f4f02080d3ac12 authored by Jean KOSSAIFI on 20 October 2016, 11:56:06 UTC
Core tensor operations.
Tip revision: d905235
Makefile
# Automate testing etc

NOSETESTS ?= nosetests


all: install test

install:
	pip install -e .

test-coverage:
	nosetests -v --exe --doctest-tests --with-coverage --cover-package=tensorly tensorly

test:
	nosetests -v --exe --doctest-tests tensorly
back to top