Skip to content

Commit

Permalink
comment out unstable proposal v2_6 testcase (openvinotoolkit#23742)
Browse files Browse the repository at this point in the history
### Details:
 - *comment out the PDPD proposal v2_6 testcase*
 
### Tickets:
 - *130605*
  • Loading branch information
xczhai authored Apr 3, 2024
1 parent 8a81500 commit 1c82c17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontends/paddle/tests/op_fuzzy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ static const std::vector<std::string> models{
std::string("generate_proposals_v2_4"),
// ticket 130605: actual res value is not close
// std::string("generate_proposals_v2_5"),
std::string("generate_proposals_v2_6"),
// std::string("generate_proposals_v2_6"),
// greater_equal_big_int64(failure due to CPU inference),
std::string("greater_equal_big_int64"),
std::string("greater_equal_float32"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ def generate_proposals_v2(name: str, input_data: dict, attr: dict):
'''

# test case 6
'''
TODO: ticket 130605
input_name = "generate_proposals_v2_6"
input_data["scores"] = np.random.rand(2, 6, 10, 8).astype('float32')
input_data["bbox_deltas"] = np.random.rand(2, 24, 10, 8).astype('float32')
Expand All @@ -162,3 +164,4 @@ def generate_proposals_v2(name: str, input_data: dict, attr: dict):
attr["post_nms_top_n"] = 60
generate_proposals_v2(input_name, input_data, attr)
'''

0 comments on commit 1c82c17

Please sign in to comment.