AnalogCoderPro
[TCAD 2026] AnalogCoder-Pro: Unifying Analog Circuit Generation and Optimization via Multi-modal LLMs
File Explorer
- Adder.py
- Amplifier.py
- BandPass.py
- BandStop.py
- Comparator.py
- CurrentMirror.py
- Differentiator.py
- HighPass.py
- Integrator.py
- Inverter.py
- LowPass.py
- Mixer.py
- Opamp.py
- Oscillator.py
- OscillatorFFT.py
- Schmitt.py
- Subtractor.py
- p1.py
- p10.py
- p10_waveform.png
- p11.py
- p11_waveform.png
- p12.py
- p12_waveform.png
- p13.py
- p13_waveform.png
- p14.py
- p15.py
- p16.py
- p17.py
- p18.py
- p19.py
- p19_waveform.png
- p2.py
- p20.py
- p21.py
- opamp.cpython-310.pyc
- opamp.py
- p22.py
- p22_waveform.png
- opamp.cpython-310.pyc
- opamp.py
- p23.py
- p23_waveform.png
- opamp.cpython-310.pyc
- opamp.py
- p24.py
- p24_waveform.png
- opamp.cpython-310.pyc
- opamp.py
- p25.py
- p25_waveform.png
- opamp.py
- p26.py
- opamp.py
- p27.py
- opamp.cpython-310.pyc
- opamp.py
- p28.py
- p28_waveform.png
- p3.py
- p4.py
- p5.py
- p6.py
- p7.py
- p8.py
- opamp.py
- p9.py
- p9_waveform.png
- .gitignore
- dc_sweep_template.py
- execution_error.md
- opamp.py
- optimize_template.md
- problem_set.tsv
- prompt_template.md
- prompt_template_comptex.md
- prompt_template_optimize.md
- README.md
- run.py
- simulation_error.md
- vlm_debug_prompt.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda activate
View Details ▼
conda activate
Activate a conda environment.
See also: `conda deactivate`.
conda activate myenv
Activate an existing environment named `myenv`:
conda activate {{path/to/myenv}}
Activate an existing environment located at custom path:
conda activate --stack myenv
Stack `myenv` environment on top of a previous environment making libraries/commands/variables from both accessible:
conda create
View Details ▼
conda create
Create new conda environments.
conda create {{[-y|--yes]}} {{[-n|--name]}} py39 python=3.9 "numpy>=1.11" scipy
Create a new environment named `py39`, install Python 3.9, NumPy v1.11 or above in it, and the latest stable version of SciPy. Say yes to all confirmations:
conda create {{[-n|--name]}} myenv --file {{file1.yml}} --file {{file2.yml}}
Create a new environment named `myenv` and install packages listed in files:
conda create {{[-p|--prefix]}} {{path/to/myenv}}
Create a new environment at a custom path (i.e. prefix):
conda install
View Details ▼
conda install
Install packages into an existing conda environment.
conda install {{package1 package2 ...}}
Install one or more package into the currently active conda environment:
conda install {{[-c|--channel]}} conda-forge {{package}}
Install a single package into the currently active conda environment using channel conda-forge:
conda install {{[-c|--channel]}} conda-forge --override-channels {{package}}
Install a single package into the currently active conda environment using channel conda-forge and ignoring other channels:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
