-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
47 changed files
with
1,832 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,24 +36,29 @@ jobs: | |
build_and_test: | ||
strategy: | ||
matrix: | ||
os: [ macos-11, macos-12 ] | ||
compiler: [ g++-11, g++-12, clang++ ] | ||
os: [ macos-12, macos-13, macos-14 ] | ||
compiler: [ g++-11, g++-12, g++-13, clang++ ] | ||
build_type: [ Debug, Release ] | ||
include: | ||
- os: macos-12 | ||
architecture: x64 | ||
- os: macos-13 | ||
architecture: x64 | ||
- os: macos-14 | ||
architecture: arm64 | ||
- compiler: clang++ | ||
ccompiler: clang | ||
- compiler: g++-11 | ||
ccompiler: gcc-11 | ||
- compiler: g++-12 | ||
ccompiler: gcc-12 | ||
- os: macos-11 | ||
compiler: g++-10 | ||
ccompiler: gcc-10 | ||
build_type: Debug | ||
- os: macos-11 | ||
compiler: g++-10 | ||
ccompiler: gcc-10 | ||
build_type: Release | ||
exclude: | ||
- os: macos-14 | ||
compiler: g++-11 | ||
- os: macos-14 | ||
compiler: g++-12 | ||
- os: macos-14 | ||
compiler: g++-13 | ||
|
||
name: ${{matrix.os}} with ${{matrix.compiler}} (${{matrix.build_type}} mode) | ||
runs-on: ${{matrix.os}} | ||
|
@@ -70,11 +75,18 @@ jobs: | |
run: brew install tbb | ||
|
||
# Use XCode 13.2 as a workaround because XCode 14.0 seems broken | ||
- name: Setup XCode version | ||
- if: matrix.os == 'macos-12' | ||
name: Setup XCode version | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: "^13.2" | ||
|
||
- if: matrix.os == 'macos-13' || matrix.os == 'macos-14' | ||
name: Setup XCode version | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: "^14.2" | ||
|
||
- name: Setup ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
|
@@ -89,7 +101,7 @@ jobs: | |
with: | ||
version: ${{env.Z3_VERSION}} | ||
platform: macOS | ||
architecture: x64 | ||
architecture: ${{matrix.architecture}} | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
|
@@ -115,7 +127,7 @@ jobs: | |
- name: Build | ||
working-directory: ${{github.workspace}}/build | ||
run: cmake --build . -j3 # macOS runners provide 3 cores | ||
run: cmake --build . -j3 # all macOS runners provide at least 3 cores | ||
|
||
- name: Test | ||
working-directory: ${{github.workspace}}/build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.. _determine-clocking: | ||
|
||
Determine Clocking | ||
------------------ | ||
|
||
**Header:** ``fiction/algorithms/physical_design/determine_clocking.hpp`` | ||
|
||
Determines a new clock number assignment for the given gate-level layout. Whether the layout has useful/valid clocking | ||
information or not, this function will override each gate and wire segment with new clocking information if a valid | ||
clock number assignment exists. | ||
|
||
.. doxygenstruct:: fiction::determine_clocking_params | ||
:members: | ||
.. doxygenstruct:: fiction::determine_clocking_stats | ||
:members: | ||
.. doxygenfunction:: fiction::determine_clocking |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.