Skip to content

Commit e99cfd4

Browse files
committed
2 parents 18622c6 + ce706d5 commit e99cfd4

File tree

358 files changed

+12670
-5558
lines changed

Some content is hidden

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

358 files changed

+12670
-5558
lines changed
-34.9 KB
Loading

doc/src/quickstart/index.rst

Lines changed: 188 additions & 130 deletions
Large diffs are not rendered by default.

doc/src/quickstart/tseng_blk1.png

-21.6 KB
Loading

doc/src/quickstart/tseng_nets.png

2.86 KB
Loading

libs/EXTERNAL/libblifparse/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ add_library(libblifparse STATIC
4545
target_include_directories(libblifparse PUBLIC ${LIB_INCLUDE_DIRS} ${CMAKE_CURRENT_BINARY_DIR})
4646
set_target_properties(libblifparse PROPERTIES PREFIX "") #Avoid extra 'lib' prefix
4747

48+
# Set the read buffer size in the generated lexers. This reduces the number of
49+
# syscalls since the default is only 1kB.
50+
target_compile_definitions(libblifparse PRIVATE YY_READ_BUF_SIZE=1048576)
51+
4852
#Create the test executable
4953
add_executable(blifparse_test src/main.cpp)
5054
target_link_libraries(blifparse_test libblifparse)

libs/EXTERNAL/libezgl/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
22

33
# create the project
44
project(

libs/EXTERNAL/libezgl/examples/basic-application/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
22

33
project(
44
basic-application

libs/EXTERNAL/libtatum/libtatum/tatum/SetupAnalysis.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace tatum {
1616

1717
/** \file
1818
* The 'SetupAnalysis' class defines the operations needed by a GraphWalker class
19-
* to perform a setup (max/longest path) analysis. It satisifes and extends the GraphVisitor
19+
* to perform a setup (max/longest path) analysis. It satisfies and extends the GraphVisitor
2020
* concept class.
2121
*
2222
* Setup Analysis Principles

libs/EXTERNAL/libtatum/libtatum/tatum/TimingConstraints.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Time TimingConstraints::setup_constraint(const DomainId src_domain, const Domain
132132
return iter->second;
133133
}
134134

135-
//If no capture node specific constraint was found, fallback to the domain pair constriant
135+
//If no capture node specific constraint was found, fallback to the domain pair constraint
136136
iter = setup_constraints_.find(NodeDomainPair(src_domain, sink_domain, NodeId::INVALID()));
137137
if(iter != setup_constraints_.end()) {
138138
return iter->second;

0 commit comments

Comments
 (0)