diff --git a/src/roc_shmem.cpp b/src/roc_shmem.cpp index 5ca9051f37..32ef91bbda 100644 --- a/src/roc_shmem.cpp +++ b/src/roc_shmem.cpp @@ -88,11 +88,9 @@ roc_shmem_ctx_t ROC_SHMEM_HOST_CTX_DEFAULT; CHECK_HIP(hipHostMalloc(&backend, sizeof(GPUIBBackend))); backend = new (backend) GPUIBBackend(comm); #elif defined(USE_RO) - printf("RO Backend\n"); CHECK_HIP(hipHostMalloc(&backend, sizeof(ROBackend))); backend = new (backend) ROBackend(comm); #else - printf("IPC Backend\n"); CHECK_HIP(hipHostMalloc(&backend, sizeof(IPCBackend))); backend = new (backend) IPCBackend(comm); #endif diff --git a/tests/unit_tests/CMakeLists.txt b/tests/unit_tests/CMakeLists.txt index 3f1cf89a17..349bb2c2bf 100644 --- a/tests/unit_tests/CMakeLists.txt +++ b/tests/unit_tests/CMakeLists.txt @@ -88,7 +88,7 @@ target_sources( notifier_gtest.cpp #forward_list_gtest.cpp free_list_gtest.cpp - context_ipc_gtest.cpp + #context_ipc_gtest.cpp ipc_impl_simple_coarse_gtest.cpp ) diff --git a/tests/unit_tests/context_ipc_gtest.hpp b/tests/unit_tests/context_ipc_gtest.hpp index fc39504958..24a80fcedb 100644 --- a/tests/unit_tests/context_ipc_gtest.hpp +++ b/tests/unit_tests/context_ipc_gtest.hpp @@ -25,8 +25,8 @@ #include "gtest/gtest.h" -#include "../src/ipc/context_ipc.hpp" -#include "../src/reverse_offload/backend_ro.hpp" +#include "../src/ipc/context_ipc_device.hpp" +#include "../src/ipc/backend_ipc.hpp" namespace rocshmem { @@ -36,7 +36,7 @@ class ContextIpcTestFixture : public ::testing::Test /** * @brief Context Ipc Test */ - ROBackend be{MPI_COMM_WORLD}; + IPCBackend be{MPI_COMM_WORLD}; IPCContext ipc_context_ {&be}; };