From bd66615b1ac7b6a335348659a41ce747cfb2165f Mon Sep 17 00:00:00 2001 From: sampath1117 Date: Mon, 17 Apr 2023 11:26:32 +0000 Subject: [PATCH] added default value for numThreads for the internal hip handle creation call --- src/include/common/rpp/handle.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/common/rpp/handle.hpp b/src/include/common/rpp/handle.hpp index f49f3848e..7dc29e49b 100644 --- a/src/include/common/rpp/handle.hpp +++ b/src/include/common/rpp/handle.hpp @@ -84,7 +84,7 @@ struct Handle : rppHandle { // Host handle related Handle(); - Handle(size_t nBatchSize, Rpp32u numThreads); + Handle(size_t nBatchSize, Rpp32u numThreads = 0); Handle(Handle&&) noexcept; ~Handle(); InitHandle* GetInitHandle() const;