Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TensorflowMlrt_Op (0.26 sec)

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

    def CreateOp: TensorflowMlrt_Op<"createop", []> {
      let summary = "The Fallback CreateOp";
    
      let description = [{
        The CreateOp creates the tensorflow::OpKernel in the fallback context.
      }];
    
      let arguments = (ins
        StrAttr:$node_def,
        I32Attr:$op_key
      );
    
      let assemblyFormat = "attr-dict";
    }
    
    def ConstOp: TensorflowMlrt_Op<"constop", []> {
    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/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)
  3. 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