diff --git a/projects/rocprofiler/test/CMakeLists.txt b/projects/rocprofiler/test/CMakeLists.txt index 795325ab37..0fd2eca559 100644 --- a/projects/rocprofiler/test/CMakeLists.txt +++ b/projects/rocprofiler/test/CMakeLists.txt @@ -37,4 +37,4 @@ set ( TEST_LIB "tool" ) set ( TEST_LIB_SRC ${TEST_DIR}/ctrl/tool.cpp ${UTIL_SRC} ) add_library ( ${TEST_LIB} SHARED ${TEST_LIB_SRC} ) target_include_directories ( ${TEST_LIB} PRIVATE ${TEST_DIR} ${ROOT_DIR} ${HSA_RUNTIME_INC_PATH} ) -target_link_libraries( ${TEST_LIB} ${ROCPROFILER_TARGET} ${HSA_RUNTIME_LIB} c stdc++ dl pthread rt atomic ) +target_link_libraries ( ${TEST_LIB} ${ROCPROFILER_TARGET} ${HSA_RUNTIME_LIB} c stdc++ dl pthread rt atomic ) diff --git a/projects/rocprofiler/test/simple_convolution/gfx9_SimpleConvolution.hsaco b/projects/rocprofiler/test/simple_convolution/gfx9_SimpleConvolution.hsaco old mode 100644 new mode 100755 index f65dde4252..ca0e6bcefc Binary files a/projects/rocprofiler/test/simple_convolution/gfx9_SimpleConvolution.hsaco and b/projects/rocprofiler/test/simple_convolution/gfx9_SimpleConvolution.hsaco differ diff --git a/projects/rocprofiler/test/simple_convolution/simple_convolution.cpp b/projects/rocprofiler/test/simple_convolution/simple_convolution.cpp index 8052f2b971..d05856bcb5 100644 --- a/projects/rocprofiler/test/simple_convolution/simple_convolution.cpp +++ b/projects/rocprofiler/test/simple_convolution/simple_convolution.cpp @@ -299,7 +299,7 @@ void SimpleConvolution::Init() { mem_descr_t input_des = GetDescr(INPUT_BUF_ID); mem_descr_t mask_des = GetDescr(MASK_BUF_ID); mem_descr_t output_des = GetDescr(LOCAL_BUF_ID); -#if 0 +#if 1 printf("kernarg_des %p 0x%x\n", kernarg_des.ptr, kernarg_des.size); printf("input_des %p 0x%x\n", input_des.ptr, input_des.size); printf("mask_des %p 0x%x\n", mask_des.ptr, mask_des.size); diff --git a/projects/rocprofiler/test/simple_convolution/simple_convolution.h b/projects/rocprofiler/test/simple_convolution/simple_convolution.h index 38424baaed..a2391b97a2 100644 --- a/projects/rocprofiler/test/simple_convolution/simple_convolution.h +++ b/projects/rocprofiler/test/simple_convolution/simple_convolution.h @@ -64,6 +64,7 @@ class SimpleConvolution : public TestKernel { uint32_t arg41; uint32_t arg5; uint32_t arg51; + uint64_t pad[6]; }; // Reference CPU implementation of Simple Convolution