Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RegisterGroupByDialectPass (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.h

    namespace TF {
    
    // Create a pass that groups ops into functions that only contain one dialect.
    std::unique_ptr<Pass> CreateGroupByDialectPass();
    
    // Register this pass in the global registry of MLIR.
    void RegisterGroupByDialectPass();
    
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 14:17:18 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

        processFunction(func, counter, top_level_dialects_, module);
      });
    }
    
    std::unique_ptr<Pass> CreateGroupByDialectPass() {
      return std::make_unique<GroupByDialectPass>();
    }
    
    void RegisterGroupByDialectPass() { registerPass(CreateGroupByDialectPass); }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top