Skip to content

Instantly share code, notes, and snippets.

View SaumyaRaj188's full-sized avatar

Saumya Raj Singh SaumyaRaj188

View GitHub Profile
@SaumyaRaj188
SaumyaRaj188 / Open_Source_Analog_ASIC_Toolchain_Installation_Guide.md
Last active November 2, 2025 15:08
Open-Source Analog ASIC Toolchain Installation Guide

Open-Source Analog ASIC Toolchain Installation Guide

This guide provides step-by-step instructions for installing a full-stack, open-source ASIC design toolchain for analog and mixed-signal IC design. The complete flow includes schematic capture, simulation, layout editing, and layout-versus-schematic (LVS) verification, as well as the installation of process design kits (PDKs) such as SkyWater SKY130 and GlobalFoundries GF180MCU.

This toolchain provides an end-to-end environment for ASIC design and verification using only open-source tools.

๐Ÿ“‹ Table of Contents

  1. Prerequisites
@SaumyaRaj188
SaumyaRaj188 / linux-usb-file-copy-fix.md
Created November 5, 2023 06:46 — forked from 2E0PGS/linux-usb-file-copy-fix.md
Fix Ubuntu and other Linux slow/hanging file copying via USB.

If your running a x64 bit Ubuntu or other Linux and find USB transfers hang at the end apply this fix:

echo $((16*1024*1024)) > /proc/sys/vm/dirty_background_bytes
echo $((48*1024*1024)) > /proc/sys/vm/dirty_bytes

I suggest you edit your /etc/rc.local file to make this change persistant across reboots.

sudo nano /etc/rc.local