summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1c4009b409c9e759c8e8e20dbf8030a29d4b436d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pyo3-test:
	cargo build --profile=release-with-debug --package candle-pyo3
	cp -f ./target/release-with-debug/libcandle.so candle.so
	PYTHONPATH=.:$PYTHONPATH python3 candle-pyo3/test.py

pyo3-test-macos:
	cargo build --profile=release-with-debug --package candle-pyo3
	cp -f ./target/release-with-debug/libcandle.dylib candle.so
	PYTHONPATH=.:$PYTHONPATH python3 candle-pyo3/test.py

.PHONY: pyo3-test pyo3-test-macos clean-ptx clean test

clean-ptx:
	find target -name "*.ptx" -type f -delete
	echo "" > candle-kernels/src/lib.rs
	touch candle-kernels/build.rs
	touch candle-examples/build.rs
	touch candle-flash-attn/build.rs

clean:
	cargo clean

test:
	cargo test

all: test