siliconcompiler 0.36.3__py3-none-any.whl → 0.36.5__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.
Files changed (122) hide show
  1. siliconcompiler/_metadata.py +1 -1
  2. siliconcompiler/apps/sc_install.py +23 -2
  3. siliconcompiler/apps/sc_issue.py +4 -0
  4. siliconcompiler/design.py +2 -2
  5. siliconcompiler/flows/dvflow.py +13 -0
  6. siliconcompiler/package/__init__.py +19 -14
  7. siliconcompiler/package/git.py +3 -2
  8. siliconcompiler/project.py +1 -1
  9. siliconcompiler/remote/client.py +9 -3
  10. siliconcompiler/report/dashboard/cli/board.py +1 -1
  11. siliconcompiler/scheduler/scheduler.py +22 -60
  12. siliconcompiler/scheduler/schedulernode.py +5 -5
  13. siliconcompiler/schema/baseschema.py +15 -6
  14. siliconcompiler/schema_support/cmdlineschema.py +3 -2
  15. siliconcompiler/schema_support/filesetschema.py +2 -2
  16. siliconcompiler/tool.py +10 -10
  17. siliconcompiler/tools/_common/cocotb/__init__.py +0 -0
  18. siliconcompiler/tools/_common/cocotb/cocotb_task.py +286 -0
  19. siliconcompiler/tools/builtin/wait.py +136 -0
  20. siliconcompiler/tools/icarus/cocotb_exec.py +53 -0
  21. siliconcompiler/tools/icarus/compile.py +47 -1
  22. siliconcompiler/tools/openroad/_apr.py +13 -0
  23. siliconcompiler/tools/openroad/scripts/apr/sc_write_data.tcl +9 -2
  24. siliconcompiler/tools/verilator/cocotb_compile.py +55 -0
  25. siliconcompiler/tools/verilator/cocotb_exec.py +52 -0
  26. siliconcompiler/tools/verilator/compile.py +12 -8
  27. siliconcompiler/tools/vpr/__init__.py +1 -1
  28. siliconcompiler/tools/yosys/scripts/sc_synth_asic.tcl +1 -1
  29. siliconcompiler/tools/yosys/syn_asic.py +3 -3
  30. siliconcompiler/toolscripts/_tools.json +5 -5
  31. siliconcompiler/toolscripts/rhel8/install-icarus.sh +2 -2
  32. siliconcompiler/toolscripts/rhel8/install-magic.sh +1 -1
  33. siliconcompiler/toolscripts/rhel8/install-netgen.sh +1 -1
  34. siliconcompiler/toolscripts/rhel8/install-surelog.sh +1 -1
  35. siliconcompiler/toolscripts/rhel8/install-sv2v.sh +1 -1
  36. siliconcompiler/toolscripts/rhel8/install-verilator.sh +2 -2
  37. siliconcompiler/toolscripts/rhel8/install-xyce.sh +3 -3
  38. siliconcompiler/toolscripts/rhel9/install-ghdl.sh +1 -1
  39. siliconcompiler/toolscripts/rhel9/install-gtkwave.sh +2 -2
  40. siliconcompiler/toolscripts/rhel9/install-icarus.sh +2 -2
  41. siliconcompiler/toolscripts/rhel9/install-magic.sh +1 -1
  42. siliconcompiler/toolscripts/rhel9/install-netgen.sh +1 -1
  43. siliconcompiler/toolscripts/rhel9/install-openroad.sh +1 -1
  44. siliconcompiler/toolscripts/rhel9/install-opensta.sh +5 -5
  45. siliconcompiler/toolscripts/rhel9/install-surelog.sh +1 -1
  46. siliconcompiler/toolscripts/rhel9/install-sv2v.sh +1 -1
  47. siliconcompiler/toolscripts/rhel9/install-verilator.sh +2 -2
  48. siliconcompiler/toolscripts/rhel9/install-vpr.sh +1 -1
  49. siliconcompiler/toolscripts/rhel9/install-wildebeest.sh +1 -1
  50. siliconcompiler/toolscripts/rhel9/install-xyce.sh +3 -3
  51. siliconcompiler/toolscripts/rhel9/install-yosys-moosic.sh +1 -1
  52. siliconcompiler/toolscripts/rhel9/install-yosys-slang.sh +1 -1
  53. siliconcompiler/toolscripts/rhel9/install-yosys.sh +1 -1
  54. siliconcompiler/toolscripts/ubuntu20/install-bambu.sh +1 -1
  55. siliconcompiler/toolscripts/ubuntu20/install-bluespec.sh +1 -1
  56. siliconcompiler/toolscripts/ubuntu20/install-ghdl.sh +1 -1
  57. siliconcompiler/toolscripts/ubuntu20/install-gtkwave.sh +1 -1
  58. siliconcompiler/toolscripts/ubuntu20/install-icarus.sh +1 -1
  59. siliconcompiler/toolscripts/ubuntu20/install-icepack.sh +1 -1
  60. siliconcompiler/toolscripts/ubuntu20/install-magic.sh +1 -1
  61. siliconcompiler/toolscripts/ubuntu20/install-netgen.sh +1 -1
  62. siliconcompiler/toolscripts/ubuntu20/install-openroad.sh +1 -1
  63. siliconcompiler/toolscripts/ubuntu20/install-opensta.sh +5 -5
  64. siliconcompiler/toolscripts/ubuntu20/install-slurm.sh +1 -1
  65. siliconcompiler/toolscripts/ubuntu20/install-surelog.sh +1 -1
  66. siliconcompiler/toolscripts/ubuntu20/install-sv2v.sh +1 -1
  67. siliconcompiler/toolscripts/ubuntu20/install-verilator.sh +1 -1
  68. siliconcompiler/toolscripts/ubuntu20/install-xyce.sh +3 -3
  69. siliconcompiler/toolscripts/ubuntu22/install-bambu.sh +1 -1
  70. siliconcompiler/toolscripts/ubuntu22/install-bluespec.sh +1 -1
  71. siliconcompiler/toolscripts/ubuntu22/install-ghdl.sh +1 -1
  72. siliconcompiler/toolscripts/ubuntu22/install-gtkwave.sh +1 -1
  73. siliconcompiler/toolscripts/ubuntu22/install-icarus.sh +1 -1
  74. siliconcompiler/toolscripts/ubuntu22/install-icepack.sh +1 -1
  75. siliconcompiler/toolscripts/ubuntu22/install-keplerformal.sh +1 -1
  76. siliconcompiler/toolscripts/ubuntu22/install-magic.sh +1 -1
  77. siliconcompiler/toolscripts/ubuntu22/install-netgen.sh +1 -1
  78. siliconcompiler/toolscripts/ubuntu22/install-nextpnr.sh +1 -1
  79. siliconcompiler/toolscripts/ubuntu22/install-openroad.sh +1 -1
  80. siliconcompiler/toolscripts/ubuntu22/install-opensta.sh +5 -5
  81. siliconcompiler/toolscripts/ubuntu22/install-slurm.sh +1 -1
  82. siliconcompiler/toolscripts/ubuntu22/install-surelog.sh +1 -1
  83. siliconcompiler/toolscripts/ubuntu22/install-surfer.sh +1 -1
  84. siliconcompiler/toolscripts/ubuntu22/install-sv2v.sh +1 -1
  85. siliconcompiler/toolscripts/ubuntu22/install-verilator.sh +1 -1
  86. siliconcompiler/toolscripts/ubuntu22/install-vpr.sh +1 -1
  87. siliconcompiler/toolscripts/ubuntu22/install-wildebeest.sh +1 -1
  88. siliconcompiler/toolscripts/ubuntu22/install-xyce.sh +3 -3
  89. siliconcompiler/toolscripts/ubuntu22/install-yosys-moosic.sh +1 -1
  90. siliconcompiler/toolscripts/ubuntu22/install-yosys-slang.sh +1 -1
  91. siliconcompiler/toolscripts/ubuntu22/install-yosys.sh +1 -1
  92. siliconcompiler/toolscripts/ubuntu24/install-bambu.sh +1 -1
  93. siliconcompiler/toolscripts/ubuntu24/install-bluespec.sh +1 -1
  94. siliconcompiler/toolscripts/ubuntu24/install-ghdl.sh +1 -1
  95. siliconcompiler/toolscripts/ubuntu24/install-gtkwave.sh +1 -1
  96. siliconcompiler/toolscripts/ubuntu24/install-icarus.sh +1 -1
  97. siliconcompiler/toolscripts/ubuntu24/install-icepack.sh +1 -1
  98. siliconcompiler/toolscripts/ubuntu24/install-keplerformal.sh +1 -1
  99. siliconcompiler/toolscripts/ubuntu24/install-magic.sh +1 -1
  100. siliconcompiler/toolscripts/ubuntu24/install-netgen.sh +1 -1
  101. siliconcompiler/toolscripts/ubuntu24/install-nextpnr.sh +1 -1
  102. siliconcompiler/toolscripts/ubuntu24/install-openroad.sh +1 -1
  103. siliconcompiler/toolscripts/ubuntu24/install-opensta.sh +5 -5
  104. siliconcompiler/toolscripts/ubuntu24/install-slurm.sh +1 -1
  105. siliconcompiler/toolscripts/ubuntu24/install-surelog.sh +1 -1
  106. siliconcompiler/toolscripts/ubuntu24/install-surfer.sh +1 -1
  107. siliconcompiler/toolscripts/ubuntu24/install-sv2v.sh +1 -1
  108. siliconcompiler/toolscripts/ubuntu24/install-verilator.sh +1 -1
  109. siliconcompiler/toolscripts/ubuntu24/install-vpr.sh +1 -1
  110. siliconcompiler/toolscripts/ubuntu24/install-wildebeest.sh +1 -1
  111. siliconcompiler/toolscripts/ubuntu24/install-xyce.sh +3 -3
  112. siliconcompiler/toolscripts/ubuntu24/install-yosys-moosic.sh +1 -1
  113. siliconcompiler/toolscripts/ubuntu24/install-yosys-slang.sh +1 -1
  114. siliconcompiler/toolscripts/ubuntu24/install-yosys.sh +1 -1
  115. siliconcompiler/utils/curation.py +1 -1
  116. siliconcompiler/utils/settings.py +1 -1
  117. {siliconcompiler-0.36.3.dist-info → siliconcompiler-0.36.5.dist-info}/METADATA +3 -1
  118. {siliconcompiler-0.36.3.dist-info → siliconcompiler-0.36.5.dist-info}/RECORD +122 -117
  119. {siliconcompiler-0.36.3.dist-info → siliconcompiler-0.36.5.dist-info}/WHEEL +1 -1
  120. {siliconcompiler-0.36.3.dist-info → siliconcompiler-0.36.5.dist-info}/entry_points.txt +0 -0
  121. {siliconcompiler-0.36.3.dist-info → siliconcompiler-0.36.5.dist-info}/licenses/LICENSE +0 -0
  122. {siliconcompiler-0.36.3.dist-info → siliconcompiler-0.36.5.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,52 @@
1
+ from typing import Optional, Union
2
+
3
+ from siliconcompiler.tools._common.cocotb.cocotb_task import CocotbTask
4
+ from siliconcompiler.tools.execute.exec_input import ExecInputTask
5
+
6
+
7
+ class CocotbExecTask(CocotbTask, ExecInputTask):
8
+
9
+ def __init__(self):
10
+ super().__init__()
11
+
12
+ self.add_parameter("trace", "bool",
13
+ 'Enable waveform tracing. The simulation must have been '
14
+ 'compiled with trace support enabled.',
15
+ defvalue=False)
16
+
17
+ self.add_parameter("trace_type", "<vcd,fst>",
18
+ 'Specifies type of wave file to create when [trace] is set.',
19
+ defvalue="vcd")
20
+
21
+ def set_cocotb_trace(
22
+ self,
23
+ enable: bool = True,
24
+ trace_type: str = "vcd",
25
+ step: Optional[str] = None,
26
+ index: Optional[Union[str, int]] = None
27
+ ):
28
+ self.set("var", "trace", enable, step=step, index=index)
29
+ self.set("var", "trace_type", trace_type, step=step, index=index)
30
+
31
+ def tool(self):
32
+ return "verilator"
33
+
34
+ def setup(self):
35
+ super().setup()
36
+
37
+ if self.get("var", "trace"):
38
+ self.add_required_key("var", "trace_type")
39
+
40
+ def runtime_options(self):
41
+ options = super().runtime_options()
42
+
43
+ # Add trace options if tracing is enabled
44
+ if self.get("var", "trace"):
45
+ options.append("--trace")
46
+
47
+ ext = self.get("var", "trace_type")
48
+
49
+ trace_file = f"reports/{self.design_topmodule}.{ext}"
50
+ options.extend(["--trace-file", trace_file])
51
+
52
+ return options
@@ -158,6 +158,17 @@ class CompileTask(VerilatorTask):
158
158
  def task(self):
159
159
  return "compile"
160
160
 
161
+ def _setup_c_file_requirement(self):
162
+ """Set up the C file requirement. Override in subclasses to customize."""
163
+ added_key = False
164
+ for lib, fileset in self.project.get_filesets():
165
+ if lib.has_file(fileset=fileset, filetype="c"):
166
+ self.add_required_key(lib, "fileset", fileset, "file", "c")
167
+ added_key = True
168
+ if not added_key:
169
+ self.add_required_key(self.project.design, "fileset",
170
+ self.project.get("option", "fileset")[0], "file", "c")
171
+
161
172
  def setup(self):
162
173
  super().setup()
163
174
  self.set_threads()
@@ -170,14 +181,7 @@ class CompileTask(VerilatorTask):
170
181
  self.add_required_key("var", "trace_type")
171
182
  self.add_required_key("var", "initialize_random")
172
183
 
173
- added_key = False
174
- for lib, fileset in self.project.get_filesets():
175
- if lib.has_file(fileset=fileset, filetype="c"):
176
- self.add_required_key(lib, "fileset", fileset, "file", "c")
177
- added_key = True
178
- if not added_key:
179
- self.add_required_key(self.project.design, "fileset",
180
- self.project.get("option", "fileset")[0], "file", "c")
184
+ self._setup_c_file_requirement()
181
185
 
182
186
  if self.get("var", "cincludes"):
183
187
  self.add_required_key("var", "cincludes")
@@ -257,7 +257,7 @@ class VPRTask(Task):
257
257
  super().setup()
258
258
 
259
259
  self.set_exe("vpr", vswitch="--version")
260
- self.add_version(">=v8.0.0-12677")
260
+ self.add_version(">=v8.0.0-15021")
261
261
 
262
262
  self.add_regex("warnings", "^Warning")
263
263
  self.add_regex("errors", "^Error")
@@ -461,7 +461,7 @@ foreach group "dontuse hold clkbuf clkgate clklogic" {
461
461
  }
462
462
  }
