Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetQuantDequantCost (0.49 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/cost_model.h

                          const std::string& to_hardware_str,
                          func::CallOp from_graph, func::CallOp to_graph);
    
    // Get the cross quantization/dequantization boundary cost.
    float GetQuantDequantCost(InferenceType from_inference_type,
                              InferenceType to_inference_type,
                              func::CallOp from_graph, func::CallOp to_graph);
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/cost_model.cc

          GetTransferredTensorBytes(from_graph, to_graph);
      return to_hardware->GetHardwareSwitchingCost(from_hardware,
                                                   total_size_transferred);
    }
    
    float GetQuantDequantCost(InferenceType from_inference_type,
                              InferenceType to_inference_type,
                              func::CallOp from_graph, func::CallOp to_graph) {
      // Same inference type, no dequant/quant happens.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

                                current_inference_device_type.hardware,
                                input_subgraph->call, current_graph_call);
            float quant_dequant_cost =
                GetQuantDequantCost(input_inference_device_type.inference_type,
                                    current_inference_device_type.inference_type,
                                    input_subgraph->call, current_graph_call);
            float summed_cost =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
Back to top