Searched refs:RandomOperandType (Results 1 – 9 of 9) sorted by relevance
/frameworks/ml/nn/runtime/test/fuzzing/operation_signatures/ |
D | OperationSignatureUtils.h | 247 .type = RandomOperandType::INPUT, .constructor = defaultOperandConstructor, \ 255 .type = RandomOperandType::INPUT, \ 267 .type = RandomOperandType::INPUT, \ 296 .type = RandomOperandType::CONST, .constructor = [](Type, uint32_t, RandomOperand* op) { \ 309 .type = RandomOperandType::CONST, \ 322 .type = RandomOperandType::CONST, .constructor = [](Type, uint32_t, RandomOperand* op) { \ 332 .type = RandomOperandType::CONST, \ 339 .type = RandomOperandType::CONST, .constructor = [](Type, uint32_t, RandomOperand* op) { \ 348 .type = RandomOperandType::CONST, .constructor = [](Type, uint32_t, RandomOperand* op) { \ 357 { .type = RandomOperandType::OUTPUT, .constructor = defaultOperandConstructor } [all …]
|
D | BoundingBox.cpp | 33 static const OperandSignature kInputRoiTensor = {.type = RandomOperandType::CONST, 35 static const OperandSignature kOutputRoiTensor = {.type = RandomOperandType::OUTPUT,
|
D | Reshape.cpp | 253 .type = RandomOperandType::CONST, .constructor = [](Type, uint32_t, RandomOperand* op) { in __anon0a84149d0102() 309 .type = RandomOperandType::CONST,
|
D | Selection.cpp | 85 .type = RandomOperandType::OUTPUT, .constructor = [](Type, uint32_t, RandomOperand* op) { in __anonbfbd3ebb0102()
|
/frameworks/ml/nn/runtime/test/fuzzing/ |
D | RandomGraphGenerator.cpp | 53 if (other.type != RandomOperandType::INPUT) return false; in createEdgeIfValid() 133 output->type = RandomOperandType::INTERNAL; in generateGraph() 144 if (operand->type == RandomOperandType::CONST) return true; in asConstant() 145 if (operand->type != RandomOperandType::INPUT) return false; in asConstant() 176 if (operand->type == RandomOperandType::INPUT) numInputs++; in generateValue() 183 if (operand->type == RandomOperandType::INPUT) numInputs--; in generateValue() 184 operand->type = RandomOperandType::CONST; in generateValue() 186 if (operand->type != RandomOperandType::INTERNAL) { in generateValue() 219 if (operand->type == RandomOperandType::INPUT) { in createModel() 222 } else if (operand->type == RandomOperandType::OUTPUT) { in createModel() [all …]
|
D | RandomGraphGeneratorUtils.cpp | 72 if (operand->type == RandomOperandType::CONST || in dump() 73 operand->type == RandomOperandType::INTERNAL) { in dump() 139 if (op->type == RandomOperandType::CONST) { in dump()
|
D | RandomGraphGenerator.h | 37 enum class RandomOperandType { INPUT = 0, OUTPUT = 1, INTERNAL = 2, CONST = 3 }; enum 40 RandomOperandType type;
|
D | OperationManager.h | 38 RandomOperandType type;
|
D | RandomGraphGeneratorUtils.h | 314 inline std::string toString<RandomOperandType>(const RandomOperandType& type) {
|