Hello all. Has anyone tried out hpretl/foss-asic-...
# ieee-sscs-dc-22
e
Hello all. Has anyone tried out hpretl/foss-asic-tools? I can pull the efabless version, but I'm getting an error message when I try to pull Harald's version. Thanks.
b
@Harald Pretl
h
@Eric see your DM. For all: we changed the name recently, the image is now called „hpretl/iic-osic-tools“.
Sorry for the inconvenience, it is admittedly a pretty late change.
👍 2
e
docker run -it -p 80:80 -p 5901:5901 --user $(id -u):$(id -g) -v $DESIGNS:/foss/designs hpretl/iic-osic-tools:x86_64 bash
1
Works for me now. Thanks!
👍 1
One correction. That fixed the "pull" issue, but there are some other changes. This works (but note that the documentation is not yet updated): docker run -d -p 80:80 -p 5901:5901 --user $(id -u):$(id -g) -v $DESIGNS:/foss/designs hpretl/iic-osic-tools:x86_64 Note -d rather than -it, and no 'bash' command at the end.
h
And please change the “:x86_64” to “:aarch64" if you are using an ARM-based CPU, like RaspberryPi or M1 Mac.
Later, when we have a proper multiarch build (WIP) the CPU architecture will be selected automatically.
😎 3