-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Josh Morman <[email protected]>
- Loading branch information
Showing
27 changed files
with
161 additions
and
161 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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# gr-cuda_buffer | ||
gr-cuda_buffer OOT module to accompany the ngsched changes | ||
# gr-cuda | ||
gr-cuda OOT module to accompany the ngsched changes |
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,33 @@ | ||
if(NOT PKG_CONFIG_FOUND) | ||
INCLUDE(FindPkgConfig) | ||
endif() | ||
PKG_CHECK_MODULES(PC_CUDA cuda) | ||
|
||
FIND_PATH( | ||
CUDA_INCLUDE_DIRS | ||
NAMES cuda/api.h | ||
HINTS $ENV{CUDA_DIR}/include | ||
${PC_CUDA_INCLUDEDIR} | ||
PATHS ${CMAKE_INSTALL_PREFIX}/include | ||
/usr/local/include | ||
/usr/include | ||
) | ||
|
||
FIND_LIBRARY( | ||
CUDA_LIBRARIES | ||
NAMES gnuradio-cuda | ||
HINTS $ENV{CUDA_DIR}/lib | ||
${PC_CUDA_LIBDIR} | ||
PATHS ${CMAKE_INSTALL_PREFIX}/lib | ||
${CMAKE_INSTALL_PREFIX}/lib64 | ||
/usr/local/lib | ||
/usr/local/lib64 | ||
/usr/lib | ||
/usr/lib64 | ||
) | ||
|
||
#include("${CMAKE_CURRENT_LIST_DIR}/cudaTarget.cmake") | ||
|
||
INCLUDE(FindPackageHandleStandardArgs) | ||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(CUDA DEFAULT_MSG CUDA_LIBRARIES CUDA_INCLUDE_DIRS) | ||
MARK_AS_ADVANCED(CUDA_LIBRARIES CUDA_INCLUDE_DIRS) |
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
This is the cuda-write-a-block package meant as a guide to building | ||
out-of-tree packages. To use the cuda blocks, the Python namespaces | ||
is in 'cuda', which is imported as: | ||
|
||
import cuda | ||
|
||
See the Doxygen documentation for details about the blocks available | ||
in this package. A quick listing of the details can be found in Python | ||
after importing by using: | ||
|
||
help(cuda) |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
/* | ||
* Copyright 2011 Free Software Foundation, Inc. | ||
* | ||
* This file was generated by gr_modtool, a tool from the GNU Radio framework | ||
* This file is a part of gr-cuda | ||
* | ||
* SPDX-License-Identifier: GPL-3.0-or-later | ||
* | ||
*/ | ||
|
||
#ifndef INCLUDED_CUDA_API_H | ||
#define INCLUDED_CUDA_API_H | ||
|
||
#include <gnuradio/attributes.h> | ||
|
||
#ifdef gnuradio_cuda_EXPORTS | ||
#define CUDA_API __GR_ATTR_EXPORT | ||
#else | ||
#define CUDA_API __GR_ATTR_IMPORT | ||
#endif | ||
|
||
#endif /* INCLUDED_CUDA_API_H */ |
Oops, something went wrong.