Skip to content

Commit ca6fe30

Browse files
committed
[vpr][route][crr] remove thread pool
1 parent a6934c2 commit ca6fe30

File tree

4 files changed

+0
-316
lines changed

4 files changed

+0
-316
lines changed

vpr/src/route/rr_graph_generation/tileable_rr_graph/crr_generator/crr_generator.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,6 @@ void CRRGraphGenerator::initialize_components() {
5252
node_lookup_,
5353
sb_manager_);
5454

55-
// Initialize thread pool if parallel processing is enabled
56-
VTR_ASSERT(crr_opts_.crr_num_threads > 0);
57-
thread_pool_ = std::make_unique<CRRThreadPool>(crr_opts_.crr_num_threads);
58-
VTR_LOG("CRR Graph Generator: Parallel processing enabled with %lu threads\n",
59-
thread_pool_->get_thread_count());
60-
6155
VTR_LOG("CRR Graph Generator: All components initialized successfully\n");
6256
}
6357

vpr/src/route/rr_graph_generation/tileable_rr_graph/crr_generator/crr_generator.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ class CRRGraphGenerator {
4747

4848
std::unique_ptr<RRGraph> output_graph_;
4949
std::unique_ptr<CRRConnectionBuilder> connection_builder_;
50-
std::unique_ptr<CRRThreadPool> thread_pool_;
5150
std::unique_ptr<XMLHandler> xml_handler_;
5251

5352
// Processing methods

vpr/src/route/rr_graph_generation/tileable_rr_graph/crr_generator/crr_thread_pool.cpp

Lines changed: 0 additions & 145 deletions
This file was deleted.

vpr/src/route/rr_graph_generation/tileable_rr_graph/crr_generator/crr_thread_pool.h

Lines changed: 0 additions & 164 deletions
This file was deleted.

0 commit comments

Comments
 (0)