Skip to content

Commit dcb1b03

Browse files
committed
docs: rewire and fix missing classes
1 parent 42bd003 commit dcb1b03

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

doc/conf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
intersphinx_mapping = {
1414
"arraycontext": ("https://documen.tician.de/arraycontext/", None),
1515
"boxtree": ("https://documen.tician.de/boxtree/", None),
16+
"islpy": ("https://documen.tician.de/islpy", None),
1617
"loopy": ("https://documen.tician.de/loopy/", None),
1718
"matplotlib": ("https://matplotlib.org/stable/", None),
1819
"numpy": ("https://numpy.org/doc/stable/", None),
@@ -47,6 +48,7 @@
4748
"obj_array.ObjectArray1D": "obj:pytools.obj_array.ObjectArray1D",
4849
# sympy
4950
"sp.Matrix": "class:sympy.matrices.dense.DenseMatrix",
51+
"sym.Basic": "class:sympy.core.basic.Basic",
5052
"sym.Expr": "class:sympy.core.expr.Expr",
5153
"sym.Symbol": "class:sympy.core.symbol.Symbol",
5254
"sym.Matrix": "class:sympy.matrices.dense.DenseMatrix",
@@ -58,6 +60,7 @@
5860
# loopy
5961
"Assignment": "class:loopy.kernel.instruction.Assignment",
6062
"CallInstruction": "class:loopy.kernel.instruction.CallInstruction",
63+
"InstructionBase": "class:loopy.kernel.instruction.InstructionBase",
6164
# arraycontext
6265
"Array": "obj:arraycontext.Array",
6366
"ArrayContext": "class:arraycontext.ArrayContext",

sumpy/cse.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,9 @@
8888
Common subexpression elimination
8989
--------------------------------
9090
91+
.. autoclass:: OptimizationCallable
92+
.. autoclass:: OptimizationPair
9193
.. autofunction:: cse
92-
9394
"""
9495

9596

0 commit comments

Comments
 (0)