diff --git a/dev/javascripts/mathjax.js b/dev/javascripts/mathjax.js
index 3828300a7..25cfbab20 100644
--- a/dev/javascripts/mathjax.js
+++ b/dev/javascripts/mathjax.js
@@ -1,4 +1,4 @@
-document$.subscribe(({ body }) => {
+document$.subscribe(({ body }) => {
renderMathInElement(body, {
delimiters: [
{ left: "$$", right: "$$", display: true },
@@ -7,4 +7,4 @@ document$.subscribe(({ body }) => {
{ left: "\\[", right: "\\]", display: true }
],
})
- })
\ No newline at end of file
+ })
diff --git a/dev/reference/bloqade/atom_arrangement/index.html b/dev/reference/bloqade/atom_arrangement/index.html
index 4d0e424e7..d6fcafed4 100644
--- a/dev/reference/bloqade/atom_arrangement/index.html
+++ b/dev/reference/bloqade/atom_arrangement/index.html
@@ -493,7 +493,7 @@
134135
deffigure(self,fig_kwargs=None,**assignments):"""obtain a figure object from the atom arrangement."""
-returnget_atom_arrangement_figure(self,fig_kwargs,**assignments)
+returnget_atom_arrangement_figure(self,fig_kwargs=fig_kwargs,**assignments)
If the program is built with [parallelize()][bloqade.builder.emit.Emit.parallelize], The the register will be a [ParallelRegister][bloqade.ir.location.base.ParallelRegister]. Otherwise it will be a [AtomArrangement][bloqade.ir.location.base.AtomArrangement].
defshow(self,**assignments):
-"""Interactive visualization of the program
-
- Args:
- **assignments: assigning the instance value (literal) to the
- existing variables in the program
-
- """
-display_ir(self,assignments)
+
Interactive visualization of the program
Parameters:
Name
Type
Description
Default
**assignments
assigning the instance value (literal) to the existing variables in the program
defshow(self,**assignments):
+"""Interactive visualization of the program
+
+ Args:
+ **assignments: assigning the instance value (literal) to the
+ existing variables in the program
+
+ """
+display_ir(self,assignments)
\ No newline at end of file
diff --git a/dev/reference/bloqade/ir/index.html b/dev/reference/bloqade/ir/index.html
index c485b7b59..7411e0cf8 100644
--- a/dev/reference/bloqade/ir/index.html
+++ b/dev/reference/bloqade/ir/index.html
@@ -5,23 +5,23 @@
<value>::= 'left value' | 'right value' | <scalar expr>
If the program is built with [parallelize()][bloqade.builder.emit.Emit.parallelize], The the register will be a [ParallelRegister][bloqade.ir.location.base.ParallelRegister]. Otherwise it will be a [AtomArrangement][bloqade.ir.location.base.AtomArrangement].
defshow(self,**assignments):
-"""Interactive visualization of the program
-
- Args:
- **assignments: assigning the instance value (literal) to the
- existing variables in the program
-
- """
-display_ir(self,assignments)
+
Interactive visualization of the program
Parameters:
Name
Type
Description
Default
**assignments
assigning the instance value (literal) to the existing variables in the program
defshow(self,**assignments):
+"""Interactive visualization of the program
+
+ Args:
+ **assignments: assigning the instance value (literal) to the
+ existing variables in the program
+
+ """
+display_ir(self,assignments)
deffigure(self,fig_kwargs=None,**assignments):"""obtain a figure object from the atom arrangement."""
-returnget_atom_arrangement_figure(self,fig_kwargs,**assignments)
+returnget_atom_arrangement_figure(self,fig_kwargs=fig_kwargs,**assignments)
deffigure(self,fig_kwargs=None,**assignments):"""obtain a figure object from the atom arrangement."""
-returnget_atom_arrangement_figure(self,fig_kwargs,**assignments)
+returnget_atom_arrangement_figure(self,fig_kwargs=fig_kwargs,**assignments)
deffigure(self,fig_kwargs=None,**assignments):"""obtain a figure object from the atom arrangement."""
-returnget_atom_arrangement_figure(self,fig_kwargs,**assignments)
+returnget_atom_arrangement_figure(self,fig_kwargs=fig_kwargs,**assignments)
the values to assign to the variables in the register.
{}
Returns:
Name
Type
Description
NDArray
NDArray
the Rydberg interaction matrix in the lower triangular form.
Source code in src/bloqade/ir/location/location.py
140141
diff --git a/dev/reference/hardware-capabilities/index.html b/dev/reference/hardware-capabilities/index.html
index 4e09f2666..06535cd47 100644
--- a/dev/reference/hardware-capabilities/index.html
+++ b/dev/reference/hardware-capabilities/index.html
@@ -6,6 +6,6 @@
# obtain maximum Rabi frequency as Decimalmax_rabi=aquila_capabilities.capabilities.rydberg.global_.rabi_frequency_max
-# use that value in constructing a neat Rabi waveform
+# use that value in constructing a neat Rabi waveformrabi_wf=piecewise_linear(durations=[0.5,1.0,0.5],values=[0,max_rabi,max_rabi,0])
The attribute names for each value have been provided below but will require you to provide the proper prefix like in the example above (e.g. the maximum number of qubits lives under the number_qubits_max attribute which can be navigated to via *your_QuEra_Capabilities_Object*.lattice.number_qubits_max).