mirror of
https://git.code.sf.net/p/ngspice/ngspice
synced 2026-09-05 03:12:07 +02:00
running in parallel on a multi-core machine (12 min execution time on a i9 9900, ngspice compiled with gcc, debug mode enabled. Linux with Valgrind and Parallel are required.
6 lines
261 B
Bash
6 lines
261 B
Bash
#!/bin/bash
|
|
NGSPICE="ngspice -i "
|
|
VALGRIND="valgrind --leak-check=full --suppressions=/home/holger/Software/paranoia_parallel/ignore_shared_libs.supp"
|
|
cd examples/control_structs
|
|
$VALGRIND --log-file=../../s-param.vlog $NGSPICE -o ../../s-param.log s-param.cir
|