Skip to content

Commit f943507

Browse files
committed
change arm acl library convert use warp instead of saturate
1 parent 3c14015 commit f943507

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/intel_cpu/src/nodes/executors/acl/acl_convert.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ bool ACLConvertExecutor::init(const ConvertParams& convertParams,
5656
return false;
5757
}
5858
} else {
59-
Status s = NECast::validate(&srcTensorInfo, &dstTensorInfo, ConvertPolicy::SATURATE);
59+
Status s = NECast::validate(&srcTensorInfo, &dstTensorInfo, ConvertPolicy::WRAP);
6060
if (!s) {
6161
DEBUG_LOG("NECast validation failed: ", s.error_description());
6262
return false;
@@ -74,7 +74,7 @@ bool ACLConvertExecutor::init(const ConvertParams& convertParams,
7474
} else {
7575
acl_cast = std::make_unique<NECast>();
7676
configureThreadSafe([&] {
77-
acl_cast->configure(&srcTensor, &dstTensor, ConvertPolicy::SATURATE);
77+
acl_cast->configure(&srcTensor, &dstTensor, ConvertPolicy::WRAP);
7878
});
7979
}
8080
return true;

0 commit comments

Comments
 (0)