summaryrefslogtreecommitdiff
path: root/Makefile
blob: eba92821e1679a8c6411be1ad583e6b49a1090a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clean-ptx:
	find target -name "*.ptx" -type f -delete
	echo "" > candle-kernels/src/lib.rs
	touch candle-kernels/build.rs

clean:
	cargo clean

test:
	cargo test

pyo3-test:
	cargo build --profile=release-with-debug --package candle-pyo3
	python3 candle-pyo3/test.py

all: test