yakra / DataProcessing

Data Processing Scripts and Programs for Travel Mapping Project
0 stars 0 forks source link

items allocated per thread #218

Open yakra opened 2 years ago

yakra commented 2 years ago

A generalization of #217...

grep '\[Args::numthreads\]\|\[numthreads\]' `find . -name \*.cpp`
./classes/WaypointQuadtree/WaypointQuadtree.cpp:{   std::forward_list<WaypointQuadtree*>* nodes = new std::forward_list<WaypointQuadtree*>[Args::numthreads];
./classes/GraphGeneration/HGVertex.cpp: s_vertex_num = new int[Args::numthreads];
./classes/GraphGeneration/HGVertex.cpp: c_vertex_num = new int[Args::numthreads];
./classes/GraphGeneration/HGVertex.cpp: t_vertex_num = new int[Args::numthreads];
./classes/GraphGeneration/HGEdge.cpp:   written = new char[Args::numthreads];
./classes/GraphGeneration/HGEdge.cpp:   written = new char[Args::numthreads];
./classes/TravelerList/TravelerList.cpp:    in_subgraph = new bool[Args::numthreads];
./classes/TravelerList/TravelerList.cpp:    traveler_num = new unsigned int[Args::numthreads];
./siteupdate.cpp:   list<string>* augment_lists = new list<string>[Args::numthreads];