summaryrefslogtreecommitdiff
path: root/compiler/ann-ref/src/Validation.cpp
blob: 679b14a9a528546eb4ea3484e09d5f174caf8ae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/*
 * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "Validation.h"
#include "Macro.h"
#include "Assert.h"

static inline bool validCode(uint32_t codeCount, uint32_t code)
{
  return (code < codeCount);
}

int validateOperationType(const OperationType &type)
{
  return validCode(kNumberOfOperationTypes, static_cast<uint32_t>(type));
}

// Validates the type. The used dimensions can be underspecified.
int validateOperandType(const ANeuralNetworksOperandType &type, const char *tag, bool allowPartial)
{
  if (!allowPartial)
  {
    for (uint32_t i = 0; i < type.dimensionCount; i++)
    {
      if (type.dimensions[i] == 0)
      {
        LOG(ERROR) << tag << " OperandType invalid dimensions[" << i
                   << "] = " << type.dimensions[i];
        return ANEURALNETWORKS_BAD_DATA;
      }
    }
  }
  if (!validCode(kNumberOfDataTypes, type.type))
  {
    LOG(ERROR) << tag << " OperandType invalid type " << type.type;
    return ANEURALNETWORKS_BAD_DATA;
  }
  if (type.type == ANEURALNETWORKS_TENSOR_QUANT8_ASYMM)
  {
    if (type.zeroPoint < 0 || type.zeroPoint > 255)
    {
      LOG(ERROR) << tag << " OperandType invalid zeroPoint " << type.zeroPoint;
      return ANEURALNETWORKS_BAD_DATA;
    }
    if (type.scale < 0.f)
    {
      LOG(ERROR) << tag << " OperandType invalid scale " << type.scale;
      return ANEURALNETWORKS_BAD_DATA;
    }
  }

  // TODO-NNRT : add 'type.type == ANEURALNETWORKS_OEM_SCALAR' later.
  //             OEM operaters are not supported now.
  if (type.type == ANEURALNETWORKS_FLOAT32 || type.type == ANEURALNETWORKS_INT32 ||
      type.type == ANEURALNETWORKS_UINT32)
  {
    if (type.dimensionCount != 0 || type.dimensions != nullptr)
    {
      LOG(ERROR) << tag << " Invalid dimensions for scalar type";
      return ANEURALNETWORKS_BAD_DATA;
    }
  }

  return ANEURALNETWORKS_NO_ERROR;
}

int validateOperandList(uint32_t count, const uint32_t *list, uint32_t operandCount,
                        const char *tag)
{
  for (uint32_t i = 0; i < count; i++)
  {
    if (list[i] >= operandCount)
    {
      LOG(ERROR) << tag << " invalid operand index at " << i << " = " << list[i]
                 << ", operandCount " << operandCount;
      return ANEURALNETWORKS_BAD_DATA;
    }
  }
  return ANEURALNETWORKS_NO_ERROR;
}

static bool validOperandIndexes(const std::vector<uint32_t> indexes, size_t operandCount)
{
  for (uint32_t i : indexes)
  {
    if (i >= operandCount)
    {
      LOG(ERROR) << "Index out of range " << i << "/" << operandCount;
      return false;
    }
  }
  return true;
}

static bool validOperands(const std::vector<Operand> &operands, const std::vector<uint8_t> &operandValues)
{
  for (auto &operand : operands)
  {
    if (!validCode(kNumberOfDataTypes, static_cast<uint32_t>(operand.type)))
    {
      LOG(ERROR) << "Invalid operand type ";
      return false;
    }
    /* TODO validate dim with type
    if (!validOperandIndexes(operand.dimensions, mDimensions)) {
        return false;
    }
    */
    switch (operand.lifetime)
    {
      case OperandLifeTime::CONSTANT_COPY:
        if (operand.location.offset + operand.location.length > operandValues.size())
        {
          LOG(ERROR) << "OperandValue location out of range.  Starts at " << operand.location.offset
                     << ", length " << operand.location.length << ", max " << operandValues.size();
          return false;
        }
        break;
      case OperandLifeTime::TEMPORARY_VARIABLE:
      case OperandLifeTime::MODEL_INPUT:
      case OperandLifeTime::MODEL_OUTPUT:
      case OperandLifeTime::NO_VALUE:
        if (operand.location.offset != 0 || operand.location.length != 0)
        {
          LOG(ERROR) << "Unexpected offset " << operand.location.offset << " or length "
                     << operand.location.length << " for runtime location.";
          return false;
        }
        break;
      case OperandLifeTime::CONSTANT_REFERENCE:
#if 0
        if (operand.location.poolIndex >= poolCount)
        {
          LOG(ERROR) << "Invalid poolIndex " << operand.location.poolIndex << "/" << poolCount;
          return false;
        }
#endif
        break;
      // TODO: Validate that we are within the pool.
      default:
        LOG(ERROR) << "Invalid lifetime";
        return false;
    }
  }
  return true;
}

