-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regards #681: Added a fatbin builder based on NVIDIA's libnvfatbin an…
…d bumped version to 0.8.0; but... * not tested it yet * need to add the nvFatbin documentation example program, rewritten to use the APIs
- Loading branch information
Showing
14 changed files
with
731 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ CUDA_PACKAGES_IN=( | |
"cudart-dev" | ||
"nvcc" | ||
"profiler-api" | ||
"libnvfatbin" | ||
) | ||
|
||
## ------------------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
* @file | ||
* | ||
* @brief A single file which includes, in turn, the CUDA | ||
* fatbin creator library API wrappers and related headers. | ||
*/ | ||
#pragma once | ||
#ifndef CUDA_FATBIN_WRAPPERS_HPP_ | ||
#define CUDA_FATBIN_WRAPPERS_HPP_ | ||
|
||
#if CUDA_VERSION >= 12040 | ||
|
||
#include "fatbin/types.hpp" | ||
#include "fatbin/error.hpp" | ||
#include "fatbin/builder_options.hpp" | ||
#include "fatbin/builder.hpp" | ||
|
||
#endif // CUDA_VERSION >= 12040 | ||
|
||
#endif // CUDA_FATBIN_WRAPPERS_HPP_ |
Oops, something went wrong.