summaryrefslogtreecommitdiff
path: root/nn/runtime/test/fuzzing
diff options
context:
space:
mode:
authorNick Desaulniers <ndesaulniers@google.com>2019-10-08 14:19:06 -0700
committerNick Desaulniers <ndesaulniers@google.com>2019-10-08 14:19:06 -0700
commit6c95716e47079a083cf81e1a0c02a1d0b638bafe (patch)
treec883324363db5e1154acbc381a1c7ab8208b92a4 /nn/runtime/test/fuzzing
parentfa9d4d57b4c4eb96e8ccee7d954c7238b2e8d945 (diff)
downloadml-6c95716e47079a083cf81e1a0c02a1d0b638bafe.tar.gz
[frameworks][ml][nn] fix lint errors from IWYU
Fixes the following lint errors: nn/common/operations/DepthwiseConv2D.cpp:235: Add #include <algorithm> for min [build/include_what_you_use] [4] nn/common/operations/DepthwiseConv2D.cpp:181: Add #include <vector> for vector<> [build/include_what_you_use] [4] nn/common/operations/Pooling.cpp:296: Add #include <vector> for vector<> [build/include_what_you_use] [4] nn/runtime/test/fuzzing/TestRandomGraph.cpp:378: Add #include <memory> for shared_ptr<> [build/include_what_you_use] [4] nn/runtime/test/fuzzing/TestRandomGraph.cpp:373: Add #include <map> for map<> [build/include_what_you_use] [4] nn/runtime/test/fuzzing/TestRandomGraph.cpp:194: Add #include <set> for set<> [build/include_what_you_use] [4] Bug: 139945549 Test: repo upload Change-Id: If65b51e4eead4692b81474b42e0a159b464e1ad5 Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
Diffstat (limited to 'nn/runtime/test/fuzzing')
-rw-r--r--nn/runtime/test/fuzzing/TestRandomGraph.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/nn/runtime/test/fuzzing/TestRandomGraph.cpp b/nn/runtime/test/fuzzing/TestRandomGraph.cpp
index 25408c425..5d85d11fc 100644
--- a/nn/runtime/test/fuzzing/TestRandomGraph.cpp
+++ b/nn/runtime/test/fuzzing/TestRandomGraph.cpp
@@ -17,6 +17,9 @@
#include <gtest/gtest.h>
#include <algorithm>
+#include <map>
+#include <memory>
+#include <set>
#include <string>
#include "TestNeuralNetworksWrapper.h"