forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproperty_test.cpp
More file actions
308 lines (269 loc) · 12.1 KB
/
property_test.cpp
File metadata and controls
308 lines (269 loc) · 12.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
// Copyright (C) 2018-2026 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include <gtest/gtest.h>
#include <limits>
#include "common_test_utils/test_assertions.hpp"
#include "openvino/runtime/properties.hpp"
namespace ov::test {
// --- ov::hint::num_requests (uint32_t property) ---
// Negative values from different signed types should be rejected
TEST(PropertyValidation, NumRequestsRejectsNegativeInt) {
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(-1), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(-100), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(std::numeric_limits<int>::min()),
ov::Exception,
testing::HasSubstr("negative"));
}
TEST(PropertyValidation, NumRequestsRejectsNegativeLong) {
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(-1L), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(static_cast<long>(-100)),
ov::Exception,
testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(std::numeric_limits<long>::min()),
ov::Exception,
testing::HasSubstr("negative"));
}
TEST(PropertyValidation, NumRequestsRejectsNegativeInt64) {
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(int64_t{-1}), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(std::numeric_limits<int64_t>::min()),
ov::Exception,
testing::HasSubstr("negative"));
}
TEST(PropertyValidation, NumRequestsRejectsNegativeShort) {
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(short{-1}), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(std::numeric_limits<short>::min()),
ov::Exception,
testing::HasSubstr("negative"));
}
TEST(PropertyValidation, NumRequestsRejectsNegativeSignedChar) {
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(static_cast<signed char>(-1)),
ov::Exception,
testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(std::numeric_limits<signed char>::min()),
ov::Exception,
testing::HasSubstr("negative"));
}
// Zero from signed types should be accepted
TEST(PropertyValidation, NumRequestsAcceptsZeroFromSignedTypes) {
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(0);
EXPECT_EQ(kv.second.as<uint32_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(0L);
EXPECT_EQ(kv.second.as<uint32_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(int64_t{0});
EXPECT_EQ(kv.second.as<uint32_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(short{0});
EXPECT_EQ(kv.second.as<uint32_t>(), 0u);
});
}
// Positive values from signed types should be accepted
TEST(PropertyValidation, NumRequestsAcceptsPositiveFromSignedTypes) {
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(1);
EXPECT_EQ(kv.second.as<uint32_t>(), 1u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(100);
EXPECT_EQ(kv.second.as<uint32_t>(), 100u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(std::numeric_limits<int>::max());
EXPECT_EQ(kv.second.as<uint32_t>(), static_cast<uint32_t>(std::numeric_limits<int>::max()));
});
}
// Unsigned types should always be accepted
TEST(PropertyValidation, NumRequestsAcceptsUnsignedTypes) {
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(uint32_t{0});
EXPECT_EQ(kv.second.as<uint32_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(uint32_t{100});
EXPECT_EQ(kv.second.as<uint32_t>(), 100u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(std::numeric_limits<uint32_t>::max());
EXPECT_EQ(kv.second.as<uint32_t>(), std::numeric_limits<uint32_t>::max());
});
}
// --- ov::auto_batch_timeout (uint32_t property) ---
TEST(PropertyValidation, AutoBatchTimeoutRejectsNegativeInt) {
OV_EXPECT_THROW(std::ignore = ov::auto_batch_timeout(-1), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::auto_batch_timeout(-1000), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::auto_batch_timeout(std::numeric_limits<int>::min()),
ov::Exception,
testing::HasSubstr("negative"));
}
TEST(PropertyValidation, AutoBatchTimeoutAcceptsZeroAndPositive) {
OV_ASSERT_NO_THROW({
auto kv = ov::auto_batch_timeout(0);
EXPECT_EQ(kv.second.as<uint32_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::auto_batch_timeout(1000);
EXPECT_EQ(kv.second.as<uint32_t>(), 1000u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::auto_batch_timeout(uint32_t{5000});
EXPECT_EQ(kv.second.as<uint32_t>(), 5000u);
});
}
// --- ov::hint::dynamic_quantization_group_size (uint64_t property) ---
TEST(PropertyValidation, DynamicQuantizationGroupSizeRejectsNegativeInt) {
OV_EXPECT_THROW(std::ignore = ov::hint::dynamic_quantization_group_size(-1),
ov::Exception,
testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::dynamic_quantization_group_size(int64_t{-1}),
ov::Exception,
testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::dynamic_quantization_group_size(std::numeric_limits<int64_t>::min()),
ov::Exception,
testing::HasSubstr("negative"));
}
TEST(PropertyValidation, DynamicQuantizationGroupSizeAcceptsZeroAndPositive) {
OV_ASSERT_NO_THROW({
auto kv = ov::hint::dynamic_quantization_group_size(0);
EXPECT_EQ(kv.second.as<uint64_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::dynamic_quantization_group_size(128);
EXPECT_EQ(kv.second.as<uint64_t>(), 128u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::dynamic_quantization_group_size(uint64_t{256});
EXPECT_EQ(kv.second.as<uint64_t>(), 256u);
});
}
// --- ov::key_cache_group_size (uint64_t property) ---
TEST(PropertyValidation, KeyCacheGroupSizeRejectsNegativeInt) {
OV_EXPECT_THROW(std::ignore = ov::key_cache_group_size(-1), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::key_cache_group_size(int64_t{-100}),
ov::Exception,
testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::key_cache_group_size(std::numeric_limits<int>::min()),
ov::Exception,
testing::HasSubstr("negative"));
}
TEST(PropertyValidation, KeyCacheGroupSizeAcceptsZeroAndPositive) {
OV_ASSERT_NO_THROW({
auto kv = ov::key_cache_group_size(0);
EXPECT_EQ(kv.second.as<uint64_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::key_cache_group_size(64);
EXPECT_EQ(kv.second.as<uint64_t>(), 64u);
});
}
// --- ov::value_cache_group_size (uint64_t property) ---
TEST(PropertyValidation, ValueCacheGroupSizeRejectsNegativeInt) {
OV_EXPECT_THROW(std::ignore = ov::value_cache_group_size(-1), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::value_cache_group_size(int64_t{-1}),
ov::Exception,
testing::HasSubstr("negative"));
}
TEST(PropertyValidation, ValueCacheGroupSizeAcceptsZeroAndPositive) {
OV_ASSERT_NO_THROW({
auto kv = ov::value_cache_group_size(0);
EXPECT_EQ(kv.second.as<uint64_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::value_cache_group_size(uint64_t{128});
EXPECT_EQ(kv.second.as<uint64_t>(), 128u);
});
}
// --- Signed properties: verify they still accept negative values ---
TEST(PropertyValidation, InferenceNumThreadsAcceptsNegative) {
// int32_t property - negative values are valid
OV_ASSERT_NO_THROW({
auto kv = ov::inference_num_threads(-1);
EXPECT_EQ(kv.second.as<int32_t>(), -1);
});
OV_ASSERT_NO_THROW({
auto kv = ov::inference_num_threads(std::numeric_limits<int32_t>::min());
EXPECT_EQ(kv.second.as<int32_t>(), std::numeric_limits<int32_t>::min());
});
}
TEST(PropertyValidation, CompilationNumThreadsAcceptsNegative) {
// int32_t property - negative values are valid
OV_ASSERT_NO_THROW({
auto kv = ov::compilation_num_threads(-1);
EXPECT_EQ(kv.second.as<int32_t>(), -1);
});
}
// --- Overflow tests: values exceeding uint32_t max from int64_t ---
TEST(PropertyValidation, NumRequestsRejectsOverflowFromInt64) {
// int64_t value larger than uint32_t max should be rejected
int64_t overflow_value = static_cast<int64_t>(std::numeric_limits<uint32_t>::max()) + 1;
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(overflow_value), ov::Exception, testing::HasSubstr("exceeds"));
}
TEST(PropertyValidation, NumRequestsAcceptsMaxUint32FromInt64) {
// int64_t value equal to uint32_t max should be accepted
int64_t max_value = static_cast<int64_t>(std::numeric_limits<uint32_t>::max());
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(max_value);
EXPECT_EQ(kv.second.as<uint32_t>(), std::numeric_limits<uint32_t>::max());
});
}
TEST(PropertyValidation, AutoBatchTimeoutRejectsOverflowFromInt64) {
int64_t overflow_value = static_cast<int64_t>(std::numeric_limits<uint32_t>::max()) + 1;
OV_EXPECT_THROW(std::ignore = ov::auto_batch_timeout(overflow_value), ov::Exception, testing::HasSubstr("exceeds"));
}
// uint32_t properties: string "-1" should be rejected
TEST(PropertyValidation, NumRequestsRejectsNegativeString) {
// String "-1" should behave the same as int -1
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests("-1"), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(std::string{"-1"}),
ov::Exception,
testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests("-100"), ov::Exception, testing::HasSubstr("negative"));
}
TEST(PropertyValidation, AutoBatchTimeoutRejectsNegativeString) {
OV_EXPECT_THROW(std::ignore = ov::auto_batch_timeout("-1"), ov::Exception, testing::HasSubstr("negative"));
OV_EXPECT_THROW(std::ignore = ov::auto_batch_timeout(std::string{"-500"}),
ov::Exception,
testing::HasSubstr("negative"));
}
// String edge case
TEST(PropertyValidation, NumRequestsRejectsNegativeStringWithWhitespace) {
// " -1" with leading whitespace should be rejected
OV_EXPECT_THROW(std::ignore = ov::hint::num_requests(" -1"), ov::Exception, testing::HasSubstr("negative"));
}
// Positive string values should be accepted
TEST(PropertyValidation, NumRequestsAcceptsPositiveString) {
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests("0");
EXPECT_EQ(kv.second.as<uint32_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests("42");
EXPECT_EQ(kv.second.as<uint32_t>(), 42u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::hint::num_requests(std::string{"100"});
EXPECT_EQ(kv.second.as<uint32_t>(), 100u);
});
}
TEST(PropertyValidation, AutoBatchTimeoutAcceptsPositiveString) {
OV_ASSERT_NO_THROW({
auto kv = ov::auto_batch_timeout("0");
EXPECT_EQ(kv.second.as<uint32_t>(), 0u);
});
OV_ASSERT_NO_THROW({
auto kv = ov::auto_batch_timeout("1000");
EXPECT_EQ(kv.second.as<uint32_t>(), 1000u);
});
}
TEST(PropertiesValidation, BoolPropertyAcceptsIntegerValues) {
OV_ASSERT_NO_THROW(std::ignore = ov::enable_mmap(true));
OV_ASSERT_NO_THROW(std::ignore = ov::enable_mmap(1));
OV_ASSERT_NO_THROW(std::ignore = ov::enable_mmap(2));
OV_ASSERT_NO_THROW(std::ignore = ov::enable_mmap(0));
}
} // namespace ov::test