Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TensorflowMlrt_Op (0.15 sec)

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

    include "tfrt/compiler/opdefs/tfrt_traits.td"  // from @tf_runtime
    
    // tf_mlrt.tf_await returns a tensorflow Tensor. It is a fake op that is only
    // used during parallelization and has no runtime implementation.
    def TFAwaitOp: TensorflowMlrt_Op<"tf_await", [Pure, TFRT_CostFunctionInterface, TFRT_FixedCost<1>]> {
      let summary = "Await a tensor from a !mlrt.future";
    
      let description = [{
        Await a tensor from a !mlrt.future.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_dialect.td

    def TensorflowMlrt_Dialect : Dialect {
      let name = "tf_mlrt";
    
      let description = [{
        The TF MLRT Dialect.
      }];
    
      let cppNamespace = "::tensorflow::tf_mlrt";
    }
    
    class TensorflowMlrt_Op<string mnemonic, list<Trait> traits = []> :
        Op<TensorflowMlrt_Dialect, mnemonic, !listconcat(traits, [IsolatedFromAbove])> {
    }
    
    // This corresponds to tensorflow::Tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top