artiq/doc/manual/core_language_reference.rst

35 lines
1.1 KiB
ReStructuredText
Raw Normal View History

Core language and environment
=============================
2014-09-18 17:45:54 +08:00
The most commonly used features from the ARTIQ language modules and from the core device modules are bundled together in ``artiq.experiment`` and can be imported with ``from artiq.experiment import *``.
2014-12-02 19:23:15 +08:00
2014-09-18 17:45:54 +08:00
:mod:`artiq.language.core` module
---------------------------------
.. automodule:: artiq.language.core
:member-order: bysource
:members:
2015-07-14 04:08:20 +08:00
:mod:`artiq.language.environment` module
----------------------------------------
2015-07-14 04:08:20 +08:00
.. automodule:: artiq.language.environment
:member-order: bysource
:members:
2015-08-21 13:32:53 +08:00
:mod:`artiq.language.scan` module
----------------------------------------
.. automodule:: artiq.language.scan
:member-order: bysource
2015-08-21 13:32:53 +08:00
:members:
:mod:`artiq.language.units` module
2014-10-11 13:00:06 +08:00
----------------------------------
2024-07-19 18:07:46 +08:00
.. displays nothing, but makes references work
.. automodule:: artiq.language.units
2024-07-16 10:20:11 +08:00
:members:
This module contains floating point constants that correspond to common physical units (ns, MHz, ...). They are provided for convenience (e.g write ``MHz`` instead of ``1000000.0``) and code clarity purposes.