463
463
 
464
- yosys abc {*}$abc_args {*}$abc_dont_use
464
+ yosys abc -showtmp {*}$abc_args {*}$abc_dont_use
465
465
 
466
466
  ########################################################
467
467
  # Cleanup
@@ -241,9 +241,9 @@ class ASICSynthesis(_ASICTask, YosysTask):
241
241
  self.add_parameter(
242
242
  "synth_extra_map",
243
243
  "[file]",
244
- "Files used in synthesis to perform additional techmapping",
245
- "techmaps/lcu_kogge_stone.v",
246
- dataroot="yosys-techmaps")
244
+ "Files used in synthesis to perform additional techmapping")
245
+ # "techmaps/lcu_kogge_stone.v",
246
+ # dataroot="yosys-techmaps")
247
247
 
248
248
  def __init_hierarchy_parameter(self):
249
249
  self.add_parameter(
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openroad": {
3
3
  "git-url": "https://github.com/The-OpenROAD-Project/OpenROAD.git",
4
- "git-commit": "11bd3ead9d12211b72706ac7c8653234cc136b8b",
4
+ "git-commit": "49a31384924a2c400ce27da80e270917ffddc2bb",
5
5
  "docker-cmds": [
6
6
  "# Remove OR-Tools files",
7
7
  "RUN rm -f $SC_PREFIX/Makefile $SC_PREFIX/README.md",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "opensta": {
19
19
  "git-url": "https://github.com/parallaxsw/OpenSTA.git",
20
- "git-commit": "dda887bc6e5160fd7c15489cc5845eaff72b5252",
20
+ "git-commit": "0c6c3d3d35ca2c1a103702652ddb9ddba54347a8",
21
21
  "auto-update": true
22
22
  },
23
23
  "netgen": {
@@ -76,7 +76,7 @@
76
76
  },
77
77
  "vpr": {
78
78
  "git-url": "https://github.com/verilog-to-routing/vtr-verilog-to-routing.git",
79
- "git-commit": "7f476dbf780b845d07a7642366552e799df02c93",
79
+ "git-commit": "fe77ace273b3f0558763e0e91d409b2d13344eff",
80
80
  "auto-update": false
81
81
  },
82
82
  "icepack": {
@@ -145,7 +145,7 @@
145
145
  },
146
146
  "yosys-slang": {
147
147
  "git-url": "https://github.com/povik/yosys-slang.git",
148
- "git-commit": "4e1ad7c11e23cffe131aa5c478083f1d99f0c0be",
148
+ "git-commit": "05dc50ce6728f020835273203b8d2838bf45254e",
149
149
  "docker-depends": "yosys",
150
150
  "auto-update": true
151
151
  },
@@ -171,4 +171,4 @@
171
171
  "git-commit": "d647673f3b3960256069a79e8d92d36a3b89d9a4",
172
172
  "auto-update": false
173
173
  }
174
- }
174
+ }
@@ -27,7 +27,7 @@ wget http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz
27
27
  tar xvf gperf-3.1.tar.gz
