Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/demmys/cuda_brainfuck
Brainfuck interpreter on GPGPU with CUDA
https://github.com/demmys/cuda_brainfuck
Last synced: 2 months ago
JSON representation
Brainfuck interpreter on GPGPU with CUDA
- Host: GitHub
- URL: https://github.com/demmys/cuda_brainfuck
- Owner: demmys
- Created: 2013-11-12T09:34:52.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-03T15:46:01.000Z (almost 11 years ago)
- Last Synced: 2024-08-03T18:16:45.821Z (6 months ago)
- Language: C
- Homepage:
- Size: 984 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeInterpreter - cuda_brainfuck
README
Brainfuck interpreter on GPGPU with CUDA
-----##System Requirements
NVIDIA GPU CUDA Compute Capability >=2.0##Usage
USAGE: gpubf [-chmntv] [-d character] [file ...]OPTIONS:
-c Execute the same program on CPU(1 core, 1 thread).
-h Display available options and exit.
-l Display execution time and number of processor for logging.
-m Display execution time includes copying memory among host and device.
This option turns on the -t option.
-n Display the result of execution with a number.
-t Display execution time with the result.
-v Display product version and exit.
-b decimal
Set the block size of kernel function
(default block size is 1).
-d character
Set the delimiter of the source code
(default delimiter is LF, and EOF is always taken as the delimiter).