llml_simd 0.1.1

SIMD (Single Instruction Multiple Data) extension for a variety of targets
Documentation
WASM := ../wasm/

bench: 
	cargo bench --all --features random

wasm:
	cd wasm-export && wasm-pack build --target nodejs --out-dir ${WASM}

publish:
	cargo test --all --all-features
	cd llml_simd_proc && cargo test --all --all-features
	cd llml_simd_proc && cargo publish
	make publish-straight

publish-straight:
	cargo publish
	cd wasm-export && wasm-pack build --target nodejs --out-dir ${WASM}
	cp README.md ${WASM}/README.md
	cd ${WASM} && npm publish