Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetAnalysisIfExists (0.4 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      std::optional<const InfoT*> GetAnalysisIfExists(Region& region) const {
        auto it = info_map_.find(&region);
        if (it == info_map_.end()) return std::nullopt;
        return &it->second;
      }
    
      std::optional<const InfoT*> GetAnalysisIfExists(func::FuncOp func) const {
        return GetAnalysisIfExists(func.getBody());
      }
    
     private:
    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