mirror of
https://github.com/ml-explore/mlx.git
synced 2025-07-19 23:51:14 +08:00
21 lines
375 B
ReStructuredText
21 lines
375 B
ReStructuredText
{{ fullname | escape | underline}}
|
|
|
|
.. currentmodule:: {{ module }}
|
|
|
|
.. autoclass:: {{ objname }}
|
|
|
|
{% block methods %}
|
|
|
|
{% if methods %}
|
|
.. rubric:: {{ _('Methods') }}
|
|
|
|
.. autosummary::
|
|
{% for item in methods %}
|
|
{%- if item not in inherited_members %}
|
|
~{{ name }}.{{ item }}
|
|
{%- endif %}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|