Skip to main content

A python SDK for running simulation and reading data from Ocean Cadence

Project description

PyCadence

A Python wrapper for running Cadence simulations

Pre-requisites

  • OS: Linux/Unix based OS

  • Python 3.6 or higher

  • IC615 or higher (Cadence Virtuoso) to be installed on the device with Ocean Spectre enabled

  • tmux to be installed on the device

    To install tmux on Ubuntu/Debian based systems, run the following command

    sudo apt-get install tmux
    

    To install tmux on RedHat/CentOS based systems, run the following command

    sudo yum install tmux
    

Installation

  1. Install PyCadence using pip pip install pycadence

Add the --user option if you don't want to install it systemwide.

Usage

  1. Make sure to have a template init.ocn file ready
  2. In the ocn file placeholder values must be marked as {{value}} as shown in the sample init.ocn file placed in the sample folder
  3. Go to the directory where the init.ocn file is placed and enable the Cadence environment using the following shell command
    csh
    source /home/install/cshrc # Path to the cshrc file in the Cadence installation directory

Next, create a new tmux session using the following shell command

tmux new-session -s <session name>
  1. Install and enable ocean terminal using the following shell commands
ocean

Now, The terminal can be detached or left running in the background. To detach the terminal, press Ctrl+b and then press d.

  1. Now, create a python script and use the following code to run the simulation
from pycadence.pycadence import Connector
x = [1,2,3,4,5] # List of values to be substituted in the template .ocn file
default = [1,2,3,4,5] # List of default values to be substituted in the template in case no value is provided
p=Connector(screen_name=<session name>)
p.simulate(x, default,"init.ocn","output.ocn","output.txt")
  1. The result of simulation will be stored output.txt file and the output.ocn file will be the modified template file with the values substituted.
  2. The simulate function also has an argument called read_output which takes a function as an argument. This function will be called after the simulation is complete and the output.txt file is generated. The function should take the output.txt file as an argument and return a Iterable of the values parsed from the output.txt file. The following code demonstrates how to use the read_output argument.
from pycadence.pycadence import Connector
import numpy as np

def read_output(output_log_path):
    with open(output_log_path, 'r+') as fp:
        # read an store all lines into list
        lines = fp.readlines()
        data=[]
        for line in lines[2:]:
            try:
                temp = line.strip().split(" ")
                # print(temp)
                data.append([float(temp[0]),float(temp[-1])])
            except Exception as e:
                # print("Error in reading output file")
                # print(e)
                pass
        data = np.array(data)
    return data

p=Connector(screen_name="ocean_simulation")
x = [1,2,3,4,5] # List of values to be substituted in the template
default = [1,2,3,4,5] # List of default values to be substituted in the template in case of error
p.simulate(x, default,"init.ocn","output.ocn","output.txt",read_output)
  1. The above code will read the output.txt file and return a numpy array of the values.

  2. Refer to the init.ocn file in the sample folder for the template file format.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

CadenceConnector-0.1.2-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file CadenceConnector-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for CadenceConnector-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f8f8b7277daa0c1f2cf3d2fc5f7dae88236b09a4c625e903c3b67e2e3a5c94d2
MD5 933199fa8025fa0000304a26a717b918
BLAKE2b-256 b27233647bec71989299a9476827d9fb9b83f05cd5a08b92213fa0aadc3daebe

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page