Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for FullMatch (0.17 sec)

  1. tensorflow/compiler/mlir/lite/debug/debug.cc

          printed_ = true;
        }
    
        if (RE2::FullMatch(pass->getName(), *dump_pass_re_)) {
          Dump(absl::StrCat(absl::string_view(pass->getName()), "_before"), op,
               absl::StrCat(absl::Hex(pass_counter_, absl::kZeroPad8)));
        }
      }
    
      void runAfterPass(mlir::Pass* pass, mlir::Operation* op) override {
        if (RE2::FullMatch(pass->getName(), *dump_pass_re_)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // FullMatch(str, re) returns true iff regular expression re matches
      // the entire str.
      // PartialMatch(str, re) returns true iff regular expression re
      // matches a substring of str (including str itself).
      //
      // TODO(******@****.***): make FullMatch() and PartialMatch() work
      // when str contains NUL characters.
      static bool FullMatch(const ::std::string& str, const RE& re) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

              const RE2 node_name_regex(unit.node_name());
              if (!RE2::FullMatch(quantization_unit.value().node_name(),
                                  node_name_regex)) {
                continue;
              }
            }
    
            if (!unit.func_name().empty()) {
              const RE2 func_name_regex(unit.func_name());
              if (!RE2::FullMatch(quantization_unit.value().func_name(),
                                  func_name_regex)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // FullMatch(str, re) returns true iff regular expression re matches
      // the entire str.
      // PartialMatch(str, re) returns true iff regular expression re
      // matches a substring of str (including str itself).
      //
      // TODO(******@****.***): make FullMatch() and PartialMatch() work
      // when str contains NUL characters.
      static bool FullMatch(const ::std::string& str, const RE& re) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

        const std::string lifted_func_name =
            xla_call_module_op->getAttrOfType<FlatSymbolRefAttr>("_entry_function")
                .getValue()
                .str();
    
        return RE2::FullMatch(lifted_func_name, *match_regex_);  // NOLINT
      }
    
     private:
      // Returns an owned `RE2` object that corresponds to the `spec`. Returns
      // `nullptr` if the `spec` is invalid.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          'attr_name' is given.
        """
    
        def match_node_name(name):
          if not node_name:
            return True
          compiled_regex = re.compile(node_name)
          match = re.fullmatch(compiled_regex, name)
          return match is not None
    
        return any(
            node.attr.get(attr_name) == attr_val
            for node in nodes
            if node.op == op_name and match_node_name(node.name)
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top