Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StringAttr (0.14 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      if (dict_attr) {
        TF_RET_CHECK(mlir::isa<mlir::StringAttr>(dict_attr.get("inputs")))
            << "inputs missing in entry function attribute";
        TF_RET_CHECK(mlir::isa<mlir::StringAttr>(dict_attr.get("outputs")))
            << "outputs missing in entry function attribute";
        mlir::cast<mlir::StringAttr>(dict_attr.get("inputs"))
            .getValue()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

          block_arg.getLoc(),
          DenseIntElementsAttr::get(
              RankedTensorType::get({1, num_replicas}, builder.getIntegerType(32)),
              group_assignment_val));
    
      StringAttr reduce_op = builder.getStringAttr("Add");
      StringAttr mode = builder.getStringAttr("CrossReplica");
      return builder.create<XlaAllReduceOp>(block_arg.getLoc(), block_arg.getType(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    }
    
    mlir::LogicalResult GetTopology(mlir::tf_device::ClusterOp cluster,
                                    std::string& topology) {
      mlir::StringAttr topology_attr =
          cluster->getAttrOfType<mlir::StringAttr>(tensorflow::kTopologyAttr);
      if (topology_attr) {
        topology = topology_attr.getValue();
        return mlir::success();
      } else {
        return cluster.emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top