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

Remove enable-sep-transposed-conv from compilation params #176

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading