@@ -223,7 +223,6 @@ doMemoryAnalysis(const std::unique_ptr<katana::PropertyGraph> graph) {
223223 basic_raw_stats.insert (std::pair (" Number-Edges" , graph->num_edges ()));
224224
225225 auto atomic_node_types = graph->ListAtomicNodeTypes ();
226-
227226 auto atomic_edge_types = graph->ListAtomicEdgeTypes ();
228227
229228 map_string_element all_node_prop_stats;
@@ -245,24 +244,7 @@ doMemoryAnalysis(const std::unique_ptr<katana::PropertyGraph> graph) {
245244 node_schema, graph, all_node_alloc, all_node_usage, all_node_width_stats,
246245 all_node_prop_stats, true );
247246
248- std::cout << " Node Memory Stats"
249- << " \n " ;
250- std::cout << " ---------------------------------------------------"
251- << " \n " ;
252- std::cout << " Type Statistics"
253- << " \n " ;
254247 PrintStringMapping (all_node_prop_stats);
255-
256- std::cout << " Width Statstics"
257- << " \n " ;
258- PrintMapping (all_node_width_stats);
259-
260- std::cout << " Node No Grouping Memory Usage"
261- << " \n " ;
262- PrintMapping (all_node_alloc);
263-
264- std::cout << " Node Estimated Grouping Memory Usage"
265- << " \n " ;
266248 PrintMapping (all_node_usage);
267249
268250 mem_map.insert (std::pair (" Node-Types" , all_node_prop_stats));
@@ -271,24 +253,6 @@ doMemoryAnalysis(const std::unique_ptr<katana::PropertyGraph> graph) {
271253 edge_schema, graph, all_edge_alloc, all_edge_usage, all_edge_width_stats,
272254 all_edge_prop_stats, false );
273255
274- std::cout << " Edge Memory Stats"
275- << " \n " ;
276- std::cout << " ---------------------------------------------------"
277- << " \n " ;
278- std::cout << " Type Statistics"
279- << " \n " ;
280- PrintStringMapping (all_edge_prop_stats);
281-
282- std::cout << " Width Statstics"
283- << " \n " ;
284- PrintMapping (all_edge_width_stats);
285- std::cout << " Edge No Grouping Memory Usage"
286- << " \n " ;
287- PrintMapping (all_edge_alloc);
288-
289- std::cout << " Edge Estimated Grouping Memory Usage"
290- << " \n " ;
291- PrintMapping (all_edge_usage);
292256 mem_map.insert (std::pair (" Edge-Types" , all_edge_prop_stats));
293257
294258 mem_map.insert (std::pair (" General-Stats" , basic_raw_stats));
0 commit comments