gpu-mumu 0.1.0

GPU/Vulkan matrix and tensor operations for the mumu/lava language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
PLUGIN=gpu
TARGET=libmumu$(PLUGIN).so

all:
	cargo build --release

install:
	sudo cp target/release/$(TARGET) /usr/local/lib/
	sudo ldconfig

clean:
	cargo clean