Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 72 of 72 for BoolAttr (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      auto composite_control_flow_op = [&](const std::string& name) {
        result.name = mlir::OperationName(get_full_op_name(name), context_);
        bool stateless = absl::StartsWith(node_type_name, "Stateless");
        mlir::BoolAttr val = builder_.getBoolAttr(stateless);
        result.attributes.push_back(builder_.getNamedAttr("is_stateless", val));
      };
    
      // Map Case/If/While and StatelessCase/If/While op in TensorFlow to the common
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // If the 'transpose' attribute is true returns ElementsAttr to transpose 2D
    // matrix. Otherwise, returns ElementsAttr for identity transpose.
    static DenseIntElementsAttr Get2DTransposePerm(BoolAttr transpose, Builder *b) {
      if (transpose.getValue()) return GetI64ElementsAttr({1, 0}, b);
      return GetI64ElementsAttr({0, 1}, b);
    }
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top