blob: f6d0d08e360360ab07ecc586c1c837275e9e8bb6 [file] [log] [blame]
// Generated file (from: transpose_float_1.mod.py). Do not edit
void CreateModel(Model *model) {
OperandType type0(Type::TENSOR_FLOAT32, {2, 3, 4, 5});
OperandType type2(Type::TENSOR_FLOAT32, {4, 2, 3, 5});
OperandType type1(Type::TENSOR_INT32, {4});
// Phase 1, operands
auto input = model->addOperand(&type0);
auto perms = model->addOperand(&type1);
auto output = model->addOperand(&type2);
// Phase 2, operations
static int32_t perms_init[] = {2, 0, 1, 3};
model->setOperandValue(perms, perms_init, sizeof(int32_t) * 4);
model->addOperation(ANEURALNETWORKS_TRANSPOSE, {input, perms}, {output});
// Phase 3, inputs and outputs
model->identifyInputsAndOutputs(
{input},
{output});
assert(model->isValid());
}
bool is_ignored(int i) {
static std::set<int> ignore = {};
return ignore.find(i) != ignore.end();
}