Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ColossalAI
Commits
9e3b8b7a
Unverified
Commit
9e3b8b7a
authored
Feb 28, 2023
by
Frank Lee
Committed by
GitHub
Feb 28, 2023
Browse files
[doc] removed read-the-docs (#2932)
parent
77b88a38
Changes
253
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
0 additions
and
251 deletions
+0
-251
.readthedocs.yaml
.readthedocs.yaml
+0
-30
docs/Makefile
docs/Makefile
+0
-26
docs/_static/css/rtd_theme.css
docs/_static/css/rtd_theme.css
+0
-3
docs/_templates/apidoc/module.rst_t
docs/_templates/apidoc/module.rst_t
+0
-9
docs/_templates/apidoc/package.rst_t
docs/_templates/apidoc/package.rst_t
+0
-52
docs/_templates/apidoc/toc.rst_t
docs/_templates/apidoc/toc.rst_t
+0
-8
docs/colossalai/colossalai.amp.amp_type.rst
docs/colossalai/colossalai.amp.amp_type.rst
+0
-5
docs/colossalai/colossalai.amp.apex_amp.apex_amp.rst
docs/colossalai/colossalai.amp.apex_amp.apex_amp.rst
+0
-5
docs/colossalai/colossalai.amp.apex_amp.rst
docs/colossalai/colossalai.amp.apex_amp.rst
+0
-11
docs/colossalai/colossalai.amp.naive_amp.grad_scaler.rst
docs/colossalai/colossalai.amp.naive_amp.grad_scaler.rst
+0
-8
docs/colossalai/colossalai.amp.naive_amp.naive_amp.rst
docs/colossalai/colossalai.amp.naive_amp.naive_amp.rst
+0
-5
docs/colossalai/colossalai.amp.naive_amp.rst
docs/colossalai/colossalai.amp.naive_amp.rst
+0
-16
docs/colossalai/colossalai.amp.rst
docs/colossalai/colossalai.amp.rst
+0
-18
docs/colossalai/colossalai.amp.torch_amp.rst
docs/colossalai/colossalai.amp.torch_amp.rst
+0
-11
docs/colossalai/colossalai.amp.torch_amp.torch_amp.rst
docs/colossalai/colossalai.amp.torch_amp.torch_amp.rst
+0
-5
docs/colossalai/colossalai.builder.builder.rst
docs/colossalai/colossalai.builder.builder.rst
+0
-5
docs/colossalai/colossalai.builder.rst
docs/colossalai/colossalai.builder.rst
+0
-11
docs/colossalai/colossalai.cli.benchmark.benchmark.rst
docs/colossalai/colossalai.cli.benchmark.benchmark.rst
+0
-5
docs/colossalai/colossalai.cli.benchmark.models.rst
docs/colossalai/colossalai.cli.benchmark.models.rst
+0
-5
docs/colossalai/colossalai.cli.benchmark.rst
docs/colossalai/colossalai.cli.benchmark.rst
+0
-13
No files found.
.readthedocs.yaml
deleted
100644 → 0
View file @
77b88a38
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version
:
2
# Set the version of Python and other tools you might need
build
:
os
:
ubuntu-20.04
tools
:
python
:
"
3.9"
# You can also specify other tool versions:
# nodejs: "16"
# rust: "1.55"
# golang: "1.17"
# Build documentation in the docs/ directory with Sphinx
sphinx
:
configuration
:
docs/conf.py
# If using Sphinx, optionally build your docs in additional formats such as PDF
# formats:
# - pdf
# Optionally declare the Python requirements required to build your docs
python
:
install
:
-
requirements
:
requirements/requirements.txt
-
requirements
:
docs/requirements.txt
docs/Makefile
deleted
100644 → 0
View file @
77b88a38
# Minimal makefile for Sphinx documentation
#
# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS
?=
SPHINXBUILD
?=
sphinx-build
SOURCEDIR
=
.
BUILDDIR
=
.build
SPHINXAPIDOC
?=
sphinx-apidoc
SPHINX_APIDOC_OPTIONS
=
members
SPHINX_APIDOC_TEMPLATEDIR
=
_templates/apidoc
# Put it first so that "make" without argument is like "make help".
help
:
@
$(SPHINXBUILD)
-M
help
"
$(SOURCEDIR)
"
"
$(BUILDDIR)
"
$(SPHINXOPTS)
$(O)
.PHONY
:
help Makefile apidoc
apidoc
:
@
SPHINX_APIDOC_OPTIONS
=
$(SPHINX_APIDOC_OPTIONS)
$(SPHINXAPIDOC)
-f
-T
-e
-M
-d
2
-t
$(SPHINX_APIDOC_TEMPLATEDIR)
-o
./colossalai ../colossalai
# @$(SPHINXAPIDOC) -f -o ./model_zoo ../model_zoo
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%
:
Makefile
@
$(SPHINXBUILD)
-M
$@
"
$(SOURCEDIR)
"
"
$(BUILDDIR)
"
$(SPHINXOPTS)
$(O)
docs/_static/css/rtd_theme.css
deleted
100644 → 0
View file @
77b88a38
.wy-nav-content
{
max-width
:
80%
;
}
\ No newline at end of file
docs/_templates/apidoc/module.rst_t
deleted
100644 → 0
View file @
77b88a38
{%- if show_headings %}
{{- basename | e | heading }}
{% endif -%}
.. automodule:: {{ qualname }}
{%- for option in automodule_options %}
:{{ option }}:
{%- endfor %}
docs/_templates/apidoc/package.rst_t
deleted
100644 → 0
View file @
77b88a38
{%- macro automodule(modname, options) -%}
.. automodule:: {{ modname }}
{%- for option in options %}
:{{ option }}:
{%- endfor %}
{%- endmacro %}
{%- macro toctree(docnames) -%}
.. toctree::
:maxdepth: {{ maxdepth }}
{% for docname in docnames %}
{{ docname }}
{%- endfor %}
{%- endmacro %}
{%- if is_namespace %}
{{- pkgname | e | heading }}
{% else %}
{{- pkgname | e | heading }}
{% endif %}
{%- if is_namespace %}
.. py:module:: {{ pkgname }}
{% endif %}
{%- if modulefirst and not is_namespace %}
{{ automodule(pkgname, automodule_options) }}
{% endif %}
{%- if subpackages %}
{{ toctree(subpackages) }}
{% endif %}
{%- if submodules %}
{% if separatemodules %}
{{ toctree(submodules) }}
{% else %}
{%- for submodule in submodules %}
{% if show_headings %}
{{- submodule | e | heading(2) }}
{% endif %}
{{ automodule(submodule, automodule_options) }}
{% endfor %}
{%- endif %}
{%- endif %}
{%- if not modulefirst and not is_namespace %}
Module contents
---------------
{{ automodule(pkgname, automodule_options) }}
{% endif %}
docs/_templates/apidoc/toc.rst_t
deleted
100644 → 0
View file @
77b88a38
{{ header | heading }}
.. toctree::
:maxdepth: {{ maxdepth }}
{% for docname in docnames %}
{{ docname }}
{%- endfor %}
docs/colossalai/colossalai.amp.amp_type.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.amp.amp\_type
========================
.. automodule:: colossalai.amp.amp_type
:members:
docs/colossalai/colossalai.amp.apex_amp.apex_amp.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.amp.apex\_amp.apex\_amp
==================================
.. automodule:: colossalai.amp.apex_amp.apex_amp
:members:
docs/colossalai/colossalai.amp.apex_amp.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.amp.apex\_amp
========================
.. automodule:: colossalai.amp.apex_amp
:members:
.. toctree::
:maxdepth: 2
colossalai.amp.apex_amp.apex_amp
docs/colossalai/colossalai.amp.naive_amp.grad_scaler.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.amp.naive\_amp.grad\_scaler
======================================
.. automodule:: colossalai.amp.naive_amp.grad_scaler
:members:
docs/colossalai/colossalai.amp.naive_amp.naive_amp.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.amp.naive\_amp.naive\_amp
====================================
.. automodule:: colossalai.amp.naive_amp.naive_amp
:members:
docs/colossalai/colossalai.amp.naive_amp.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.amp.naive\_amp
=========================
.. automodule:: colossalai.amp.naive_amp
:members:
.. toctree::
:maxdepth: 2
colossalai.amp.naive_amp.grad_scaler
.. toctree::
:maxdepth: 2
colossalai.amp.naive_amp.naive_amp
docs/colossalai/colossalai.amp.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.amp
==============
.. automodule:: colossalai.amp
:members:
.. toctree::
:maxdepth: 2
colossalai.amp.apex_amp
colossalai.amp.naive_amp
colossalai.amp.torch_amp
.. toctree::
:maxdepth: 2
colossalai.amp.amp_type
docs/colossalai/colossalai.amp.torch_amp.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.amp.torch\_amp
=========================
.. automodule:: colossalai.amp.torch_amp
:members:
.. toctree::
:maxdepth: 2
colossalai.amp.torch_amp.torch_amp
docs/colossalai/colossalai.amp.torch_amp.torch_amp.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.amp.torch\_amp.torch\_amp
====================================
.. automodule:: colossalai.amp.torch_amp.torch_amp
:members:
docs/colossalai/colossalai.builder.builder.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.builder.builder
==========================
.. automodule:: colossalai.builder.builder
:members:
docs/colossalai/colossalai.builder.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.builder
==================
.. automodule:: colossalai.builder
:members:
.. toctree::
:maxdepth: 2
colossalai.builder.builder
docs/colossalai/colossalai.cli.benchmark.benchmark.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.cli.benchmark.benchmark
==================================
.. automodule:: colossalai.cli.benchmark.benchmark
:members:
docs/colossalai/colossalai.cli.benchmark.models.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.cli.benchmark.models
===============================
.. automodule:: colossalai.cli.benchmark.models
:members:
docs/colossalai/colossalai.cli.benchmark.rst
deleted
100644 → 0
View file @
77b88a38
colossalai.cli.benchmark
========================
.. automodule:: colossalai.cli.benchmark
:members:
.. toctree::
:maxdepth: 2
colossalai.cli.benchmark.benchmark
colossalai.cli.benchmark.models
colossalai.cli.benchmark.utils
Prev
1
2
3
4
5
…
13
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment