siliconcompiler 0.28.2__py3-none-any.whl → 0.28.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- siliconcompiler/_common.py +12 -0
- siliconcompiler/_metadata.py +1 -1
- siliconcompiler/apps/sc_dashboard.py +5 -1
- siliconcompiler/apps/sc_install.py +61 -13
- siliconcompiler/apps/sc_remote.py +1 -1
- siliconcompiler/core.py +39 -13
- siliconcompiler/remote/client.py +41 -10
- siliconcompiler/report/__init__.py +1 -1
- siliconcompiler/report/{streamlit_report.py → dashboard/__init__.py} +47 -10
- siliconcompiler/report/dashboard/components/__init__.py +534 -0
- siliconcompiler/report/dashboard/components/flowgraph.py +114 -0
- siliconcompiler/report/dashboard/components/graph.py +208 -0
- siliconcompiler/report/dashboard/layouts/__init__.py +20 -0
- siliconcompiler/report/dashboard/layouts/_common.py +43 -0
- siliconcompiler/report/dashboard/layouts/vertical_flowgraph.py +95 -0
- siliconcompiler/report/dashboard/layouts/vertical_flowgraph_node_tab.py +114 -0
- siliconcompiler/report/dashboard/layouts/vertical_flowgraph_sac_tabs.py +107 -0
- siliconcompiler/report/dashboard/state.py +215 -0
- siliconcompiler/report/dashboard/utils/__init__.py +73 -0
- siliconcompiler/report/dashboard/utils/file_utils.py +120 -0
- siliconcompiler/report/dashboard/viewer.py +36 -0
- siliconcompiler/report/report.py +22 -4
- siliconcompiler/scheduler/__init__.py +43 -6
- siliconcompiler/schema/schema_obj.py +4 -2
- siliconcompiler/tools/openroad/floorplan.py +5 -0
- siliconcompiler/tools/openroad/openroad.py +12 -3
- siliconcompiler/tools/openroad/scripts/sc_cts.tcl +18 -13
- siliconcompiler/tools/openroad/scripts/sc_floorplan.tcl +6 -1
- siliconcompiler/tools/openroad/scripts/sc_procs.tcl +28 -0
- siliconcompiler/toolscripts/_tools.json +8 -3
- siliconcompiler/toolscripts/rhel8/install-chisel.sh +26 -0
- siliconcompiler/toolscripts/rhel8/install-ghdl.sh +25 -0
- siliconcompiler/toolscripts/rhel8/install-icarus.sh +40 -0
- siliconcompiler/toolscripts/rhel8/install-klayout.sh +17 -0
- siliconcompiler/toolscripts/rhel8/install-magic.sh +26 -0
- siliconcompiler/toolscripts/rhel8/install-montage.sh +5 -0
- siliconcompiler/toolscripts/rhel8/install-netgen.sh +25 -0
- siliconcompiler/toolscripts/rhel8/install-openroad.sh +31 -0
- siliconcompiler/toolscripts/rhel8/install-slang.sh +31 -0
- siliconcompiler/toolscripts/rhel8/install-surelog.sh +32 -0
- siliconcompiler/toolscripts/rhel8/install-sv2v.sh +27 -0
- siliconcompiler/toolscripts/rhel8/install-verible.sh +24 -0
- siliconcompiler/toolscripts/rhel8/install-verilator.sh +40 -0
- siliconcompiler/toolscripts/rhel8/install-xyce.sh +64 -0
- siliconcompiler/toolscripts/rhel8/install-yosys.sh +23 -0
- siliconcompiler/toolscripts/rhel9/install-chisel.sh +26 -0
- siliconcompiler/toolscripts/rhel9/install-ghdl.sh +25 -0
- siliconcompiler/toolscripts/rhel9/install-icarus.sh +40 -0
- siliconcompiler/toolscripts/rhel9/install-klayout.sh +17 -0
- siliconcompiler/toolscripts/rhel9/install-magic.sh +26 -0
- siliconcompiler/toolscripts/rhel9/install-montage.sh +5 -0
- siliconcompiler/toolscripts/rhel9/install-netgen.sh +25 -0
- siliconcompiler/toolscripts/rhel9/install-slang.sh +31 -0
- siliconcompiler/toolscripts/rhel9/install-surelog.sh +32 -0
- siliconcompiler/toolscripts/rhel9/install-sv2v.sh +27 -0
- siliconcompiler/toolscripts/rhel9/install-verible.sh +24 -0
- siliconcompiler/toolscripts/rhel9/install-verilator.sh +40 -0
- siliconcompiler/toolscripts/rhel9/install-xdm.sh +43 -0
- siliconcompiler/toolscripts/rhel9/install-xyce.sh +64 -0
- siliconcompiler/toolscripts/rhel9/install-yosys.sh +23 -0
- siliconcompiler/toolscripts/ubuntu20/install-icepack.sh +1 -1
- siliconcompiler/toolscripts/ubuntu20/install-xdm.sh +40 -0
- siliconcompiler/toolscripts/ubuntu20/install-yosys.sh +2 -2
- siliconcompiler/toolscripts/ubuntu22/install-icepack.sh +1 -1
- siliconcompiler/toolscripts/ubuntu22/install-xdm.sh +40 -0
- siliconcompiler/toolscripts/ubuntu22/install-yosys.sh +2 -2
- siliconcompiler/toolscripts/ubuntu24/install-icepack.sh +1 -1
- siliconcompiler/toolscripts/ubuntu24/install-klayout.sh +2 -0
- siliconcompiler/toolscripts/ubuntu24/install-xdm.sh +40 -0
- siliconcompiler/toolscripts/ubuntu24/install-yosys.sh +2 -2
- {siliconcompiler-0.28.2.dist-info → siliconcompiler-0.28.3.dist-info}/METADATA +7 -6
- {siliconcompiler-0.28.2.dist-info → siliconcompiler-0.28.3.dist-info}/RECORD +76 -32
- siliconcompiler/report/streamlit_viewer.py +0 -944
- {siliconcompiler-0.28.2.dist-info → siliconcompiler-0.28.3.dist-info}/LICENSE +0 -0
- {siliconcompiler-0.28.2.dist-info → siliconcompiler-0.28.3.dist-info}/WHEEL +0 -0
- {siliconcompiler-0.28.2.dist-info → siliconcompiler-0.28.3.dist-info}/entry_points.txt +0 -0
- {siliconcompiler-0.28.2.dist-info → siliconcompiler-0.28.3.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
sudo yum group install -y "Development Tools"
|
|
9
|
+
|
|
10
|
+
args=
|
|
11
|
+
if [ ! -z ${PREFIX} ]; then
|
|
12
|
+
args=--prefix="$PREFIX"
|
|
13
|
+
fi
|
|
14
|
+
|
|
15
|
+
mkdir -p deps
|
|
16
|
+
cd deps
|
|
17
|
+
|
|
18
|
+
wget http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz
|
|
19
|
+
tar xvf gperf-3.1.tar.gz
|
|
20
|
+
cd gperf-3.1
|
|
21
|
+
./configure $args
|
|
22
|
+
make -j$(nproc)
|
|
23
|
+
sudo make install
|
|
24
|
+
cd ..
|
|
25
|
+
|
|
26
|
+
if [ ! -z ${PREFIX} ]; then
|
|
27
|
+
export PATH="${PREFIX}/bin:$PATH"
|
|
28
|
+
export LD_LIBRARY_PATH="${PREFIX}/lib:$LD_LIBRARY_PATH"
|
|
29
|
+
fi
|
|
30
|
+
|
|
31
|
+
git clone $(python3 ${src_path}/_tools.py --tool icarus --field git-url) icarus
|
|
32
|
+
cd icarus
|
|
33
|
+
git checkout $(python3 ${src_path}/_tools.py --tool icarus --field git-commit)
|
|
34
|
+
|
|
35
|
+
sh autoconf.sh
|
|
36
|
+
./configure $args
|
|
37
|
+
make -j$(nproc)
|
|
38
|
+
sudo make install
|
|
39
|
+
|
|
40
|
+
cd -
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
mkdir -p deps
|
|
9
|
+
cd deps
|
|
10
|
+
|
|
11
|
+
klayout_version=$(python3 ${src_path}/_tools.py --tool klayout --field version)
|
|
12
|
+
wget --no-check-certificate \
|
|
13
|
+
-O klayout.rpm \
|
|
14
|
+
"https://www.klayout.org/downloads/RockyLinux_9/klayout-${klayout_version}-0.x86_64.rpm"
|
|
15
|
+
sudo yum install -y ./klayout.rpm
|
|
16
|
+
|
|
17
|
+
cd -
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
sudo yum group install -y "Development Tools"
|
|
9
|
+
sudo yum install -y tcl-devel tk-devel tcsh csh
|
|
10
|
+
# sudo apt-get install -y build-essential m4 tcsh csh libx11-dev tcl-dev tk-dev
|
|
11
|
+
|
|
12
|
+
mkdir -p deps
|
|
13
|
+
cd deps
|
|
14
|
+
|
|
15
|
+
git clone $(python3 ${src_path}/_tools.py --tool magic --field git-url) magic
|
|
16
|
+
cd magic
|
|
17
|
+
git checkout $(python3 ${src_path}/_tools.py --tool magic --field git-commit)
|
|
18
|
+
|
|
19
|
+
args=
|
|
20
|
+
if [ ! -z ${PREFIX} ]; then
|
|
21
|
+
args=--prefix="$PREFIX"
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
LD_FLAGS=-shared ./configure $args
|
|
25
|
+
make -j$(nproc)
|
|
26
|
+
sudo make install
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
sudo yum group install -y "Development Tools"
|
|
9
|
+
sudo yum install -y tcl-devel tk-devel
|
|
10
|
+
|
|
11
|
+
mkdir -p deps
|
|
12
|
+
cd deps
|
|
13
|
+
|
|
14
|
+
git clone $(python3 ${src_path}/_tools.py --tool netgen --field git-url) netgen
|
|
15
|
+
cd netgen
|
|
16
|
+
git checkout $(python3 ${src_path}/_tools.py --tool netgen --field git-commit)
|
|
17
|
+
|
|
18
|
+
args=
|
|
19
|
+
if [ ! -z ${PREFIX} ]; then
|
|
20
|
+
args=--prefix="$PREFIX"
|
|
21
|
+
fi
|
|
22
|
+
|
|
23
|
+
./configure $args
|
|
24
|
+
make -j$(nproc)
|
|
25
|
+
sudo make install
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
mkdir -p deps
|
|
9
|
+
cd deps
|
|
10
|
+
|
|
11
|
+
python3 -m venv .slang --clear
|
|
12
|
+
. .slang/bin/activate
|
|
13
|
+
python3 -m pip install --upgrade pip
|
|
14
|
+
python3 -m pip install cmake
|
|
15
|
+
|
|
16
|
+
sudo yum install -y gcc-toolset-12
|
|
17
|
+
|
|
18
|
+
git clone $(python3 ${src_path}/_tools.py --tool slang --field git-url) slang
|
|
19
|
+
cd slang
|
|
20
|
+
git checkout $(python3 ${src_path}/_tools.py --tool slang --field git-commit)
|
|
21
|
+
|
|
22
|
+
cfg_args=""
|
|
23
|
+
if [ ! -z ${PREFIX} ]; then
|
|
24
|
+
cfg_args="--prefix=$PREFIX"
|
|
25
|
+
fi
|
|
26
|
+
|
|
27
|
+
scl run gcc-toolset-12 "cmake -B build"
|
|
28
|
+
scl run gcc-toolset-12 "cmake --build build -j$(nproc)"
|
|
29
|
+
scl run gcc-toolset-12 "cmake --install build --strip $cfg_args"
|
|
30
|
+
|
|
31
|
+
cd -
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
# These dependencies are up-to-date with instructions from the INSTALL.md from the commit we are pinned to below
|
|
9
|
+
sudo yum install -y gcc-toolset-12
|
|
10
|
+
sudo dnf config-manager --set-enabled devel || true
|
|
11
|
+
sudo yum install -y libuuid-devel java-11-openjdk-devel python3 zlib-static openssl-devel
|
|
12
|
+
sudo dnf config-manager --set-disabled devel || true
|
|
13
|
+
|
|
14
|
+
mkdir -p deps
|
|
15
|
+
cd deps
|
|
16
|
+
|
|
17
|
+
python3 -m venv .surelog --clear
|
|
18
|
+
. .surelog/bin/activate
|
|
19
|
+
python3 -m pip install --upgrade pip
|
|
20
|
+
python3 -m pip install cmake
|
|
21
|
+
python3 -m pip install orderedmultidict
|
|
22
|
+
|
|
23
|
+
git clone $(python3 ${src_path}/_tools.py --tool surelog --field git-url) surelog
|
|
24
|
+
cd surelog
|
|
25
|
+
git checkout $(python3 ${src_path}/_tools.py --tool surelog --field git-commit)
|
|
26
|
+
git submodule update --init --recursive
|
|
27
|
+
|
|
28
|
+
scl run gcc-toolset-12 "LDFLAGS=\"-lrt\" make -j$(nproc)"
|
|
29
|
+
|
|
30
|
+
sudo -E PATH="$PATH" make install
|
|
31
|
+
|
|
32
|
+
cd -
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
mkdir -p deps
|
|
9
|
+
cd deps
|
|
10
|
+
|
|
11
|
+
sudo yum group install -y "Development Tools"
|
|
12
|
+
sudo yum install -y gmp-devel xz
|
|
13
|
+
|
|
14
|
+
curl -sSL https://get.haskellstack.org/ | sh -s - -f
|
|
15
|
+
|
|
16
|
+
git clone $(python3 ${src_path}/_tools.py --tool sv2v --field git-url) sv2v
|
|
17
|
+
cd sv2v
|
|
18
|
+
git checkout $(python3 ${src_path}/_tools.py --tool sv2v --field git-commit)
|
|
19
|
+
|
|
20
|
+
make -j$(nproc)
|
|
21
|
+
|
|
22
|
+
if [ ! -z ${PREFIX} ]; then
|
|
23
|
+
sudo mkdir -p ${PREFIX}/bin/
|
|
24
|
+
sudo cp bin/* ${PREFIX}/bin/
|
|
25
|
+
fi
|
|
26
|
+
|
|
27
|
+
cd -
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
mkdir -p deps
|
|
9
|
+
cd deps
|
|
10
|
+
|
|
11
|
+
version=$(python3 ${src_path}/_tools.py --tool verible --field version)
|
|
12
|
+
filename=verible-$version-linux-static-x86_64.tar.gz
|
|
13
|
+
|
|
14
|
+
wget https://github.com/chipsalliance/verible/releases/download/$version/$filename
|
|
15
|
+
|
|
16
|
+
tar xzf $filename
|
|
17
|
+
|
|
18
|
+
if [ -z ${PREFIX} ]; then
|
|
19
|
+
PREFIX=/opt/verible
|
|
20
|
+
sudo mkdir -p $PREFIX
|
|
21
|
+
echo "Please add \"export PATH="/opt/verible/bin:\$PATH"\" to your .bashrc"
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
sudo mv verible-$version/* $PREFIX
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
sudo yum group install -y "Development Tools"
|
|
9
|
+
|
|
10
|
+
mkdir -p deps
|
|
11
|
+
cd deps
|
|
12
|
+
|
|
13
|
+
args=
|
|
14
|
+
if [ ! -z ${PREFIX} ]; then
|
|
15
|
+
args=--prefix="$PREFIX"
|
|
16
|
+
fi
|
|
17
|
+
|
|
18
|
+
wget https://ftp.wayne.edu/gnu/help2man/help2man-1.43.3.tar.gz
|
|
19
|
+
tar xvf help2man-1.43.3.tar.gz
|
|
20
|
+
cd help2man-1.43.3
|
|
21
|
+
|
|
22
|
+
./configure $args
|
|
23
|
+
make -j$(nproc)
|
|
24
|
+
sudo make install
|
|
25
|
+
|
|
26
|
+
cd ..
|
|
27
|
+
|
|
28
|
+
unset VERILATOR_ROOT
|
|
29
|
+
|
|
30
|
+
git clone $(python3 ${src_path}/_tools.py --tool verilator --field git-url) verilator
|
|
31
|
+
cd verilator
|
|
32
|
+
git checkout $(python3 ${src_path}/_tools.py --tool verilator --field git-commit)
|
|
33
|
+
|
|
34
|
+
autoconf
|
|
35
|
+
|
|
36
|
+
./configure $args
|
|
37
|
+
make -j$(nproc)
|
|
38
|
+
sudo make install
|
|
39
|
+
|
|
40
|
+
cd -
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
sudo yum group install -y "Development Tools" --exclude "python3*" --skip-broken
|
|
9
|
+
sudo dnf config-manager --set-enabled devel || true
|
|
10
|
+
sudo yum install -y boost boost-python3-devel cmake python-devel
|
|
11
|
+
dnf config-manager --set-disabled devel || true
|
|
12
|
+
|
|
13
|
+
mkdir -p deps
|
|
14
|
+
cd deps
|
|
15
|
+
|
|
16
|
+
if [ -z ${PREFIX} ]; then
|
|
17
|
+
PREFIX=~/.local
|
|
18
|
+
fi
|
|
19
|
+
|
|
20
|
+
# Download XDM
|
|
21
|
+
git clone $(python3 ${src_path}/_tools.py --tool xdm --field git-url) xdm
|
|
22
|
+
cd xdm
|
|
23
|
+
git checkout $(python3 ${src_path}/_tools.py --tool xdm --field git-commit)
|
|
24
|
+
|
|
25
|
+
mkdir -p build
|
|
26
|
+
cd build
|
|
27
|
+
|
|
28
|
+
python3 -m venv venv
|
|
29
|
+
. ./venv/bin/activate
|
|
30
|
+
python3 -m pip install --upgrade pip
|
|
31
|
+
python3 -m pip install PyInstaller
|
|
32
|
+
|
|
33
|
+
args=
|
|
34
|
+
if [ ! -z ${PREFIX} ]; then
|
|
35
|
+
args="-DCMAKE_INSTALL_PREFIX=$PREFIX"
|
|
36
|
+
fi
|
|
37
|
+
|
|
38
|
+
cmake .. $args
|
|
39
|
+
make -j$(nproc)
|
|
40
|
+
|
|
41
|
+
sudo make install
|
|
42
|
+
|
|
43
|
+
cd -
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
mkdir -p deps
|
|
9
|
+
cd deps
|
|
10
|
+
|
|
11
|
+
if [ -z ${PREFIX} ]; then
|
|
12
|
+
PREFIX=~/.local
|
|
13
|
+
fi
|
|
14
|
+
|
|
15
|
+
sudo dnf config-manager --set-enabled devel || true
|
|
16
|
+
# Install core dependencies.
|
|
17
|
+
sudo yum install -y gcc gcc-c++ gcc-gfortran blas blas-devel \
|
|
18
|
+
cmake lapack lapack-devel bison flex fftw-devel fftw \
|
|
19
|
+
suitesparse suitesparse-devel autoconf automake libtool \
|
|
20
|
+
git
|
|
21
|
+
sudo dnf config-manager --set-disabled devel || true
|
|
22
|
+
|
|
23
|
+
# Download Trilinos
|
|
24
|
+
## Version specified in: https://github.com/Xyce/Xyce/blob/master/INSTALL.md#building-trilinos
|
|
25
|
+
trilinos_version=14-4-0
|
|
26
|
+
wget https://github.com/trilinos/Trilinos/archive/refs/tags/trilinos-release-${trilinos_version}.tar.gz -O trilinos.tar.gz
|
|
27
|
+
mkdir -p trilinos
|
|
28
|
+
tar --strip-components=1 -xf trilinos.tar.gz -C trilinos
|
|
29
|
+
rm trilinos.tar.gz
|
|
30
|
+
|
|
31
|
+
# Download Xyce (note that this is needed to build Trilinos)
|
|
32
|
+
xyce_version=$(python3 ${src_path}/_tools.py --tool xyce --field version)
|
|
33
|
+
wget https://github.com/Xyce/Xyce/archive/refs/tags/Release-${xyce_version}.tar.gz -O xyce.tar.gz
|
|
34
|
+
mkdir -p xyce
|
|
35
|
+
tar --strip-components=1 -xf xyce.tar.gz -C xyce
|
|
36
|
+
rm xyce.tar.gz
|
|
37
|
+
XYCE_DIR=$(realpath xyce)
|
|
38
|
+
|
|
39
|
+
# Build Trilinos
|
|
40
|
+
cd trilinos
|
|
41
|
+
mkdir build
|
|
42
|
+
cd build
|
|
43
|
+
cmake \
|
|
44
|
+
-D CMAKE_INSTALL_PREFIX="$PREFIX/trilinos" \
|
|
45
|
+
-D AMD_LIBRARY_DIRS="/usr/lib" \
|
|
46
|
+
-D TPL_AMD_INCLUDE_DIRS="/usr/include/suitesparse" \
|
|
47
|
+
-C "$XYCE_DIR/cmake/trilinos/trilinos-base.cmake" \
|
|
48
|
+
..
|
|
49
|
+
cmake --build . -j$(nproc) -t install
|
|
50
|
+
cd ../..
|
|
51
|
+
|
|
52
|
+
# Build Xyce
|
|
53
|
+
cd xyce
|
|
54
|
+
mkdir build
|
|
55
|
+
cd build
|
|
56
|
+
cmake \
|
|
57
|
+
-D CMAKE_INSTALL_PREFIX="$PREFIX" \
|
|
58
|
+
-D Trilinos_ROOT=$PREFIX/trilinos \
|
|
59
|
+
-D BUILD_SHARED_LIBS=ON \
|
|
60
|
+
..
|
|
61
|
+
cmake --build . -j$(nproc)
|
|
62
|
+
cmake --build . -j$(nproc) --target xycecinterface
|
|
63
|
+
sudo make install
|
|
64
|
+
cd -
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
# From: https://github.com/YosysHQ/yosys/blob/f2c689403ace0637b7455bac8f1e8d4bc312e74f/README.md
|
|
9
|
+
sudo yum group install -y "Development Tools"
|
|
10
|
+
sudo yum install -y bison flex readline-devel gawk \
|
|
11
|
+
tcl-devel libffi-devel zlib-devel boost-devel
|
|
12
|
+
|
|
13
|
+
mkdir -p deps
|
|
14
|
+
cd deps
|
|
15
|
+
|
|
16
|
+
git clone $(python3 ${src_path}/_tools.py --tool yosys --field git-url) yosys
|
|
17
|
+
cd yosys
|
|
18
|
+
git checkout $(python3 ${src_path}/_tools.py --tool yosys --field git-commit)
|
|
19
|
+
git submodule update --init --recursive
|
|
20
|
+
|
|
21
|
+
make -j$(nproc)
|
|
22
|
+
sudo make install PREFIX="$PREFIX"
|
|
23
|
+
cd -
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
sudo apt-get install -y build-essential libboost-all-dev cmake
|
|
9
|
+
|
|
10
|
+
mkdir -p deps
|
|
11
|
+
cd deps
|
|
12
|
+
|
|
13
|
+
if [ -z ${PREFIX} ]; then
|
|
14
|
+
PREFIX=~/.local
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
# Download XDM
|
|
18
|
+
git clone $(python3 ${src_path}/_tools.py --tool xdm --field git-url) xdm
|
|
19
|
+
cd xdm
|
|
20
|
+
git checkout $(python3 ${src_path}/_tools.py --tool xdm --field git-commit)
|
|
21
|
+
|
|
22
|
+
mkdir -p build
|
|
23
|
+
cd build
|
|
24
|
+
|
|
25
|
+
python3 -m venv venv
|
|
26
|
+
. ./venv/bin/activate
|
|
27
|
+
python3 -m pip install --upgrade pip
|
|
28
|
+
python3 -m pip install PyInstaller
|
|
29
|
+
|
|
30
|
+
args=
|
|
31
|
+
if [ ! -z ${PREFIX} ]; then
|
|
32
|
+
args="-DCMAKE_INSTALL_PREFIX=$PREFIX"
|
|
33
|
+
fi
|
|
34
|
+
|
|
35
|
+
cmake .. $args
|
|
36
|
+
make -j$(nproc)
|
|
37
|
+
|
|
38
|
+
sudo make install
|
|
39
|
+
|
|
40
|
+
cd -
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
sudo apt-get install -y build-essential libboost-all-dev cmake
|
|
9
|
+
|
|
10
|
+
mkdir -p deps
|
|
11
|
+
cd deps
|
|
12
|
+
|
|
13
|
+
if [ -z ${PREFIX} ]; then
|
|
14
|
+
PREFIX=~/.local
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
# Download XDM
|
|
18
|
+
git clone $(python3 ${src_path}/_tools.py --tool xdm --field git-url) xdm
|
|
19
|
+
cd xdm
|
|
20
|
+
git checkout $(python3 ${src_path}/_tools.py --tool xdm --field git-commit)
|
|
21
|
+
|
|
22
|
+
mkdir -p build
|
|
23
|
+
cd build
|
|
24
|
+
|
|
25
|
+
python3 -m venv venv
|
|
26
|
+
. ./venv/bin/activate
|
|
27
|
+
python3 -m pip install --upgrade pip
|
|
28
|
+
python3 -m pip install PyInstaller
|
|
29
|
+
|
|
30
|
+
args=
|
|
31
|
+
if [ ! -z ${PREFIX} ]; then
|
|
32
|
+
args="-DCMAKE_INSTALL_PREFIX=$PREFIX"
|
|
33
|
+
fi
|
|
34
|
+
|
|
35
|
+
cmake .. $args
|
|
36
|
+
make -j$(nproc)
|
|
37
|
+
|
|
38
|
+
sudo make install
|
|
39
|
+
|
|
40
|
+
cd -
|
|
@@ -17,6 +17,8 @@ elif [ "$version" = "20.04" ]; then
|
|
|
17
17
|
url="https://www.klayout.org/downloads/Ubuntu-20/klayout_${pkg_version}-1_amd64.deb"
|
|
18
18
|
elif [ "$version" = "22.04" ]; then
|
|
19
19
|
url="https://www.klayout.org/downloads/Ubuntu-22/klayout_${pkg_version}-1_amd64.deb"
|
|
20
|
+
elif [ "$version" = "24.04" ]; then
|
|
21
|
+
url="https://www.klayout.org/downloads/Ubuntu-24/klayout_${pkg_version}-1_amd64.deb"
|
|
20
22
|
else
|
|
21
23
|
echo "Script doesn't support Ubuntu version $version."
|
|
22
24
|
fi
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
# Get directory of script
|
|
6
|
+
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
|
+
|
|
8
|
+
sudo apt-get install -y build-essential libboost1.74-all-dev cmake
|
|
9
|
+
|
|
10
|
+
mkdir -p deps
|
|
11
|
+
cd deps
|
|
12
|
+
|
|
13
|
+
if [ -z ${PREFIX} ]; then
|
|
14
|
+
PREFIX=~/.local
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
# Download XDM
|
|
18
|
+
git clone $(python3 ${src_path}/_tools.py --tool xdm --field git-url) xdm
|
|
19
|
+
cd xdm
|
|
20
|
+
git checkout $(python3 ${src_path}/_tools.py --tool xdm --field git-commit)
|
|
21
|
+
|
|
22
|
+
mkdir -p build
|
|
23
|
+
cd build
|
|
24
|
+
|
|
25
|
+
python3 -m venv venv
|
|
26
|
+
. ./venv/bin/activate
|
|
27
|
+
python3 -m pip install --upgrade pip
|
|
28
|
+
python3 -m pip install PyInstaller
|
|
29
|
+
|
|
30
|
+
args=
|
|
31
|
+
if [ ! -z ${PREFIX} ]; then
|
|
32
|
+
args="-DCMAKE_INSTALL_PREFIX=$PREFIX"
|
|
33
|
+
fi
|
|
34
|
+
|
|
35
|
+
cmake .. $args
|
|
36
|
+
make -j$(nproc)
|
|
37
|
+
|
|
38
|
+
sudo make install
|
|
39
|
+
|
|
40
|
+
cd -
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: siliconcompiler
|
|
3
|
-
Version: 0.28.
|
|
3
|
+
Version: 0.28.3
|
|
4
4
|
Summary: A compiler framework that automates translation from source code to silicon.
|
|
5
5
|
Author-email: Andreas Olofsson <andreas.d.olofsson@gmail.com>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -12,7 +12,7 @@ Project-URL: Discussion, https://github.com/siliconcompiler/siliconcompiler/disc
|
|
|
12
12
|
Requires-Python: >=3.8
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: aiohttp ==3.10.
|
|
15
|
+
Requires-Dist: aiohttp ==3.10.10
|
|
16
16
|
Requires-Dist: requests ==2.32.3
|
|
17
17
|
Requires-Dist: PyYAML ==6.0.2
|
|
18
18
|
Requires-Dist: pandas >=1.1.5
|
|
@@ -31,13 +31,14 @@ Requires-Dist: fastjsonschema ==2.20.0
|
|
|
31
31
|
Requires-Dist: docker ==7.1.0
|
|
32
32
|
Requires-Dist: sc-surelog ==1.84.1
|
|
33
33
|
Requires-Dist: orjson ==3.10.7
|
|
34
|
-
Requires-Dist: streamlit ==1.
|
|
34
|
+
Requires-Dist: streamlit ==1.39.0
|
|
35
35
|
Requires-Dist: streamlit-agraph ==0.0.45
|
|
36
|
-
Requires-Dist: streamlit-
|
|
36
|
+
Requires-Dist: streamlit-antd-components ==0.3.2
|
|
37
37
|
Requires-Dist: streamlit-javascript ==0.1.5
|
|
38
|
+
Requires-Dist: streamlit-autorefresh ==1.0.1
|
|
38
39
|
Requires-Dist: importlib-metadata ; python_version < "3.10"
|
|
39
40
|
Provides-Extra: docs
|
|
40
|
-
Requires-Dist: Sphinx ==8.
|
|
41
|
+
Requires-Dist: Sphinx ==8.1.3 ; extra == 'docs'
|
|
41
42
|
Requires-Dist: pip-licenses ==5.0.0 ; extra == 'docs'
|
|
42
43
|
Requires-Dist: pydata-sphinx-theme ==0.15.4 ; extra == 'docs'
|
|
43
44
|
Requires-Dist: sc-leflib >=0.2.0 ; extra == 'docs'
|
|
@@ -55,7 +56,7 @@ Requires-Dist: pytest-cov ==5.0.0 ; extra == 'test'
|
|
|
55
56
|
Requires-Dist: responses ==0.25.3 ; extra == 'test'
|
|
56
57
|
Requires-Dist: PyVirtualDisplay ==3.0 ; extra == 'test'
|
|
57
58
|
Requires-Dist: flake8 ==7.1.1 ; extra == 'test'
|
|
58
|
-
Requires-Dist: tclint ==0.4.
|
|
59
|
+
Requires-Dist: tclint ==0.4.2 ; extra == 'test'
|
|
59
60
|
Requires-Dist: codespell ==2.3.0 ; extra == 'test'
|
|
60
61
|
|
|
61
62
|

|