From a97b4633cb7cbb47c619dd8f9bf6b1aa1f231b04 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Sat, 31 Oct 2020 19:06:00 +0100 Subject: [PATCH] compiler: Add math_fns module docstring [nfc] --- artiq/compiler/math_fns.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/artiq/compiler/math_fns.py b/artiq/compiler/math_fns.py index 6b1890c1d..8b1b38914 100644 --- a/artiq/compiler/math_fns.py +++ b/artiq/compiler/math_fns.py @@ -1,3 +1,9 @@ +r""" +The :mod:`math_fns` module lists math-related functions from NumPy recognized +by the ARTIQ compiler so host function objects can be :func:`match`\ ed to +the compiler type metadata describing their core device analogue. +""" + from collections import OrderedDict import numpy from . import builtins, types