summaryrefslogtreecommitdiff
path: root/nn/runtime/test/fuzzing
diff options
context:
space:
mode:
authorXusong Wang <xusongw@google.com>2020-04-20 10:29:30 -0700
committerXusong Wang <xusongw@google.com>2020-04-20 10:29:30 -0700
commit4a8d888048eb495f7a61dc5f2d99c23e14a71cbb (patch)
treeae9f394eabaecd6b9ac808873bc7d2ee1f012b56 /nn/runtime/test/fuzzing
parent9746e462ca0f4c2239feb28314e8857974322fda (diff)
downloadml-4a8d888048eb495f7a61dc5f2d99c23e14a71cbb.tar.gz
Disable a non-sensible RGG test case.
In this test, the RGG produces a non-sensible graph with extreme large output gain and highly clamped output range. Fixes: 153690038 Test: NNT_static_fuzzing Change-Id: I7063730e04ea8a18aecd20029eb6e726ac780c2a
Diffstat (limited to 'nn/runtime/test/fuzzing')
-rw-r--r--nn/runtime/test/fuzzing/TestRandomGraph.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/nn/runtime/test/fuzzing/TestRandomGraph.cpp b/nn/runtime/test/fuzzing/TestRandomGraph.cpp
index 99d2aff80..ada7fd223 100644
--- a/nn/runtime/test/fuzzing/TestRandomGraph.cpp
+++ b/nn/runtime/test/fuzzing/TestRandomGraph.cpp
@@ -196,6 +196,7 @@ class RandomGraphTest : public ::testing::TestWithParam<uint32_t> {
// [0, 255]. We should investigate on a better buffer value generation
// algorithm that represents the real-world cases.
"TestRandomGraph_SingleOperationTest_CONV_2D_V1_2_40",
+ "TestRandomGraph_SingleOperationTest_DEPTHWISE_CONV_2D_V1_0_32",
};
if (kDisabledTests.find(mTestName) != kDisabledTests.end()) return true;
for (const auto& op : mTestModel.main.operations) {