Skip to content

Commit

Permalink
[GPU] Resolved function test issue. (#22648)
Browse files Browse the repository at this point in the history
### Tickets:
 - *129728*

---------

Signed-off-by: hyunback <[email protected]>
  • Loading branch information
hyunback authored Feb 7, 2024
1 parent 411b951 commit 56719ac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,6 @@ TEST_P(OVGetMetricPropsTest_CACHING_PROPERTIES, GetMetricAndPrintNoThrow) {
const std::vector<ov::PropertyName> expected_properties = {
ov::device::architecture.name(),
ov::intel_gpu::execution_units_count.name(),
ov::intel_gpu::driver_version.name(),
ov::hint::inference_precision.name(),
ov::hint::execution_mode.name(),
};
Expand All @@ -700,8 +699,6 @@ TEST_P(OVGetMetricPropsTest_CACHING_PROPERTIES, GetMetricAndPrintNoThrow) {
ASSERT_TRUE(std::find(caching_properties.begin(), caching_properties.end(), property_name) !=
caching_properties.end());
}

OV_ASSERT_PROPERTY_SUPPORTED(ov::internal::caching_properties);
}

INSTANTIATE_TEST_SUITE_P(nightly_OVGetMetricPropsTest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ std::vector<std::string> disabledTestPatterns() {
// Unknown issues
R"(.*(LSTMSequence).*mode=.*_RAND_SEQ_LEN_CONST.*)",
R"(.*(smoke_DetectionOutput5In).*)",


// TODO: Issue: 47773
R"(.*(ProposalLayerTest).*)",
// TODO: Issue: 54194
Expand All @@ -35,12 +37,14 @@ std::vector<std::string> disabledTestPatterns() {
R"(.*Behavior.*OVInferRequestIOTensorTest.*canInferAfterIOBlobReallocation.*)",
// Not implemented yet:
R"(.*Behavior.*ExecutableNetworkBaseTest.*canSetConfigToExecNet.*)",
// Issue: 122177
R"(.*LSTMSequenceCommon.*LSTMSequenceTest.Inference.*CONVERT_TO_TI.*)",
// TODO: Issue 67408
R"(.*smoke_LSTMSequenceCommonClip.*LSTMSequenceTest.*Inference.*)",
// TODO: Issue 114262
R"(LSTMSequenceCommonZeroClipNonConstantWRB/LSTMSequenceTest.Inference/mode=PURE_SEQ_seq_lengths=2_batch=10_hidden_size=1_.*relu.*)",
// Expected behavior. GPU plugin doesn't support i64 for eltwise power operation.
R"(.*EltwiseLayerTest.*OpType=Pow.*NetType=i64.*)",
R"(.*EltwiseLayerTest.*eltwise_op_type=Pow.*model_type=i64.*)",
// TODO: Issue: 68712
R"(.*.MatMul.*CompareWithRefs.*IS0=\(1.5\)_IS1=\(1.5\).*transpose_a=0.*transpose_b=1.*CONSTANT.*FP16.*UNSPECIFIED.*UNSPECIFIED.*ANY.*)",
// Unsupported
Expand All @@ -66,6 +70,9 @@ std::vector<std::string> disabledTestPatterns() {
R"(.*CachingSupportCase.*GPU.*CompileModelCacheTestBase.*CompareWithRefImpl.*)",
// unsupported metrics
R"(.*nightly_HeteroAutoBatchOVGetMetricPropsTest.*OVGetMetricPropsTest.*(FULL_DEVICE_NAME_with_DEVICE_ID|AVAILABLE_DEVICES|DEVICE_UUID|OPTIMIZATION_CAPABILITIES|MAX_BATCH_SIZE|DEVICE_GOPS|DEVICE_TYPE|RANGE_FOR_ASYNC_INFER_REQUESTS|RANGE_FOR_STREAMS).*)",
// Issue: 131699 SUPPORTED_PROPERTIES in BATCH issue. DEVICE_ID in BATCH, HETERO issue.
R"(.*OVClassCompiledModelGetPropertyTest/OVClassCompiledModelGetPropertyTest.GetMetricNoThrow_SUPPORTED_CONFIG_KEYS/2)",
R"(.*nightly_HeteroAutoBatchOVCheckChangePropComplieModleGetPropTests_DEVICE_ID.*)",
// Issue: 111437
R"(.*smoke_Deconv_2D_Dynamic_.*FP32/DeconvolutionLayerGPUTest.Inference.*)",
R"(.*smoke_GroupDeconv_2D_Dynamic_.*FP32/GroupDeconvolutionLayerGPUTest.Inference.*)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ TEST_P(OVClassSeveralDevicesTestQueryModel, QueryModelActualSeveralDevicesNoThro
clear_target_device = target_devices.begin()->substr(0, pos);
}
auto deviceIDs = ie.get_property(clear_target_device, ov::available_devices);
ASSERT_LT(deviceIDs.size(), target_devices.size());
ASSERT_LE(deviceIDs.size(), target_devices.size());

std::string multi_target_device = ov::test::utils::DEVICE_MULTI + std::string(":");
for (auto& dev_name : target_devices) {
Expand Down

0 comments on commit 56719ac

Please sign in to comment.