Lines Matching refs:in1

74         const float* in1, const Shape& shape1, const float* in2, const Shape& shape2,
77 bool binaryOperationFloat16(const _Float16* in1, const Shape& shape1, const _Float16* in2, in binaryOperationFloat16() argument
81 convertFloat16ToFloat32(in1, &in1_float32); in binaryOperationFloat16()
93 bool addFloat32(const float* in1, const Shape& shape1, const float* in2, const Shape& shape2, in addFloat32() argument
101 in1, convertShapeToDims(shape1), in2, convertShapeToDims(shape2), out, \ in addFloat32()
110 in1, convertShapeToDims(shape1), in2, convertShapeToDims(shape2), out, \ in addFloat32()
120 bool addFloat16(const _Float16* in1, const Shape& shape1, const _Float16* in2, const Shape& shape2, in addFloat16() argument
123 return binaryOperationFloat16(in1, shape1, in2, shape2, activation, out, shapeOut, &addFloat32); in addFloat16()
127 bool addQuant8(const T* in1, const Shape& shape1, const T* in2, const Shape& shape2, in addQuant8() argument
183 op_params, convertShapeToTflshape(shape1), in1, convertShapeToTflshape(shape2), in addQuant8()
188 in1, convertShapeToTflshape(shape2), in2, in addQuant8()
194 tflite::optimized_integer_ops::Add(op_params, convertShapeToTflshape(shape1), in1, in addQuant8()
199 tflite::optimized_ops::Add(op_params, convertShapeToTflshape(shape1), in1, in addQuant8()
232 bool mulFloat32(const float* in1, const Shape& shape1, const float* in2, const Shape& shape2, in mulFloat32() argument
241 in1, convertShapeToDims(shape1), in2, convertShapeToDims(shape2), out, \ in mulFloat32()
251 tflite::optimized_ops::Mul(in1, convertShapeToDims(shape1), in2, convertShapeToDims(shape2), in mulFloat32()
259 bool mulFloat16(const _Float16* in1, const Shape& shape1, const _Float16* in2, const Shape& shape2, in mulFloat16() argument
262 return binaryOperationFloat16(in1, shape1, in2, shape2, activation, out, shapeOut, &mulFloat32); in mulFloat16()
266 bool mulQuant8(const T* in1, const Shape& shape1, const T* in2, const Shape& shape2, in mulQuant8() argument
301 in1, convertShapeToTflshape(shape2), in2, in mulQuant8()
305 tflite::reference_ops::BroadcastMul4DSlow(op_params, convertShapeToTflshape(shape1), in1, in mulQuant8()
313 bool subFloat32(const float* in1, const Shape& shape1, const float* in2, const Shape& shape2, in subFloat32() argument
317 tflite::optimized_ops::Sub(in1, convertShapeToDims(shape1), in2, convertShapeToDims(shape2), in subFloat32()
330 bool subFloat16(const _Float16* in1, const Shape& shape1, const _Float16* in2, const Shape& shape2, in subFloat16() argument
333 return binaryOperationFloat16(in1, shape1, in2, shape2, activation, out, shapeOut, &subFloat32); in subFloat16()
337 bool subQuant8(const T* in1, const Shape& shape1, const T* in2, const Shape& shape2, in subQuant8() argument
397 in1, convertShapeToTflshape(shape2), in2, in subQuant8()
401 tflite::reference_ops::BroadcastAdd4DSlow(op_params, convertShapeToTflshape(shape1), in1, in subQuant8()
409 bool divFloat32(const float* in1, const Shape& shape1, const float* in2, const Shape& shape2, in divFloat32() argument
419 in1, convertShapeToDims(shape1), in2, convertShapeToDims(shape2), in divFloat32()
423 tflite::optimized_ops::Div(in1, convertShapeToDims(shape1), in2, convertShapeToDims(shape2), in divFloat32()
430 bool divFloat16(const _Float16* in1, const Shape& shape1, const _Float16* in2, const Shape& shape2, in divFloat16() argument
433 return binaryOperationFloat16(in1, shape1, in2, shape2, activation, out, shapeOut, &divFloat32); in divFloat16()