cuda-rust-wasm 0.1.6

CUDA to Rust transpiler with WebGPU/WASM support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM node:18-alpine

# Install basic tools
RUN apk add --no-cache bash curl

# Set working directory
WORKDIR /test

# Copy test file
COPY test.cu ./

# Test the npx command
CMD ["sh", "-c", "echo 'Testing cuda-wasm from npm...' && npx cuda-wasm@1.0.1 transpile test.cu -o test.wasm && echo 'Success!' && ls -la test.wasm && cat test.wasm"]