Skip to content

Commit 495e554

Browse files
committed
Change weights prefix
1 parent 86caaa2 commit 495e554

File tree

1 file changed

+3
-3
lines changed
  • src/plugins/intel_npu/src/al/include/intel_npu

1 file changed

+3
-3
lines changed

src/plugins/intel_npu/src/al/include/intel_npu/prefix.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ namespace intel_npu {
1515
constexpr std::string_view READVALUE_PREFIX = "vpux_ie_read_value_";
1616
constexpr std::string_view ASSIGN_PREFIX = "vpux_ie_assign_";
1717
constexpr std::string_view SHAPE_TENSOR_PREFIX = "vpux_ie_shape_";
18-
constexpr std::string_view INIT_INPUT_WEIGHTS_PREFIX = "in_ngraphSharedConstant_";
19-
constexpr std::string_view INIT_OUTPUT_WEIGHTS_PREFIX = "out_ngraphSharedConstant_";
20-
constexpr std::string_view MAIN_INPUT_WEIGHTS_PREFIX = "out_ngraphSharedConstant_";
18+
constexpr std::string_view INIT_INPUT_WEIGHTS_PREFIX = "in_ov_";
19+
constexpr std::string_view INIT_OUTPUT_WEIGHTS_PREFIX = "out_ov_";
20+
constexpr std::string_view MAIN_INPUT_WEIGHTS_PREFIX = "out_ov_";
2121

2222
inline bool nameHasPrefix(std::string_view name, std::string_view prefix) {
2323
return !name.compare(0, prefix.length(), prefix);

0 commit comments

Comments
 (0)