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 CadenceConnector

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.

Examples

Refer to the examples page for examples on how to use PyCadence.

WorkFlow Diagram

Workflow Diagram

Documentation

  1. Class PyCadence.Connector : This class is used to connect to the Cadence environment and run the simulation

    • __init__(self, screen_name:str) : Constructor to initialize the class with the screen name. The screen name is the name of the tmux session where the Cadence Ocean environment is running
    • simulate(self, x:List, default:List, init_file_path:str, output_file_path:str, output_log_path:str, read_output:Callable=None) : Function to run the simulation.
      • x : List of values to be substituted in the template file
      • default : List of default values to be substituted in the template file in case of error
      • init_file_path : Path to the template file
      • output_file_path : Path to the output file
      • output_log_path : Path to the output log file
      • read_output : Function to read the output log file. The function should take the output log file as an argument and return an Iterable of the values parsed from the output log file
    • read_output(self, output_log_path:str) -> Iterable : Function to read the output log file. The function should take the output log file as an argument and return an Iterable of the values parsed from the output log file.
      • Override this function to provide custom implementation to read the output log file. This can be done by passing the function as an argument to the simulate function.
    • generate_ocn_file(self, values:List, default:List, init_file_path:str, output_file_path:str, output_log_path:str, sim_status_log_path:str) : Function to generate the output file by substituting the values in the template file
      • values : List of values to be substituted in the template file
      • default : List of default values to be substituted in the template file in case of error
      • init_file_path : Path to the template .ocn file
      • output_file_path : Path to the output .ocn file created from the template file
      • output_log_path : Path to the output log file where the output of the simulation will be stored

    All the member of function of Connector class can be overridden to provide custom implementation.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Steps to contribute:

  1. Fork the repository
  2. Create a new branch with the issue name. (Note: If there is no issue related to the change, create a new issue)
  3. Make changes and commit the code
  4. Create a pull request

License

This project is licensed under the MIT License - see the LICENSE file for details

Project details


Download files

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

Source Distribution

cadenceconnector-0.2.3.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

CadenceConnector-0.2.3-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file cadenceconnector-0.2.3.tar.gz.

File metadata

  • Download URL: cadenceconnector-0.2.3.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cadenceconnector-0.2.3.tar.gz
Algorithm Hash digest
SHA256 85be14908b457cbfd1ed91c3f071f687f2f69cf33bb273b2c5931d1bd43597c0
MD5 8c51e3a35cbe2a9eb4e6b44bd4aaa582
BLAKE2b-256 6075ee6642778a58baeeda5e55b338033fc6ff29959f4fb1cab20969acfbfd8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for CadenceConnector-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 68d07e56fdafd522cc8b5df5020b4fdb91ccc79784bc06ade44296e226e2e159
MD5 d1e8716b7c4106bd4d7af70321022809
BLAKE2b-256 1ff409f39d2baadbbb30547a44c640c3e111ebf08f01153711d65b0f53a88bb9

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