Pulse Append ¶ Bases: PulseExpr <append> ::= <expr>+ Pulse ¶ Bases: PulseExpr <pulse> ::= (<field name> <field>)+ show ¶ show(**assignments) Interactive visualization of the Pulse Parameters: Name Type Description Default **assignments assigning the instance value (literal) to the existing variables in the Pulse {} Source code in src/bloqade/ir/control/pulse.py 211 212 213 214 215 216 217 218 219 220def show(self, **assignments): """ Interactive visualization of the Pulse Args: **assignments: assigning the instance value (literal) to the existing variables in the Pulse """ display_ir(self, assignments) PulseExpr ¶ Bases: HashTrait <expr> ::= <pulse> | <append> | <slice> | <named>