accel icon indicating copy to clipboard operation
accel copied to clipboard

(Mirror of GitLab) GPGPU Framework for Rust

Results 10 accel issues
Sort by recently updated
recently updated
newest added

A proposition to resolve #61 Motivation ----------- `#[kernel]` function cannot use any variable, function, and so on because it will be compiled as a stand alone device code. ```rust fn...

enhancement

Wrong version in documentation for 0.3.1 ``` [dependencies] accel = "=0.3.0-alpha.2" ```

CI on GPU ------------ GitHub Actions with self-hosted runner works?? #9 Stable Rust ------------- Stabilize Host-side code. Device-side code is out-of-scope because large amount of issues are remains for nvptx...

This project is enough complicated for new developer to stop hacking. A guide book like [rustc-guide](https://github.com/rust-lang/rustc-guide) is needed.

enhancement

Is there a way to mix rust-accel with raw *.cu files? I would like to write some __device__ helper functions in *.cu, then call them from #[kernel] functions defined in...

enhancement

Wrap [CUDA steraming API](https://docs.nvidia.com/cuda/cuda-runtime-api/group__CUDART__STREAM.html) using async/await

enhancement

Hi there, I am running a program which contains some error, and the Cuda runtime keeps returning `MissingConfiguration` I can see in the cuda_sys code that this enum value maps...

``` $ CUDA_LIBRARY_PATH=/opt/cuda/lib64 cargo test rustc: CommandLine Error: Option 'print-summary-global-ids' registered more than once! LLVM ERROR: inconsistency in registered CommandLine options error: Could not compile `accel`. warning: build failed, waiting...

bug

Accel already implements some of the features of https://github.com/denzp/rust-ptx-linker, but it seems that the linker handles more cases (eg mangled names containing invalid characters). Could Accel simply use the linker?...

When I run the example program `add.rs` on Windows, it adds the numbers correctly and then panics when terminating the program: ``` thread '' panicked at 'Failed to unload module:...

help wanted