From c7b91e400f3353a2b83a40e8a53455d3776fb9e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20F=C3=BCrst?= Date: Wed, 7 Feb 2024 17:22:50 +0100 Subject: [PATCH] reset to using hardware path, sw was only temporarily used for debugging --- offloading-cacher/cache.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offloading-cacher/cache.hpp b/offloading-cacher/cache.hpp index 77ddc8c..220ef1c 100644 --- a/offloading-cacher/cache.hpp +++ b/offloading-cacher/cache.hpp @@ -513,13 +513,13 @@ 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 ); } else { - return dml::submit( + return dml::submit( dml::mem_copy, srcv, dstv, dml::execution_interface>(), node );