diff --git a/offloading-cacher/cache.hpp b/offloading-cacher/cache.hpp index 3dbcf06..98d07b6 100755 --- a/offloading-cacher/cache.hpp +++ b/offloading-cacher/cache.hpp @@ -522,15 +522,15 @@ inline dml::handler> dsacache:: dml::data_view dstv = dml::make_view(dst, size); if (CheckFlag(flags_, FLAG_HANDLE_PF)) { - return dml::submit( + return dml::submit( dml::mem_copy.block_on_fault(), srcv, dstv, - dml::execution_interface>(), node + dml::execution_interface>(), node ); } else { - return dml::submit( + return dml::submit( dml::mem_copy, srcv, dstv, - dml::execution_interface>(), node + dml::execution_interface>(), node ); } }