Searched refs:CheckSimpleOperator (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/lite/toco/tflite/ |
D | operator_test.cc | 90 void CheckSimpleOperator(const string& name, OperatorType type) { in CheckSimpleOperator() function in toco::tflite::__anonfbd96e950111::OperatorTest 114 CheckSimpleOperator<FloorOperator>("FLOOR", OperatorType::kFloor); in TEST_F() 115 CheckSimpleOperator<CeilOperator>("CEIL", OperatorType::kCeil); in TEST_F() 116 CheckSimpleOperator<EluOperator>("ELU", OperatorType::kElu); in TEST_F() 117 CheckSimpleOperator<ReluOperator>("RELU", OperatorType::kRelu); in TEST_F() 118 CheckSimpleOperator<Relu1Operator>("RELU_N1_TO_1", OperatorType::kRelu1); in TEST_F() 119 CheckSimpleOperator<Relu6Operator>("RELU6", OperatorType::kRelu6); in TEST_F() 120 CheckSimpleOperator<LogisticOperator>("LOGISTIC", OperatorType::kLogistic); in TEST_F() 121 CheckSimpleOperator<TanhOperator>("TANH", OperatorType::kTanh); in TEST_F() 122 CheckSimpleOperator<ExpOperator>("EXP", OperatorType::kExp); in TEST_F() [all …]
|