File tree Expand file tree Collapse file tree 3 files changed +54
-2
lines changed
docs/doc_sources/_templates Expand file tree Collapse file tree 3 files changed +54
-2
lines changed Original file line number Diff line number Diff line change
1
+ {{ fullname | escape | underline}}
2
+
3
+ .. currentmodule :: {{ module }}
4
+
5
+ .. autoclass :: {{ name }}
6
+ {% block methods %}
7
+
8
+ {% if methods %}
9
+ .. rubric :: {{ _('Methods') }}
10
+
11
+ .. autosummary ::
12
+ :toctree: generated
13
+ {% for item in methods if item != "__init__" or name == "SyclTimer" %}
14
+ ~{{ name }}.{{ item }}
15
+ {%- endfor %}
16
+ {% endif %}
17
+ {% endblock %}
18
+
19
+ {% block attributes %}
20
+ {% if attributes %}
21
+ .. rubric :: {{ _('Attributes') }}
22
+
23
+ .. autosummary ::
24
+ :toctree: generated
25
+ {% for item in attributes %}
26
+ ~{{ name }}.{{ item }}
27
+ {%- endfor %}
28
+ {% endif %}
29
+ {% endblock %}
Original file line number Diff line number Diff line change 12
12
.. rubric :: {{ _('Methods') }}
13
13
14
14
.. autosummary ::
15
+ :toctree: generated
15
16
{% for item in methods %}
16
17
~{{ name }}.{{ item }}
17
18
{%- endfor %}
18
19
{% endif %}
19
20
{% endblock %}
20
21
21
- :special-members: __sycl_usm_array_interface__
22
-
23
22
{% block attributes %}
24
23
{% if attributes %}
25
24
.. rubric :: {{ _('Attributes') }}
26
25
27
26
.. autosummary ::
27
+ :toctree: generated
28
28
{% for item in attributes %}
29
29
~{{ name }}.{{ item }}
30
30
{%- endfor %}
31
+ ~{{name}}.__sycl_usm_array_interface__
31
32
{% endif %}
32
33
{% endblock %}
Original file line number Diff line number Diff line change
1
+ {% if READTHEDOCS or display_lower_left %}
2
+ {# Add rst-badge after rst-versions for small badge style. #}
3
+ < div class ="rst-versions " data-toggle ="rst-versions " role ="note " aria-label ="versions ">
4
+ < span class ="rst-current-version " data-toggle ="rst-current-version ">
5
+ < span class ="fa fa-book "> Other versions</ span >
6
+ v: {{ current_version }}
7
+ < span class ="fa fa-caret-down "> </ span >
8
+ </ span >
9
+ < div class ="rst-other-versions ">
10
+ {% if versions|length > = 1 %}
11
+ < dl >
12
+ < dt > {{ _('Versions') }}</ dt >
13
+ {% for slug, url in versions %}
14
+ {% if slug == current_version %} < strong > {% endif %}
15
+ < dd > < a href ="{{ url }} "> {{ slug }}</ a > </ dd >
16
+ {% if slug == current_version %} </ strong > {% endif %}
17
+ {% endfor %}
18
+ </ dl >
19
+ {% endif %}
20
+ </ div >
21
+ </ div >
22
+ {% endif %}
You can’t perform that action at this time.
0 commit comments