Unverified Commit f9ddbc8e authored by Chris Austen's avatar Chris Austen Committed by GitHub
Browse files

Documentation updates for 5.6 (#1773)

* Use action to free space which uses apt  remove to remove all the dependencies as well (#1756)
* Docsupdate (#1748)
* adjust docker files to support new rocm 5.5 (#1729)
* update to v0.11.0 of rocm-docs-core (#1763)
parent 2e128d9d
...@@ -53,13 +53,13 @@ Average total time is also provided. There are three files provided for referenc ...@@ -53,13 +53,13 @@ Average total time is also provided. There are three files provided for referenc
An example output: An example output:
.. image:: ./roctx1.jpg .. image:: ../data/roctx1.jpg
Hotspot kerel timing information: Hotspot kerel timing information:
.. image:: ./roctx2.jpg .. image:: ../data/roctx2.jpg
**Parsing an already existing JSON file:** **Parsing an already existing JSON file:**
:: ::
python roctx.py --parse --json-path ../trace.json python roctx.py --parse --json-path ../trace.json
\ No newline at end of file
...@@ -3,18 +3,10 @@ ...@@ -3,18 +3,10 @@
You can adapt this file completely to your liking, but it should at least You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive. contain the root `toctree` directive.
Welcome to AMD MIGraphX's documentation! AMD MIGraphX documentation
======================================== ==========================
.. toctree::
:maxdepth: 3
:caption: Contents:
py_user_guide
cpp_user_guide
driver
contributor_guide
AMD MIGraphX is AMD's graph inference engine that accelerates machine learning model inference.
Indices and tables Indices and tables
================== ==================
......
...@@ -6,7 +6,7 @@ ARG PREFIX=/usr/local ...@@ -6,7 +6,7 @@ ARG PREFIX=/usr/local
RUN dpkg --add-architecture i386 RUN dpkg --add-architecture i386
# Add rocm repository # Add rocm repository
RUN sh -c 'echo deb [arch=amd64 trusted=yes] http://repo.radeon.com/rocm/apt/5.4.2/ ubuntu main > /etc/apt/sources.list.d/rocm.list' RUN sh -c 'echo deb [arch=amd64 trusted=yes] http://repo.radeon.com/rocm/apt/5.5/ focal main > /etc/apt/sources.list.d/rocm.list'
# Install dependencies # Install dependencies
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated \ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated \
...@@ -47,7 +47,7 @@ ENV LANG=C.UTF-8 ...@@ -47,7 +47,7 @@ ENV LANG=C.UTF-8
RUN pip3 install yapf==0.28.0 RUN pip3 install yapf==0.28.0
# Install doc requirements # Install doc requirements
ADD doc/requirements.txt /doc-requirements.txt ADD docs/.sphinx/requirements.txt /doc-requirements.txt
RUN pip3 install -r /doc-requirements.txt RUN pip3 install -r /doc-requirements.txt
# Install dependencies # Install dependencies
...@@ -57,4 +57,3 @@ ADD rbuild.ini /rbuild.ini ...@@ -57,4 +57,3 @@ ADD rbuild.ini /rbuild.ini
COPY ./tools/install_prereqs.sh / COPY ./tools/install_prereqs.sh /
RUN /install_prereqs.sh /usr/local / && rm /install_prereqs.sh RUN /install_prereqs.sh /usr/local / && rm /install_prereqs.sh
...@@ -42,7 +42,7 @@ void any_cast() ...@@ -42,7 +42,7 @@ void any_cast()
template <class T> template <class T>
struct auto_any_caster struct auto_any_caster
{ {
T& x; T& x; // NOLINT
template <class U> template <class U>
operator U&() operator U&()
......
...@@ -38,8 +38,8 @@ struct check_shapes ...@@ -38,8 +38,8 @@ struct check_shapes
{ {
const shape* begin; const shape* begin;
const shape* end; const shape* end;
const std::string name; std::string name;
const bool dynamic_allowed; bool dynamic_allowed;
check_shapes(const shape* b, const shape* e, const std::string& n, const bool d = false) check_shapes(const shape* b, const shape* e, const std::string& n, const bool d = false)
: begin(b), end(e), name(n), dynamic_allowed(d) : begin(b), end(e), name(n), dynamic_allowed(d)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment