Product Documentation
Virtuoso Schematic Editor SKILL Functions Reference
Product Version IC23.1, November 2023

schSync

schSync( 
l_cvId 
)
=> t

Description

Synchronizes the schematic and Cadence database (CDB) data representations.

You must call this function when you use Cadence database access (CDBA) PI functions, such as dbCreateInst, to create a schematic cellview. However, you do not need to call this function when you use PI schematic functions.

Arguments

l_cvId

A list of the schematic cellview IDs (d_cvId) whose cellview data representations you want to synchronize with CDB data representations.

Value Returned

Always returns t.

Example

Uses dbCreateInst to add an instance of master to the cellview of cvId, and then calls schSync, which synchronizes the schematic data representation with the CDB data representation.

dbCreateInst( cvId master nil 0:0 "RO" )
schSync( list(cvId) )


Return to top
 ⠀
X