Managing Calibration Data: Step-by-Step Guide

Create Branch

Let's start with creating the Branch.

Create New Branch

Add Chip

Add a chip to the selected Branch.

Add New chip

Web Platform: Commit Calibration Data

Steps:

  1. Select the Chip for which you are uploading the calibration data from the drop-down

  2. Upload the JSON file only after selecting the Chip from the drop-down. (Only for Web Platform)

  3. Write a Commit Details.

  4. View the Committed Data

Select Chip from options

Jupyter NoteBook: Commit Calibration Data

Steps:

  1. Get all the Branch Details.

  2. For the selected Branch Get all the Chip Details

  3. Specify Branch, Chip_ID, and Commit Data to upload Calibration File or Object.

  4. View Committed Data

    1. Get the Branch Details and select a specific commit hash

    2. Specified commit hash and view the data

List of Branch available
from qubicstorage import calibration
import json

response = calibration.getbranches()
response_json_content = response.json()
response_json_string = json.dumps(response_json_content, indent=4)
print(response_json_string)

Last updated