def prepare_rabi_seq_CC(qubit_name, op_dict):
    single_pulse_elt = sqs.single_elt_on('AncT_CB')
    single_pulse_asm = qta.qasm_to_asm(single_pulse_elt.name, op_dict)
    asm_file = single_pulse_asm
    CBox.load_instructions(asm_file.name)
예제 #2
0
 def test_qasm_single_elt_on(self):
     qasm_file = sq_qasm.single_elt_on(self.qubit_name)
     asm_file = qta.qasm_to_asm(qasm_file.name, self.operation_dict)
     asm = Assembler.Assembler(asm_file.name)
     instructions = asm.convert_to_instructions()
 def test_qasm_single_elt_on(self):
     qasm_file = sq_qasm.single_elt_on(self.qubit_name)
     asm_file = qta.qasm_to_asm(qasm_file.name, self.operation_dict)
     asm = Assembler.Assembler(asm_file.name)
     instructions = asm.convert_to_instructions()