blob: b4064eb34ac073d5154f1e68bc819a3feca6879a [file] [log] [blame]
// clang-format off
// Generated file (from: relu1_quant8_2.mod.py). Do not edit
void CreateModel(Model *model) {
OperandType type0(Type::TENSOR_QUANT8_ASYMM, {2, 64, 64, 2}, 1.0f, 128);
// Phase 1, operands
auto input = model->addOperand(&type0);
auto output = model->addOperand(&type0);
// Phase 2, operations
model->addOperation(ANEURALNETWORKS_RELU1, {input}, {output});
// Phase 3, inputs and outputs
model->identifyInputsAndOutputs(
{input},
{output});
assert(model->isValid());
}
inline bool is_ignored(int i) {
static std::set<int> ignore = {};
return ignore.find(i) != ignore.end();
}