Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for BuildableType (0.15 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td

        BuildableType<"$_builder.getType<::mlrt::compiler::FutureType>()"> {
      let description = [{
        `!mlrt.future type` represents a C++ mlrt::Future.
      }];
    }
    
    def MlrtPromiseType : DialectType<Mlrt_Dialect,
        CPred<"$_self.isa<::mlrt::compiler::PromiseType>()">, "!mlrt.promise type">,
        BuildableType<"$_builder.getType<::mlrt::compiler::PromiseType>()"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.td

    }
    
    // This corresponds to tensorflow::Tensor.
    def TFTensorType : DialectType<Fallback_Dialect,
        CPred<"$_self.isa<::tfrt::fallback::TFTensorType>()">, "!tfrt_fallback.tf_tensor type">,
        BuildableType<"$_builder.getType<::tfrt::fallback::TFTensorType>()"> {
      let description = [{
        `!tfrt_fallback.tf_tensor type` represents a tensorflow::Tensor.
      }];
    }
    
    // This corresponds to tensorflow::Allocator.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_dialect.td

    }
    
    // This corresponds to tensorflow::Tensor.
    def TFTensorType : DialectType<TensorflowMlrt_Dialect,
        CPred<"$_self.isa<::tensorflow::tf_mlrt::TFTensorType>()">, "!tf_mlrt.tensor type">,
        BuildableType<"$_builder.getType<::tensorflow::tf_mlrt::TFTensorType>()"> {
      let description = [{
        `!tf_mlrt.tensor type` represents a tensorflow::Tensor.
      }];
    }
    
    // This corresponds to tensorflow::Device* .
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

    }
    
    // Control type.
    def TfeControlType : Type<CPred<"$_self.isa<ControlType>()">, "control">,
                         BuildableType<"$_builder.getType<ControlType>()">;
    
    // Token type.
    def TfeTokenType : Type<CPred<"$_self.isa<TokenType>()">, "token">,
                       BuildableType<"$_builder.getType<TokenType>()">;
    
    // TODO(hinsu): Define and use TensorType instead of AnyType for data operands
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

    // tensor argument types
    class TFR_Type<string name> : DialectType<TFR_Dialect,
        CPred<"$_self.isa<mlir::TFR::" # name # "Type>()">,
        "TFR " # name #" type">,
        BuildableType<"$_builder.getType<mlir::TFR::" # name # "Type>()">;
    def TFR_TensorType : TFR_Type<"TFRTensor">;
    def TFR_TensorListType : TFR_Type<"TFRTensorList">;
    def TFR_AllTensorTypes : Type<Or<[
        TFR_TensorType.predicate,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // Class for any TensorFlow dialect specific type
    class TF_TensorFlowType <string name, string description> :
        Type<CPred<"$_self.isa<mlir::TF::" # name # "Type>()">,
             "TensorFlow " # description # " type">,
        BuildableType<"getType<mlir::TF::" # name # "Type>()">;
    
    //===----------------------------------------------------------------------===//
    // Reference types
    
    // Float reference types
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

                  BuildableType<"getType<mlir::TF::Quint8Type>()">;
    
    //===----------------------------------------------------------------------===//
    // Type that represents control dependencies
    //===----------------------------------------------------------------------===//
    def TFL_Control: Type<CPred<"$_self.isa<ControlType>()">, "control">,
                     BuildableType<"$_builder.getType<ControlType>()">;
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top