Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/n-eiling/cuda-fatbin-decompression
https://github.com/n-eiling/cuda-fatbin-decompression
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/n-eiling/cuda-fatbin-decompression
- Owner: n-eiling
- License: apache-2.0
- Created: 2023-04-11T16:45:48.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-12T12:37:55.000Z (over 1 year ago)
- Last Synced: 2024-08-03T01:20:55.435Z (6 months ago)
- Language: C
- Size: 39.1 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# CUDA Fatbin Decompression
This projects decompressed CUDA fatbins that were compressed by `nvcc`, e.g., by using the `-Xfatbin --compress-all` flag.
Usage:
```
decompress []
```The first parameter should reference a file containing a compressed CUDA fatbin. This can be exported from a binary containing CUDA code using:
```
objcopy -O binary --only-section=.nv_fatbin
```
The program optionally uses the second paramter to compare the decompressed file to an uncompressed version of the first file to check if the output
matches that of nvcc. To obtain an uncompressed CUDA fatbin use the nvcc flag `-no-compress`.The project is licensed under Apache License 2.0
Copyright 2023 Niklas Eiling