Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InfoT (0.03 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)
Back to top