Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StrEq (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

      EXPECT_THAT(default_spec.matcher().function_name().regex(), StrEq(".*"));
      EXPECT_TRUE(default_spec.method().has_static_range_ptq());
    
      // Test that the expansion for convolution ops is done.
      const QuantizationSpec& conv_spec = new_config.specs().specs(1);
      EXPECT_THAT(conv_spec.matcher().function_name().regex(),
                  StrEq("composite_conv.*"));
      ASSERT_TRUE(conv_spec.method().has_static_range_ptq());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

                  StrEq("composite_dot_general_fn_2"));
      EXPECT_TRUE(quantized_result.method().has_static_range_ptq());
    
      // Test that the non-quantized op is captured in `results`.
      const QuantizationResult& non_quantized_result = results.results(1);
      EXPECT_THAT(non_quantized_result.quantizable_unit().name(),
                  StrEq("composite_dot_general_fn_1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::stablehlo::quantization::QuantizationResults;
    using ::stablehlo::quantization::io::ReadFileToString;
    using ::testing::SizeIs;
    using ::testing::StrEq;
    using ::tsl::protobuf::TextFormat;
    using ::tsl::testing::IsOk;
    using ::tsl::testing::StatusIs;
    
    using SaveQuantizationReportInstrumentationTest = QuantizationTestBase;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

      SmallVector<func::FuncOp> funcs = GetSortedFunctions(*module_op);
      ASSERT_THAT(funcs, SizeIs(3));
      EXPECT_THAT(funcs[0].getSymName(), StrEq("conv_1_fn"));
      EXPECT_THAT(funcs[1].getSymName(), StrEq("conv_2_fn"));
      EXPECT_THAT(funcs[2].getSymName(), StrEq("conv_3_fn"));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top