diff --git a/tensorflow/lite/delegates/hexagon/README.md b/tensorflow/lite/delegates/hexagon/README.md index 226f3a61077..deff36e80b8 100644 --- a/tensorflow/lite/delegates/hexagon/README.md +++ b/tensorflow/lite/delegates/hexagon/README.md @@ -74,7 +74,7 @@ are verified in `IsNodeSupportedByHexagon`: - depth_multiplier == 1 - dilation only supported when stride == 1 - Otherwise, stride height/width <= 3 -* FullyConnected (without any activation) +* FullyConnected * Hardswish * L2Normalization (without any activation) * Logistic (aka Sigmoid) diff --git a/tensorflow/lite/delegates/hexagon/builders/matmul_builder.cc b/tensorflow/lite/delegates/hexagon/builders/matmul_builder.cc index 0757ea6180e..6189294c3a1 100644 --- a/tensorflow/lite/delegates/hexagon/builders/matmul_builder.cc +++ b/tensorflow/lite/delegates/hexagon/builders/matmul_builder.cc @@ -151,7 +151,6 @@ TfLiteStatus AddFullyConnectedHelper(const TfLiteIntArray* inputs, // Data (8-bit), Weights (const, 8-bit) => MatMul => MatMul out (int32) // MatMul out (int32), Bias (int32) => QuantizedBiasAdd => BiasAdd out (int32) // BiasAdd out (int32) => Requantize_32to8 => Output (8-bit) -// TODO(b/129276536): Add activation support. TfLiteStatus MatMulWithConstWeightsOpBuilder::PopulateSubGraph( const TfLiteIntArray* inputs, const TfLiteIntArray* outputs, TfLiteContext* context) {