28
28
  cd gperf-3.1
29
29
  ./configure $args
30
- make -j$(nproc)
30
+ make -j${NPROC:-$(nproc)}
31
31
  $SUDO_INSTALL make install
32
32
  cd ..
33
33
 
@@ -42,7 +42,7 @@ git checkout $(python3 ${src_path}/_tools.py --tool icarus --field git-commit)
42
42
 
43
43
  sh autoconf.sh
44
44
  ./configure $args
45
- make -j$(nproc)
45
+ make -j${NPROC:-$(nproc)}
46
46
  $SUDO_INSTALL make install
47
47
 
48
48
  cd -
@@ -28,5 +28,5 @@ if [ ! -z ${PREFIX} ]; then
28
28
  fi
29
29
 
30
30
  LD_FLAGS=-shared ./configure $args
31
- make -j$(nproc)
31
+ make -j${NPROC:-$(nproc)}
32
32
  $SUDO_INSTALL make install
@@ -28,5 +28,5 @@ if [ ! -z ${PREFIX} ]; then
28
28
  fi
29
29
 
30
30
  ./configure $args
31
- make -j$(nproc)
31
+ make -j${NPROC:-$(nproc)}
32
32
  $SUDO_INSTALL make install
@@ -26,7 +26,7 @@ cd surelog
26
26
  git checkout $(python3 ${src_path}/_tools.py --tool surelog --field git-commit)
