Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

Commit

Permalink
Remove enable-sep-transposed-conv from compilation params
Browse files Browse the repository at this point in the history
Removes enable-sep-transposed-conv from compilation params as
it's not supported

Signed-off-by: Ritul Jasuja <[email protected]>
  • Loading branch information
Rjasuja authored and anikulk committed Mar 28, 2024
1 parent 6c5aa71 commit 9d73779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IENetwork.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ bool IENetwork::loadNetwork() {
ALOGD("Creating infer request for Intel Device Type : %s", deviceStr.c_str());
if (mNetwork) {
ov::AnyMap config;
config["NPU_COMPILATION_MODE_PARAMS"] = "enable-se-ptrs-operations=true enable-sep-transposed-conv=true";
config["NPU_COMPILATION_MODE_PARAMS"] = "enable-se-ptrs-operations=true";
compiled_model = ie.compile_model(mNetwork, deviceStr, config);
ALOGD("LoadNetwork is done....");

Expand Down

0 comments on commit 9d73779

Please sign in to comment.