We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 468701a commit b36781bCopy full SHA for b36781b
modules/java_api/src/test/java/org/intel/openvino/CoreTests.java
@@ -82,15 +82,15 @@ public void testProperty() {
82
Map<String, String> config =
83
new HashMap<String, String>() {
84
{
85
- put("CPU_THROUGHPUT_STREAMS", "4");
+ put("NUM_STREAMS", "4");
86
}
87
};
88
core.set_property("CPU", config);
89
int nireq2 = core.get_property("CPU", "OPTIMAL_NUMBER_OF_INFER_REQUESTS").asInt();
90
91
assertEquals("Final number of requests", 4, nireq2);
92
93
- config.put("CPU_THROUGHPUT_STREAMS", "1");
+ config.put("NUM_STREAMS", "1");
94
core.set_property("CPU", config); // Restore
95
96
0 commit comments