unihd-cag / skillbridge

A seamless python to Cadence Virtuoso Skill interface
https://unihd-cag.github.io/skillbridge/
GNU Lesser General Public License v3.0
181 stars 38 forks source link

Add support for tables and vectors #191

Closed nielsbuwen closed 2 years ago

nielsbuwen commented 2 years ago

Closes #190

Example:

ws = Workspace.open()

table = ws.make_table('MyTable', default=None)
# or table = ws.__.my_existing_table

print(table['x'])
table['x'] = 1
del table['x']

The RemoteTable basically behaves like a python dict