Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InfoT (0.57 sec)

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

    template <typename InfoT>
    class PerFunctionAggregateAnalysis {
     public:
      using Info = InfoT;
    
      // Returns the analysis info for the given function.
      const Info& GetAnalysisForFunc(func::FuncOp func) const {
        auto it = info_map_.find(func);
        assert(it != info_map_.end());
        return it->second;
      }
    
     protected:
      // Since `InfoT` might be large, DenseMap is used instead of SmallDenseMap to
    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/analysis/resource_alias_analysis.cc

    class BacktrackAnalysis {
     public:
      using InfoT = BacktrackAnalysisInfo;
    
      // Constructs the analysis by analyzing the given module.
      BacktrackAnalysis(ModuleOp module,
                        SymbolTableCollection& symbol_table_collection);
    
      // Returns backtracking analysis for the given region.
      const InfoT& GetAnalysisForRegion(Region& region) const {
        auto it = info_map_.find(&region);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top