summaryrefslogtreecommitdiff
path: root/nn/runtime/test/fuzzing
diff options
context:
space:
mode:
authorSlava Shklyaev <slavash@google.com>2019-12-13 14:02:37 +0000
committerSlava Shklyaev <slavash@google.com>2020-01-21 19:05:18 +0000
commit08ee3cd733c4f829e947d4be37b79af99047489a (patch)
tree22bb8b2e897fa38107c2a470e7b64c3762c75d1b /nn/runtime/test/fuzzing
parent4346bac4979f874a4c1c70f053d0260291fc5264 (diff)
downloadml-08ee3cd733c4f829e947d4be37b79af99047489a.tar.gz
Rename MODEL_INPUT to SUBGRAPH_INPUT and MODEL_OUTPUT to SUBGRAPH_OUTPUT
This is a mechanical search-and-replace change. Commands used: $ cd frameworks/ml/nn $ grep -rIl 'MODEL_INPUT' | xargs sed -i 's/MODEL_INPUT/SUBGRAPH_INPUT/g' $ grep -rIl 'MODEL_OUTPUT' | xargs sed -i 's/MODEL_OUTPUT/SUBGRAPH_OUTPUT/g' Bug: 136735929 Test: see next change Change-Id: I47b08e438962b4a270dc68736821430c9bb4988a
Diffstat (limited to 'nn/runtime/test/fuzzing')
-rw-r--r--nn/runtime/test/fuzzing/RandomGraphGeneratorUtils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nn/runtime/test/fuzzing/RandomGraphGeneratorUtils.h b/nn/runtime/test/fuzzing/RandomGraphGeneratorUtils.h
index 0df56c9a0..80987d598 100644
--- a/nn/runtime/test/fuzzing/RandomGraphGeneratorUtils.h
+++ b/nn/runtime/test/fuzzing/RandomGraphGeneratorUtils.h
@@ -257,7 +257,7 @@ static const char* kTypeNames[] = {
};
static const char* kLifeTimeNames[6] = {
- "TEMPORARY_VARIABLE", "MODEL_INPUT", "MODEL_OUTPUT",
+ "TEMPORARY_VARIABLE", "SUBGRAPH_INPUT", "SUBGRAPH_OUTPUT",
"CONSTANT_COPY", "CONSTANT_REFERENCE", "NO_VALUE",
};