HomeSort by relevance Sort by last modified time
    Searched refs:dequantize_op (Results 1 - 5 of 5) sorted by null

  /external/tensorflow/tensorflow/lite/toco/graph_transformations/
remove_final_dequantize_op.cc 33 const auto* dequantize_op = dequantize_it->get(); local
34 if (dequantize_op->type != OperatorType::kDequantize) {
37 const auto& output = dequantize_op->outputs[0];
51 model->flags.set_output_arrays(i, dequantize_op->inputs[0]);
56 AddMessageF("Removed final %s", LogName(*dequantize_op));
quantize.cc 539 auto* dequantize_op = dequantize_it->get(); local
540 CHECK(dequantize_op->type == OperatorType::kDequantize);
541 op.inputs[input_index] = dequantize_op->inputs[0];
544 if (!CountOpsWithInput(*model, dequantize_op->outputs[0])) {
545 if (IsDiscardableArray(*model, dequantize_op->outputs[0])) {
547 model->EraseArray(dequantize_op->outputs[0]);
555 dequantize_op->outputs[0]) {
557 if (IsInputArray(*model, dequantize_op->inputs[0])) {
566 i, LogName(*dequantize_op),
568 dequantize_op->inputs[0])
661 auto* dequantize_op = new DequantizeOperator; local
    [all...]
  /external/tensorflow/tensorflow/tools/graph_transforms/
quantize_nodes_test.cc 507 Output dequantize_op = local
508 Dequantize(root.WithOpName("dequantize_op"), quantized_op,
524 dequantize_op, dequantize_reshape_dims);
534 QuantizeV2 quantize_op(root.WithOpName("quantize_op"), dequantize_op,
606 Output dequantize_op = local
607 Dequantize(root.WithOpName("dequantize_op"), requantize_op.output,
623 dequantize_op, dequantize_reshape_dims);
633 QuantizeV2 quantize_op(root.WithOpName("quantize_op"), dequantize_op,
732 Output dequantize_op = local
733 Dequantize(root.WithOpName("dequantize_op"), requantize_op.output
969 Output dequantize_op = local
1146 Output dequantize_op = local
    [all...]
freeze_requantization_ranges_test.cc 96 Output dequantize_op = local
97 Dequantize(root.WithOpName("dequantize_op"), requantize_op.output,
119 context.output_names = {"dequantize_op"};
143 original_session->Run({}, {"dequantize_op"}, {}, &original_outputs));
149 frozen_session->Run({}, {"dequantize_op"}, {}, &frozen_outputs));
  /external/tensorflow/tensorflow/lite/tools/optimize/
quantize_weights.cc 323 std::unique_ptr<OperatorT> dequantize_op; local
324 MakeDequantizeOperator(model.get(), &dequantize_op, tensor_idx,
341 std::move(dequantize_op));

Completed in 619 milliseconds