Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MlrtAsyncHandleType (0.51 sec)

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

      }];
    
      let arguments = (ins
        Variadic<AnyType>:$args,
        SymbolRefAttr:$callee
      );
    
      let results = (outs
        MlrtAsyncHandleType:$handle
      );
    
      let assemblyFormat = "`(` $args `)` attr-dict `:` functional-type($args, $handle)";
    }
    
    def AwaitHandleOp: Mlrt_Op<"await_handle", []> {
      let summary = "Awaits an async execution ";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td

        BuildableType<"$_builder.getType<::mlrt::compiler::PromiseType>()"> {
      let description = [{
        `!mlrt.promise type` represents a C++ mlrt::Promise.
      }];
    }
    
    def MlrtAsyncHandleType : DialectType<Mlrt_Dialect,
        CPred<"$_self.isa<::mlrt::compiler::AsyncHandleType>()">, "!mlrt.async_handle type">,
        BuildableType<"$_builder.getType<::mlrt::compiler::AsyncHandleType>()"> {
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top