Update to fix PR review problems

Remove <vector> include as per PR review and discussion with @petewarden

Remove profiler ScopeLabel as per discussion with @petewarden
This commit is contained in:
David Davis 2020-12-07 13:17:42 -08:00
parent 611a58e5d6
commit c7eb6d9a17
2 changed files with 0 additions and 2 deletions
tensorflow/lite/kernels/internal/reference

View File

@ -64,7 +64,6 @@ inline void Div(const ArithmeticParams& params,
const RuntimeShape& output_shape, uint8* output_data) {
TFLITE_DCHECK_LE(params.quantized_activation_min,
params.quantized_activation_max);
ruy::profiler::ScopeLabel label("Div/8bit");
const int flat_size =
MatchingElementsSize(input1_shape, input2_shape, output_shape);

View File

@ -25,7 +25,6 @@ limitations under the License.
#include <limits>
#include <memory>
#include <type_traits>
#include <vector>
#include "third_party/eigen3/Eigen/Core"
#include "fixedpoint/fixedpoint.h"