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

Chromeos vpu #175

Merged
merged 1 commit into from
Feb 14, 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
4 changes: 3 additions & 1 deletion IENetwork.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ bool IENetwork::loadNetwork() {

ALOGD("Creating infer request for Intel Device Type : %s", deviceStr.c_str());
if (mNetwork) {
compiled_model = ie.compile_model(mNetwork, deviceStr);
ov::AnyMap config;
config["NPU_COMPILATION_MODE_PARAMS"] = "enable-se-ptrs-operations=true enable-sep-transposed-conv=true";
compiled_model = ie.compile_model(mNetwork, deviceStr, config);
ALOGD("LoadNetwork is done....");

#if __ANDROID__
Expand Down
Loading