Skip to content

Commit 9c8d32a

Browse files
Merge branch 'master' into setup_placer_seed
2 parents f4b3d2f + 03f3dec commit 9c8d32a

File tree

78 files changed

+4879
-4476
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+4879
-4476
lines changed

doc/src/api/vpr/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ VPR API
77
:maxdepth: 1
88

99
contexts
10-
netlist
1110
mapping
11+
netlist
12+
route_tree
1213
rr_graph

doc/src/api/vpr/route_tree.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
========
2+
Route Tree
3+
========
4+
5+
RouteTree
6+
-------
7+
8+
.. doxygenfile:: route_tree.h
9+
:project: vpr
10+
:sections: detaileddescription
11+
12+
13+
.. doxygenclass:: RouteTree
14+
:project: vpr
15+
:members:
16+
17+
RouteTreeNode
18+
-------------
19+
20+
.. doxygenclass:: RouteTreeNode
21+
:project: vpr
22+
:members:

libs/EXTERNAL/libtatum/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ cmake_minimum_required(VERSION 3.16)
22

33
project("tatum")
44

5-
set(TATUM_EXECUTION_ENGINE "auto" CACHE STRING "Specify the framework for (potential) parallel execution")
5+
# Parallel tatum gives non-deterministic results. Use serial by default until resolved
6+
set(TATUM_EXECUTION_ENGINE "serial" CACHE STRING "Specify the framework for (potential) parallel execution")
67
set_property(CACHE TATUM_EXECUTION_ENGINE PROPERTY STRINGS auto serial tbb)
78

89
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")

0 commit comments

Comments
 (0)