Skip to content

Commit 8c58aa1

Browse files
author
David Pava
authored
[NPU] Capitalizing Workload Type enum (#25501)
### Details: - Using capital letters for workload type ### Tickets: - CVS-143714
1 parent 20f1b66 commit 8c58aa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/inference/include/openvino/runtime/properties.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -708,9 +708,9 @@ enum class WorkloadType {
708708
inline std::ostream& operator<<(std::ostream& os, const WorkloadType& mode) {
709709
switch (mode) {
710710
case WorkloadType::DEFAULT:
711-
return os << "Default";
711+
return os << "DEFAULT";
712712
case WorkloadType::EFFICIENT:
713-
return os << "Efficient";
713+
return os << "EFFICIENT";
714714
default:
715715
OPENVINO_THROW("Unsupported workload type");
716716
}

0 commit comments

Comments
 (0)