Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for op_costs (0.12 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

                    expected_op_metadata->hardware());
    
          EXPECT_EQ(result_op_metadata->op_costs()->size(),
                    expected_op_metadata->op_costs()->size());
          for (int i = 0; i < result_op_metadata->op_costs()->size(); ++i) {
            EXPECT_FLOAT_EQ(result_op_metadata->op_costs()->Get(i),
                            expected_op_metadata->op_costs()->Get(i));
          }
        }
      }
    }
    
    TEST(ExporterTest, Valid) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        const tflite::OperatorT& op, const std::vector<Value>& vals_map,
        const std::vector<mlir::TensorType>& intermediate_types,
        Value optional_arg_marker,
        const std::vector<std::unique_ptr<tflite::OperatorCodeT>>& op_codes,
        const std::vector<std::string>& func_names,
        const std::vector<std::unique_ptr<tflite::TensorT>>& tensors, Location loc,
        OpBuilder builder,
        const std::unique_ptr<tflite::FlatBufferModel>& model_ptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      // The resulting model should be:
      // reshape->dequantize->custom->custom->quantize->squeeze.
      ASSERT_THAT(subgraph->operators, SizeIs(6));
      const std::vector<BuiltinOperator> op_codes = {
          BuiltinOperator_RESHAPE,  BuiltinOperator_DEQUANTIZE,
          BuiltinOperator_CUSTOM,   BuiltinOperator_CUSTOM,
          BuiltinOperator_QUANTIZE, BuiltinOperator_SQUEEZE};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top