27
27
  git submodule update --init --recursive
28
28
 
29
- scl run gcc-toolset-12 "LDFLAGS=\"-lrt\" make -j$(nproc)"
29
+ scl run gcc-toolset-12 "LDFLAGS=\"-lrt\" make -j${NPROC:-$(nproc)}"
30
30
 
31
31
  USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
32
32
  if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
@@ -31,7 +31,7 @@ git clone $(python3 ${src_path}/_tools.py --tool sv2v --field git-url) sv2v
31
31
  cd sv2v
32
32
  git checkout $(python3 ${src_path}/_tools.py --tool sv2v --field git-commit)
33
33
 
34
- make -j$(nproc)
34
+ make -j${NPROC:-$(nproc)}
35
35
 
36
36
  if [ ! -z ${PREFIX} ]; then
37
37
  $SUDO_INSTALL mkdir -p ${PREFIX}/bin/
@@ -28,7 +28,7 @@ tar xvf help2man-1.43.3.tar.gz
28
28
  cd help2man-1.43.3
29
29
 
30
30
  ./configure $args
31
- make -j$(nproc)
31
+ make -j${NPROC:-$(nproc)}
32
32
  $SUDO_INSTALL make install
33
33
 
34
34
  cd ..
@@ -42,7 +42,7 @@ git checkout $(python3 ${src_path}/_tools.py --tool verilator --field git-commit
42
42
  autoconf
43
43
 
44
44
  ./configure $args
45
- make -j$(nproc)
45
+ make -j${NPROC:-$(nproc)}
46
46
  $SUDO_INSTALL make install
47
47
 
48
48
  cd -
@@ -51,7 +51,7 @@ cmake \
51
51
  -D TPL_AMD_INCLUDE_DIRS="/usr/include/suitesparse" \
52
52
  -C "../cmake/trilinos/trilinos-base.cmake" \
53
53
  ..
54
- cmake --build . -j$(nproc)
54
+ cmake --build . -j${NPROC:-$(nproc)}
55
55
  $SUDO_INSTALL make install
56
56
  cd ../..
57
57
 
@@ -64,7 +64,7 @@ cmake \
64
64
  -D Trilinos_ROOT=$PREFIX/trilinos \
65
65
  -D BUILD_SHARED_LIBS=ON \
66
66
  ..
67
- cmake --build . -j$(nproc)
68
- cmake --build . -j$(nproc) --target xycecinterface
67
+ cmake --build . -j${NPROC:-$(nproc)}
68
+ cmake --build . -j${NPROC:-$(nproc)} --target xycecinterface
69
69
  $SUDO_INSTALL make install
70
70
  cd -
@@ -28,6 +28,6 @@ if [ ! -z ${PREFIX} ]; then
28
28
  fi
29
29
 
30
30
  ./configure $args
31
- make -j$(nproc)
31
+ make -j${NPROC:-$(nproc)}
32
32
  $SUDO_INSTALL make install
33
33
  cd -
@@ -32,7 +32,7 @@ wget http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz
32
32
  tar xvf gperf-3.1.tar.gz
33
33
  cd gperf-3.1
34
34
  ./configure $args
35
- make -j$(nproc)
35
+ make -j${NPROC:-$(nproc)}
36
36
  $SUDO_INSTALL make install
37
37
  cd ..
38
38
 
@@ -44,5 +44,5 @@ cd gtkwave3-gtk3
44
44
 
45
45
  ./autogen.sh
46
46
  LDFLAGS="-ltcl -ltk" ./configure --enable-gtk3 $args
47
- make -j$(nproc)
47
+ make -j${NPROC:-$(nproc)}
48
48
  $SUDO_INSTALL make install
@@ -27,7 +27,7 @@ wget http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz
27
27
  tar xvf gperf-3.1.tar.gz
28
28
  cd gperf-3.1
29
29
  ./configure $args
30
- make -j$(nproc)
30
+ make -j${NPROC:-$(nproc)}
31
31
  $SUDO_INSTALL make install
32
32
  cd ..
33
33
 
@@ -42,7 +42,7 @@ git checkout $(python3 ${src_path}/_tools.py --tool icarus --field git-commit)
42
42
 
43
43
  sh autoconf.sh
44
44
  ./configure $args
45
- make -j$(nproc)
45
+ make -j${NPROC:-$(nproc)}
46
46
  $SUDO_INSTALL make install
47
47
 
48
48
  cd -
@@ -28,5 +28,5 @@ if [ ! -z ${PREFIX} ]; then
28
28
  fi
29
29
 
30
30
  LD_FLAGS=-shared ./configure $args
31
- make -j$(nproc)
31
+ make -j${NPROC:-$(nproc)}
32
32
  $SUDO_INSTALL make install
@@ -28,5 +28,5 @@ if [ ! -z ${PREFIX} ]; then
28
28
  fi
29
29
 
30
30
  ./configure $args
31
- make -j$(nproc)
31
+ make -j${NPROC:-$(nproc)}
32
32
  $SUDO_INSTALL make install
@@ -37,7 +37,7 @@ if [ ! -z ${PREFIX} ]; then
37
37
  cmake_args="$cmake_args -DCMAKE_INSTALL_PREFIX=$PREFIX"
38
38
  fi
39
39
 
40
- ./etc/Build.sh -cmake="$cmake_args"
40
+ ./etc/Build.sh -cmake="$cmake_args" -threads=${NPROC:-$(nproc)}
41
41
 
42
42
  cd build
43
43
  $SUDO_INSTALL make install
@@ -40,7 +40,7 @@ cd eigen
40
40
  mkdir build
41
41
  cd build
42
42
  cmake $cmake_args ..
43
- make -j$(nproc)
43
+ make -j${NPROC:-$(nproc)}
44
44
  $SUDO_INSTALL make install
45
45
 
46
46
  cd ../../..
@@ -51,7 +51,7 @@ git clone --depth=1 -b 3.0.0 https://github.com/The-OpenROAD-Project/cudd.git
51
51
  cd cudd
52
52
  autoreconf
53
53
  ./configure $config_prefix
54
- make -j$(nproc)
54
+ make -j${NPROC:-$(nproc)}
55
55
  $SUDO_INSTALL make install
56
56
 
57
57
  cd ../..
@@ -65,8 +65,8 @@ wget https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.42/pcre2-1
65
65
 
66
66
  ./autogen.sh
67
67
  ./configure $config_prefix
68
- make -j$(nproc)
69
- $SUDO_INSTALL make -j$(nproc) install
68
+ make -j${NPROC:-$(nproc)}
69
+ $SUDO_INSTALL make -j${NPROC:-$(nproc)} install
70
70
 
71
71
  cd ../..
72
72
  # opensta
@@ -78,7 +78,7 @@ git submodule update --init --recursive
78
78
  mkdir -p build
79
79
  cd build
80
80
  cmake .. $cmake_args
81
- make -j$(nproc)
81
+ make -j${NPROC:-$(nproc)}
82
82
  $SUDO_INSTALL make install
83
83
 
84
84
  cd -
@@ -25,7 +25,7 @@ cd surelog
25
25
  git checkout $(python3 ${src_path}/_tools.py --tool surelog --field git-commit)
26
26
  git submodule update --init --recursive
27
27
 
28
- scl run gcc-toolset-12 "LDFLAGS=\"-lrt\" make -j$(nproc)"
28
+ scl run gcc-toolset-12 "LDFLAGS=\"-lrt\" make -j${NPROC:-$(nproc)}"
29
29
 
30
30
  USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
31
31
  if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
@@ -31,7 +31,7 @@ git clone $(python3 ${src_path}/_tools.py --tool sv2v --field git-url) sv2v
31
31
  cd sv2v
32
32
  git checkout $(python3 ${src_path}/_tools.py --tool sv2v --field git-commit)
33
33
 
34
- make -j$(nproc)
34
+ make -j${NPROC:-$(nproc)}
35
35
 
36
36
  if [ ! -z ${PREFIX} ]; then
37
37
  $SUDO_INSTALL mkdir -p ${PREFIX}/bin/
@@ -28,7 +28,7 @@ tar xvf help2man-1.43.3.tar.gz
28
28
  cd help2man-1.43.3
29
29
 
30
30
  ./configure $args
31
- make -j$(nproc)
31
+ make -j${NPROC:-$(nproc)}
32
32
  $SUDO_INSTALL make install
33
33
 
34
34
  cd ..
@@ -42,7 +42,7 @@ git checkout $(python3 ${src_path}/_tools.py --tool verilator --field git-commit
42
42
  autoconf
43
43
 
44
44
  ./configure $args
45
- make -j$(nproc)
45
+ make -j${NPROC:-$(nproc)}
46
46
  $SUDO_INSTALL make install
47
47
 
48
48
  cd -
@@ -31,6 +31,6 @@ if [ ! -z ${PREFIX} ]; then
31
31
  args="-DCMAKE_INSTALL_PREFIX=$PREFIX"
32
32
  fi
33
33
 
34
- make CMAKE_PARAMS="$args -DWITH_PARMYS=OFF -DWITH_ABC=OFF -DSLANG_SYSTEMVERILOG=OFF" -j$(nproc)
34
+ make CMAKE_PARAMS="$args -DWITH_PARMYS=OFF -DWITH_ABC=OFF -DSLANG_SYSTEMVERILOG=OFF" -j${NPROC:-$(nproc)}
35
35
  cd build
36
36
  $SUDO_INSTALL make install
@@ -19,7 +19,7 @@ cd wildebeest
19
19
  git checkout $(python3 ${src_path}/_tools.py --tool wildebeest --field git-commit)
20
20
 
21
21
  cmake -S . -B build
22
- cmake --build build
22
+ cmake --build build -j${NPROC:-$(nproc)}
23
23
 
24
24
  USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
25
25
  if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
@@ -51,7 +51,7 @@ cmake \
51
51
  -D TPL_AMD_INCLUDE_DIRS="/usr/include/suitesparse" \
52
52
  -C "../cmake/trilinos/trilinos-base.cmake" \
53
53
  ..
54
- cmake --build . -j$(nproc)
54
+ cmake --build . -j${NPROC:-$(nproc)}
55
55
  $SUDO_INSTALL make install
56
56
  cd ../..
57
57
 
@@ -64,7 +64,7 @@ cmake \
64
64
  -D Trilinos_ROOT=$PREFIX/trilinos \
65
65
  -D BUILD_SHARED_LIBS=ON \
66
66
  ..
67
- cmake --build . -j$(nproc)
68
- cmake --build . -j$(nproc) --target xycecinterface
67
+ cmake --build . -j${NPROC:-$(nproc)}
68
+ cmake --build . -j${NPROC:-$(nproc)} --target xycecinterface
69
69
  $SUDO_INSTALL make install
70
70
  cd -
@@ -21,6 +21,6 @@ git clone $(python3 ${src_path}/_tools.py --tool yosys-moosic --field git-url) y
21
21
  cd yosys-moosic
22
22
  git checkout $(python3 ${src_path}/_tools.py --tool yosys-moosic --field git-commit)
23
23
 
24
- make -j$(nproc)
24
+ make -j${NPROC:-$(nproc)}
25
25
  $SUDO_INSTALL make install
26
26
  cd -
@@ -19,7 +19,7 @@ cd yosys-slang
19
19
  git checkout $(python3 ${src_path}/_tools.py --tool yosys-slang --field git-commit)
20
20
  git submodule update --init --recursive
21
21
 
22
- make -j$(nproc)
22
+ make -j${NPROC:-$(nproc)}
23
23
 
24
24
  USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
25
25
  if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
@@ -27,6 +27,6 @@ cd yosys
27
27
  git checkout $(python3 ${src_path}/_tools.py --tool yosys --field git-commit)
28
28
  git submodule update --init --recursive
29
29
 
30
- make -j$(nproc) PREFIX="$PREFIX"
30
+ make -j${NPROC:-$(nproc)} PREFIX="$PREFIX"
31
31
  $SUDO_INSTALL make install PREFIX="$PREFIX"
32
32
  cd -
@@ -51,7 +51,7 @@ mkdir obj
51
51
  cd obj
52
52
 
53
53
  ../configure --enable-release --disable-flopoco --with-opt-level=2 $args
54
- make -j$(nproc)
54
+ make -j${NPROC:-$(nproc)}
55
55
  $SUDO_INSTALL make install
56
56
 
57
57
  cd -
@@ -28,7 +28,7 @@ cd bluespec
28
28
  git checkout $(python3 ${src_path}/_tools.py --tool bluespec --field git-commit)
29
29
  git submodule update --init --recursive
30
30
 
31
- make -j$(nproc) install-src
31
+ make -j${NPROC:-$(nproc)} install-src
32
32
 
33
33
  if [ -z ${PREFIX} ]; then
34
34
  # install
@@ -31,6 +31,6 @@ if [ ! -z ${PREFIX} ]; then
31
31
  fi
32
32
 
33
33
  ./configure $args
34
- make -j$(nproc)
34
+ make -j${NPROC:-$(nproc)}
35
35
  $SUDO_INSTALL make install
36
36
  cd -
@@ -35,5 +35,5 @@ cd gtkwave3-gtk3
35
35
 
36
36
  ./autogen.sh
37
37
  ./configure --enable-gtk3 $args
38
- make -j$(nproc)
38
+ make -j${NPROC:-$(nproc)}
39
39
  $SUDO_INSTALL make install
@@ -32,5 +32,5 @@ fi
32
32
 
33
33
  sh autoconf.sh
34
34
  ./configure $args
35
- make -j$(nproc)
35
+ make -j${NPROC:-$(nproc)}
36
36
  $SUDO_INSTALL make install
@@ -28,6 +28,6 @@ git clone $(python3 ${src_path}/_tools.py --tool icepack --field git-url) icepac
28
28
  cd icepack
29
29
  git checkout $(python3 ${src_path}/_tools.py --tool icepack --field git-commit)
30
30
 
31
- make -j$(nproc)
31
+ make -j${NPROC:-$(nproc)}
32
32
  $SUDO_INSTALL make install PREFIX="$PREFIX"
33
33
  cd -
@@ -31,5 +31,5 @@ if [ ! -z ${PREFIX} ]; then
31
31
  fi
32
32
 
33
33
  LD_FLAGS=-shared ./configure $args
34
- make -j$(nproc)
34
+ make -j${NPROC:-$(nproc)}
35
35
  $SUDO_INSTALL make install
@@ -31,5 +31,5 @@ if [ ! -z ${PREFIX} ]; then
31
31
  fi
32
32
 
33
33
  ./configure $args
34
- make -j$(nproc)
34
+ make -j${NPROC:-$(nproc)}
35
35
  $SUDO_INSTALL make install
@@ -36,7 +36,7 @@ if [ ! -z ${PREFIX} ]; then
36
36
  cmake_args="$cmake_args -DCMAKE_INSTALL_PREFIX=$PREFIX"
37
37
  fi
38
38
 
39
- ./etc/Build.sh -cmake="$cmake_args"
39
+ ./etc/Build.sh -cmake="$cmake_args" -threads=${NPROC:-$(nproc)}
40
40
 
41
41
  cd build
42
42
  $SUDO_INSTALL make install
@@ -37,7 +37,7 @@ cd eigen
37
37
  mkdir build
38
38
  cd build
39
39
  cmake $cmake_args ..
40
- make -j$(nproc)
40
+ make -j${NPROC:-$(nproc)}
41
41
  $SUDO_INSTALL make install
42
42
 
43
43
  cd ../../..
@@ -48,7 +48,7 @@ git clone --depth=1 -b 3.0.0 https://github.com/The-OpenROAD-Project/cudd.git
48
48
  cd cudd
49
49
  autoreconf
50
50
  ./configure $config_prefix
51
- make -j$(nproc)
51
+ make -j${NPROC:-$(nproc)}
52
52
  $SUDO_INSTALL make install
53
53
 
54
54
  cd ../..
@@ -62,8 +62,8 @@ wget https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.42/pcre2-1
62
62
 
63
63
  ./autogen.sh
64
64
  ./configure $config_prefix
65
- make -j$(nproc)
66
- $SUDO_INSTALL make -j$(nproc) install
65
+ make -j${NPROC:-$(nproc)}
66
+ $SUDO_INSTALL make -j${NPROC:-$(nproc)} install
67
67
 
68
68
  cd ../..
69
69
  # opensta
@@ -75,7 +75,7 @@ git submodule update --init --recursive
75
75
  mkdir -p build
76
76
  cd build
77
77
  cmake .. $cmake_args
78
- make -j$(nproc)
78
+ make -j${NPROC:-$(nproc)}
79
79
  $SUDO_INSTALL make install
80
80
 
81
81
  cd -
@@ -38,6 +38,6 @@ fi
38
38
 
39
39
  ./configure $cfg_args
40
40
 
41
- make -j$(nproc)
41
+ make -j${NPROC:-$(nproc)}
42
42
 
43
43
  $SUDO_INSTALL make install
@@ -28,7 +28,7 @@ cd surelog
28
28
  git checkout $(python3 ${src_path}/_tools.py --tool surelog --field git-commit)
29
29
  git submodule update --init --recursive
30
30
 
31
- make -j$(nproc)
31
+ make -j${NPROC:-$(nproc)}
32
32
 
33
33
  USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
34
34
  if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
@@ -31,7 +31,7 @@ git clone $(python3 ${src_path}/_tools.py --tool sv2v --field git-url) sv2v
31
31
  cd sv2v
32
32
  git checkout $(python3 ${src_path}/_tools.py --tool sv2v --field git-commit)
33
33
 
34
- make -j$(nproc)
34
+ make -j${NPROC:-$(nproc)}
35
35
 
36
36
  if [ ! -z ${PREFIX} ]; then
37
37
  $SUDO_INSTALL mkdir -p ${PREFIX}/bin/
@@ -39,7 +39,7 @@ if [ ! -z ${PREFIX} ]; then
39
39
  fi
40
40
 
41
41
  ./configure $args
42
- make -j$(nproc)
42
+ make -j${NPROC:-$(nproc)}
43
43
  $SUDO_INSTALL make install
44
44
 
45
45
  cd -
@@ -54,7 +54,7 @@ cmake \
54
54
  -D TPL_AMD_INCLUDE_DIRS="/usr/include/suitesparse" \
55
55
  -C ../cmake/trilinos/trilinos-base.cmake \
56
56
  ../../trilinos
57
- cmake --build . -j$(nproc)
57
+ cmake --build . -j${NPROC:-$(nproc)}
58
58
  $SUDO_INSTALL make install
59
59
 
60
60
  cd ..
@@ -69,6 +69,6 @@ cmake \
69
69
  -D BUILD_SHARED_LIBS=ON \
70
70
  ..
71
71
 
72
- cmake --build . -j$(nproc)
73
- cmake --build . -j$(nproc) --target xycecinterface
72
+ cmake --build . -j${NPROC:-$(nproc)}
73
+ cmake --build . -j${NPROC:-$(nproc)} --target xycecinterface
74
74
  $SUDO_INSTALL make install