| 1118 | } |
| 1119 | |
| 1120 | TfLiteRegistration* Register_TANH_FIXED_POINT_OPT() { |
| 1121 | static TfLiteRegistration r = { |
| 1122 | activations::Init, activations::Free, |
| 1123 | activations::TanhPrepare<activations::kFixedPointOptimized>, |
| 1124 | activations::TanhEval<activations::kFixedPointOptimized>}; |
| 1125 | return &r; |
| 1126 | } |
| 1127 | |
| 1128 | TfLiteRegistration* Register_TANH() { |
| 1129 | // TODO(b/134622898): Switch over from the LUT optimized method to the fixed |