Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExplainMatchResult (0.19 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/test_matchers.h

      auto graph_analysis_failure = WasGraphAnalysisFailure(arg);
      if (graph_analysis_failure) {
        return testing::ExplainMatchResult(testing::IsTrue(),
                                           graph_analysis_failure, result_listener);
      }
      return testing::ExplainMatchResult(testing::Eq(metric), value,
                                         result_listener);
    }
    
    MATCHER_P(ComputationProtoContains, regex,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/pre_calibration_test.cc

      auto non_const_arg = const_cast<std::remove_const_t<decltype(arg)>>(arg);
      return non_const_arg->template hasAttrOfType<StringAttr>(name) &&
             ExplainMatchResult(
                 value_matcher,
                 non_const_arg->template getAttrOfType<StringAttr>(name).str(),
                 result_listener);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 21:41:08 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top