Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DialectType (0.24 sec)

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

      let cppNamespace = "::mlrt::compiler";
    }
    
    def MlrtFutureType : DialectType<Mlrt_Dialect,
        CPred<"$_self.isa<::mlrt::compiler::FutureType>()">, "!mlrt.future type">,
        BuildableType<"$_builder.getType<::mlrt::compiler::FutureType>()"> {
      let description = [{
        `!mlrt.future type` represents a C++ mlrt::Future.
      }];
    }
    
    def MlrtPromiseType : DialectType<Mlrt_Dialect,
    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

      let name = "tfrt_fallback";
    
      let description = [{
        The TFRT Fallback Dialect.
      }];
    
      let cppNamespace = "::tfrt::fallback";
    }
    
    // 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 = [{
    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

    class TensorflowMlrt_Op<string mnemonic, list<Trait> traits = []> :
        Op<TensorflowMlrt_Dialect, mnemonic, !listconcat(traits, [IsolatedFromAbove])> {
    }
    
    // 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 = [{
    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/tfr/ir/tfr_ops.td

    //===----------------------------------------------------------------------===//
    // Type classes
    //===----------------------------------------------------------------------===//
    
    // 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">;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top