Skip to content

Commit

Permalink
Improvements thanks to review.
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenarnst committed Nov 17, 2023
1 parent c390533 commit 05dfaef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion profiling/nvtx-connector/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CXX=g++
CXXFLAGS=-O3 -std=c++11 -g -I$(CUDA_ROOT)/include/
CXXFLAGS=-O3 -std=c++11 -g -I$(CUDA_ROOT)/include
LDFLAGS=-L$(CUDA_ROOT)/lib64
LIBS=-lnvToolsExt
SHARED_CXXFLAGS=-shared -fPIC
Expand Down
4 changes: 2 additions & 2 deletions profiling/roctx-connector/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ find_path(ROCM_ROCTX_INCLUDE roctx.h REQUIRED HINTS $ENV{ROCM_PATH}/include/roct

kp_add_library(kp_roctx_connector kp_roctx_connector.cpp)

target_include_directories(kp_roctx_connector PUBLIC ${ROCM_ROCTX_INCLUDE})
target_link_libraries(kp_roctx_connector PUBLIC ${ROCM_ROCTX_LIB})
target_include_directories(kp_roctx_connector PRIVATE ${ROCM_ROCTX_INCLUDE})
target_link_libraries(kp_roctx_connector PRIVATE ${ROCM_ROCTX_LIB})
1 change: 0 additions & 1 deletion profiling/roctx-connector/kp_roctx_connector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ void kokkosp_init_library(const int loadSeq,
std::cout << "-----------------------------------------------------------\n"
<< "KokkosP: ROC Tracer Connector (sequence is " << loadSeq
<< ", version: " << interfaceVer << ")\n"
<< "Global fences: " << (tool_globfences ? "ON" : "OFF") << "\n"
<< "-----------------------------------------------------------\n";

roctxMark("Kokkos::Initialization Complete");
Expand Down

0 comments on commit 05dfaef

Please sign in to comment.