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

Fixed wrong lib for NVTX in configure.ac and updated to nvtx3

This commit is contained in:
Mashy Green 2025-01-10 14:53:19 +00:00
parent 5a4f9bf2e3
commit d4868991af
2 changed files with 1 additions and 2 deletions

View File

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

View File

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