Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for promise_future (2.67 sec)

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

      }];
    
      let arguments = (ins
        MlrtPromiseType:$promise,
        TFTensorType:$tensor
      );
    
      let assemblyFormat = "operands attr-dict";
    }
    
    def PromiseFutureOp: TensorflowMlrt_Op<"promise_future", []> {
      let summary = "Set a tensor future in a promise";
    
      let description = [{
        Set a tensor future in a promise.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK: [[y_future:%.*]] = tf_mlrt.async_executeop
      %y = "tf.TestAsyncIdentity"(%x) {__op_key = 0: i32, T = i32} : (tensor<i32>) -> tensor<i32>
      // CHECK: tf_mlrt.promise_future
      // CHECK-SAME: [[y_future]]
      "tf_mlrt.tf_promise"(%p, %y): (!mlrt.promise, tensor<i32>) -> ()
      return
    }
    
    // CHECK-LABEL: @main
    // CHECK-SAME: ([[input0:%.*]]: !tf_mlrt.tensor)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top