Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PerFunctionAggregateAnalysisConsumerPass (0.43 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/per_function_aggregate_analysis.h

    // function and the analysis information for that function.
    template <typename DerivedT, typename AnalysisT>
    class PerFunctionAggregateAnalysisConsumerPass
        : public PassWrapper<
              PerFunctionAggregateAnalysisConsumerPass<DerivedT, AnalysisT>,
              OperationPass<ModuleOp>> {
     public:
      static ::mlir::TypeID resolveTypeID() {
        static ::mlir::SelfOwningTypeID id;
        return id;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/test_side_effect_analysis.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
    
    namespace mlir {
    namespace tf_test {
    
    namespace {
    
    struct TestSideEffectAnalysisPass
        : public TF::PerFunctionAggregateAnalysisConsumerPass<
              TestSideEffectAnalysisPass, TF::SideEffectAnalysis> {
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestSideEffectAnalysisPass)
    
      void runOnFunction(func::FuncOp func,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/test_resource_alias_analysis.cc

    // aliasing values for each such result. Each value is assigned a unique ID, and
    // that ID is used to annotate the operations.
    struct TestResourceAliasAnalysis
        : public TF::PerFunctionAggregateAnalysisConsumerPass<
              TestResourceAliasAnalysis, TF::ResourceAliasAnalysis> {
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestResourceAliasAnalysis)
    
      StringRef getArgument() const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 4.4K bytes
    - Viewed (0)
Back to top