Skip to content
Snippets Groups Projects

Reduce memory consumption in b-tagging, by sharing NNs

Merged Dan Guest requested to merge dguest/athena:bsvc into 24.0
3 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -54,8 +54,8 @@ namespace FlavorTagDiscriminants {
private:
std::string m_nn_file;
GNNToolProperties m_props;
std::unique_ptr<const GNN> m_gnn;
GNNToolProperties m_props;
std::shared_ptr<const GNN> m_gnn;
};
}
#endif
Loading