Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TensorArray (0.1 sec)

  1. tensorflow/compiler/mlir/tfrt/analysis/tensor_array_side_effect_analysis.h

    // This class provides utilities for analyzing side effects for TensorArray ops
    // in the graph. mlir::TF::SideEffectAnalysis currently produces suboptimal
    // side-effect analysis for TensorArray ops. On the other hand, control
    // dependencies are already sorted out for TensorArray ops in the original TF
    // graph. Each TensorArray op will take or produce a `flow` value and they are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_side_effects.h

    };
    
    struct Stack : ::mlir::SideEffects::Resource::Base<Stack> {
      StringRef getName() final { return "Stack"; }
    };
    
    struct TensorArray : ::mlir::SideEffects::Resource::Base<TensorArray> {
      StringRef getName() final { return "TensorArray"; }
    };
    
    struct Summary : ::mlir::SideEffects::Resource::Base<Summary> {
      StringRef getName() final { return "Summary"; }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 26 18:45:40 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top