Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for has_op_name (0.3 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.cc

      parse_options.has_chain = false;
      parse_options.has_key = false;
      parse_options.has_device = true;
      parse_options.has_func_attr = false;
      parse_options.has_cost = false;
      parse_options.has_op_name = false;
      parse_options.has_symbol_ref = true;
    
      auto &builder = parser.getBuilder();
      return fallback_common::ParseExecuteOpCommon(
          parser, builder, result, builder.getType<fallback::TFTensorType>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

      for (auto &pattern : from.getNativePatterns()) {
        std::optional<OperationName> pat_op_name = pattern->getRootKind();
        // If the pattern does not have a specific operation, always include it,
        // If the pattern is in include_ops then include it.
        bool include =
            !pat_op_name ||
            IsTypeLegalizedWithMlir(pat_op_name->getRegisteredInfo()->getTypeID());
        if (include) to.add(std::move(pattern));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top