From 90c89633164c0b6a084b8a1cacc1c8196a1a1394 Mon Sep 17 00:00:00 2001 From: Nayiri K Date: Fri, 17 Jun 2022 10:18:33 -0700 Subject: [PATCH] openroad yaml file --- vlsi/example-openroad.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 vlsi/example-openroad.yml diff --git a/vlsi/example-openroad.yml b/vlsi/example-openroad.yml new file mode 100644 index 00000000..f87afdd8 --- /dev/null +++ b/vlsi/example-openroad.yml @@ -0,0 +1,21 @@ +# SRAM Compiler compiler options +vlsi.core.sram_generator_tool: "sram_compiler" +# You should specify a location for the SRAM generator in the tech plugin +vlsi.core.sram_generator_tool_path: [] +vlsi.core.sram_generator_tool_path_meta: "append" + +# Tool options. Replace with your tool plugin of choice. +# Yosys options +vlsi.core.synthesis_tool: "yosys" +vlsi.core.synthesis_tool_path: ["hammer/src/hammer-vlsi/synthesis"] +vlsi.core.synthesis_tool_path_meta: "append" +# Innovus options +vlsi.core.par_tool: "openroad" +vlsi.core.par_tool_path: ["hammer/src/hammer-vlsi/par"] +vlsi.core.par_tool_path_meta: "append" +# Magic options +vlsi.core.drc_tool: "magic" +vlsi.core.drc_tool_path: ["hammer/src/hammer-vlsi/drc"] +# Netgen options +vlsi.core.lvs_tool: "netgen" +vlsi.core.lvs_tool_path: ["hammer/src/hammer-vlsi/lvs"]