@@ -88,7 +88,7 @@ TEST_P(CudaInteropGetNativeTests, hostTaskGetNativeMem) {
8888 buffer<int , 1 > syclBuffer (range<1 >{1 });
8989 syclQueue_->submit ([&](handler &cgh) {
9090 auto syclAccessor = syclBuffer.get_access <access::mode::read>(cgh);
91- cgh.codeplay_host_task ([=](interop_handle ih) {
91+ cgh.host_task ([=](interop_handle ih) {
9292 CUdeviceptr cudaPtr = ih.get_native_mem <backend::cuda>(syclAccessor);
9393 CUdeviceptr cudaPtrBase;
9494 size_t cudaPtrSize = 0 ;
@@ -106,7 +106,7 @@ TEST_P(CudaInteropGetNativeTests, hostTaskGetNativeMem) {
106106TEST_P (CudaInteropGetNativeTests, hostTaskGetNativeQueue) {
107107 CUstream cudaStream = get_native<backend::cuda>(*syclQueue_);
108108 syclQueue_->submit ([&](handler &cgh) {
109- cgh.codeplay_host_task ([=](interop_handle ih) {
109+ cgh.host_task ([=](interop_handle ih) {
110110 CUstream cudaInteropStream = ih.get_native_queue <backend::cuda>();
111111 ASSERT_EQ (cudaInteropStream, cudaStream);
112112 });
@@ -116,7 +116,7 @@ TEST_P(CudaInteropGetNativeTests, hostTaskGetNativeQueue) {
116116TEST_P (CudaInteropGetNativeTests, hostTaskGetNativeContext) {
117117 CUcontext cudaContext = get_native<backend::cuda>(syclQueue_->get_context ());
118118 syclQueue_->submit ([&](handler &cgh) {
119- cgh.codeplay_host_task ([=](interop_handle ih) {
119+ cgh.host_task ([=](interop_handle ih) {
120120 CUcontext cudaInteropContext = ih.get_native_context <backend::cuda>();
121121 ASSERT_EQ (cudaInteropContext, cudaContext);
122122 });
0 commit comments