static bool validOperations(const std::vector<Operation> &operations, size_t operandCount)
{
  for (auto &op : operations)
  {
    if (!validCode(kNumberOfOperationTypes, static_cast<uint32_t>(op.type)))
    {
      LOG(ERROR) << "Invalid operation type ";
      return false;
    }
    if (!validOperandIndexes(op.inputs, operandCount) ||
        !validOperandIndexes(op.outputs, operandCount))
    {
      return false;
    }
  }
  return true;
}

// TODO doublecheck
bool validateModel(const Model &model)
{
  const size_t operandCount = model.operands.size();
  return (validOperands(model.operands, model.operandValues) &&
          validOperations(model.operations, operandCount) &&
          validOperandIndexes(model.inputIndexes, operandCount) &&
          validOperandIndexes(model.outputIndexes, operandCount));
}

bool validRequestArguments(const std::vector<RequestArgument> &arguments,
                           const std::vector<uint32_t> &operandIndexes,
                           const std::vector<Operand> &operands, size_t poolCount, const char *type)
{
  const size_t argumentCount = arguments.size();
  if (argumentCount != operandIndexes.size())
  {
    LOG(ERROR) << "Request specifies " << argumentCount << " " << type << "s but the model has "
               << operandIndexes.size();
    return false;
  }
  for (size_t argumentIndex = 0; argumentIndex < argumentCount; argumentIndex++)
  {
    const RequestArgument &argument = arguments[argumentIndex];
    const uint32_t operandIndex = operandIndexes[argumentIndex];
    const Operand &operand = operands[operandIndex];
    if (argument.hasNoValue)
    {
      if (argument.location.poolIndex != 0 || argument.location.offset != 0 ||
          argument.location.length != 0 || argument.dimensions.size() != 0)
      {
        LOG(ERROR) << "Request " << type << " " << argumentIndex
                   << " has no value yet has details.";
        return false;
      }
    }
    if (argument.location.poolIndex >= poolCount)
    {
      LOG(ERROR) << "Request " << type << " " << argumentIndex << " has an invalid poolIndex "
                 << argument.location.poolIndex << "/" << poolCount;
      return false;
    }
    // TODO: Validate that we are within the pool.
    uint32_t rank = argument.dimensions.size();
    if (rank > 0)
    {
      if (rank != operand.dimensions.size())
      {
        LOG(ERROR) << "Request " << type << " " << argumentIndex << " has number of dimensions ("
                   << rank << ") different than the model's (" << operand.dimensions.size() << ")";
        return false;
      }
      for (size_t i = 0; i < rank; i++)
      {
        if (argument.dimensions[i] != operand.dimensions[i] && operand.dimensions[i] != 0)
        {
          LOG(ERROR) << "Request " << type << " " << argumentIndex << " has dimension " << i
                     << " of " << operand.dimensions[i] << " different than the model's "
                     << operand.dimensions[i];
          return false;
        }
        if (argument.dimensions[i] == 0)
        {
          LOG(ERROR) << "Request " << type << " " << argumentIndex << " has dimension " << i
                     << " of zero";
          return false;
        }
      }
    }
  }
  return true;
}

// TODO doublecheck
bool validateRequest(const Request &request, const Model &model)
{
  //const size_t poolCount = request.pools.size();
  const size_t poolCount = 0;
  return (validRequestArguments(request.inputs, model.inputIndexes, model.operands, poolCount,
                                "input") &&
          validRequestArguments(request.outputs, model.outputIndexes, model.operands, poolCount,
                                "output"));
}