Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for StringAttr (0.11 sec)

  1. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

      if (!width) {
        return func.emitError() << "'width' attribute is not set or not an integer";
      }
      fbb.Int("width", width.getInt());
    
      auto string_separator =
          mlir::dyn_cast_or_null<StringAttr>(attrs.get("string_separator"));
      if (!string_separator) {
        return func.emitError()
               << "'string_separator' attribute is not set or not a string";
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      // "axis" operand could be a i64 tensor. Resolve it here.
      IntegerAttr axis_i32;
      if (failed(ConvertToI32Attr(axis_int, &axis_i32))) return failure();
    
      StringAttr fused_activation_function =
          StringAttr::get(rewriter.getContext(), "NONE");
      rewriter.replaceOpWithNewOp<ConcatenationOp>(
          op, output_type, values, axis_i32, fused_activation_function);
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

      auto rendezvous_name = StringAttr::get(context, formatted_key);
      auto rendezvous_name_attr = NamedAttribute(
          StringAttr::get(context, xla::kXlaHostTransferRendezvousNameAttr),
          rendezvous_name);
    
      auto host_handler_name_value =
          StringAttr::get(context, host_handler_name.str());
      auto host_handler_name_attr = NamedAttribute(
          StringAttr::get(context, xla::kXlaHostTransferHandlerNameAttr),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/passes/decompose.cc

                op->getLoc(), list_type, variadic_operands);
            new_operands.push_back(build_list_op.getOut());
          } else {
            auto attr_name = compose_func.getArgAttrOfType<StringAttr>(
                arg.index(), kAttrArgumentNameAttr);
            auto attribute = op->getAttr(attr_name.getValue());
            if (!attribute) {
              attribute =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

          llvm::dyn_cast<tf_device::LaunchOp>(preprocess_op->getParentOp());
      // Device of original launch looked up before moving the preprocessing ops
      // around.
      StringAttr device =
          original_launch_op->getAttrOfType<StringAttr>(kDeviceAttr);
    
      if (!device) {
        return original_launch_op->emitOpError()
               << "Launch op has an invalid device attribute.";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

    using mlir::Builder;
    using mlir::IntegerAttr;
    using mlir::LogicalResult;
    using mlir::ModuleOp;
    using mlir::Operation;
    using mlir::OpOperand;
    using mlir::OpResult;
    using mlir::RankedTensorType;
    using mlir::StringAttr;
    using mlir::Value;
    using mlir::WalkResult;
    
    constexpr char kReplicateSharding[] = "";
    constexpr char kShardingAttr[] = "mhlo.sharding";
    constexpr char kUseSpmdAttr[] = "use_spmd_for_xla_partitioning";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

    namespace {
    
    using mlir::Block;
    using mlir::BlockArgument;
    using mlir::BoolAttr;
    using mlir::ModuleOp;
    using mlir::OpBuilder;
    using mlir::Operation;
    using mlir::OperationPass;
    using mlir::Region;
    using mlir::StringAttr;
    using mlir::Type;
    using mlir::Value;
    using mlir::WalkResult;
    using mlir::func::FuncOp;
    
    constexpr char kXlaMapOutsideCompilationAttr[] = "_xla_map_outside_compilation";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      }
      const auto empty_array_attr = ArrayAttr::get(ctx, {});
      // TODO: b/310291615 - find a better way for platform support.
      const auto platforms = ArrayAttr::get(
          ctx,
          {StringAttr::get(ctx, kPlatformCpu), StringAttr::get(ctx, kPlatformTpu)});
    
      auto xla_call_module_op = builder.create<TF::XlaCallModuleOp>(
          module_op.getLoc(), /*output=*/result_types,
          /*args=*/inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    // Constraint that attribute is string with value either "SAME" or "VALID"
    def IsSameOrValid : AttrConstraint<
        CPred<"$_self.cast<StringAttr>().getValue() == \"SAME\" || " #
              "$_self.cast<StringAttr>().getValue() == \"VALID\"">,
        "'SAME' or 'VALID' paddings">;
    
    def TFL_GetMirrorPaddingType : NativeCodeCall<
        "mlir::TFL::MirrorPaddingTypeAttr::get($_builder.getContext(), " #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        return arg_shape;
      } else {
        return std::get<TensorShape>(arg.shape);
      }
    }
    
    Status MaybeRewriteLayoutWithShardedShape(
        mlir::StringAttr sharding,
        const XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_fns,
        xla::Shape* shape) {
      if (!sharding) return absl::OkStatus();
    
      xla::OpSharding op_sharding;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
Back to top