1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-29 15:15:56 +01:00

Reverting to older version of nvtx for Tursa support

This commit is contained in:
Mashy Green 2025-01-29 12:57:38 +00:00
parent d4868991af
commit aaab753982
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@
NAMESPACE_BEGIN(Grid); NAMESPACE_BEGIN(Grid);
#ifdef GRID_TRACING_NVTX #ifdef GRID_TRACING_NVTX
#include <nvtx3/nvToolsExt.h> #include <nvToolsExt.h>
class GridTracer { class GridTracer {
public: public:
GridTracer(const char* name) { GridTracer(const char* name) {

View File

@ -136,6 +136,7 @@ AC_ARG_ENABLE([tracing],
case ${ac_TRACING} in case ${ac_TRACING} in
nvtx) nvtx)
AC_DEFINE([GRID_TRACING_NVTX],[1],[use NVTX]) AC_DEFINE([GRID_TRACING_NVTX],[1],[use NVTX])
LIBS="${LIBS} -lnvToolsExt"
;; ;;
roctx) roctx)
AC_DEFINE([GRID_TRACING_ROCTX],[1],[use ROCTX]) AC_DEFINE([GRID_TRACING_ROCTX],[1],[use ROCTX])