You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Otherwise, you need to set `-DCMAKE_PREFIX_PATH=$your_loc` to configure CMake.
112
129
113
-
4. Build MIGraphX source code:
130
+
5. Build MIGraphX source code:
114
131
115
132
```cpp
116
133
make -j$(nproc)
@@ -122,7 +139,7 @@ Once completed, all prerequisites are in the `depend` folder and MIGraphX is in
122
139
make -j$(nproc) check
123
140
```
124
141
125
-
5. Install MIGraphX libraries:
142
+
6. Install MIGraphX libraries:
126
143
127
144
```cpp
128
145
make install
@@ -210,7 +227,7 @@ This will build a local searchable web site inside the docs/html folder.
210
227
211
228
Documentation is built using [Doxygen](http://www.stack.nl/~dimitri/doxygen/download.html) and [rocm-docs-core](https://github.com/RadeonOpenCompute/rocm-docs-core)
212
229
213
-
Run the steps below to build documentation locally.
230
+
Run the steps below to build documentation locally. You can reuse the same venv from [installing rbuild](#installing-the-rocm-build-tool-rbuild).
Copy file name to clipboardExpand all lines: docs/index.rst
+8-11Lines changed: 8 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,8 @@
8
8
MIGraphX documentation
9
9
===========================
10
10
11
-
MIGraphX is a graph inference engine and graph compiler. MIGraphX accelerates machine-learning models by leveraging several graph-level transformations and optimizations. These optimizations include:
12
-
13
-
* Operator fusion
14
-
* Arithmetic simplifications
15
-
* Dead-code elimination
16
-
* Common subexpression elimination (CSE)
17
-
* Constant propagation
18
-
19
-
After optimization, MIGraphX generates code for AMD GPUs by calling various ROCm libraries to create the fastest combinations of HIP kernels.
11
+
MIGraphX is a graph compiler and inference engine for high performance machine learning model inference.
12
+
It compiles trained models from end-to-end to optimize for inference performance on AMD hardware.
20
13
21
14
The MIGraphX public repository is located at `https://github.com/ROCm/AMDMIGraphX/ <https://github.com/ROCm/AMDMIGraphX/>`_
22
15
@@ -25,8 +18,11 @@ The MIGraphX public repository is located at `https://github.com/ROCm/AMDMIGraph
25
18
26
19
.. grid-item-card:: Install
27
20
28
-
* :doc:`Installing MIGraphX with the package installer <./install/installing_with_package>`
29
-
* :doc:`Building and installing MIGraphX from source code <./install/building_migraphx>`
21
+
* :doc:`MIGraphX on ROCm installation <./install/install-migraphx>`
22
+
23
+
.. grid-item-card:: Conceptual
24
+
25
+
* :doc:`Deep learning compilation with MIGraphX <./conceptual/deep-learning-compilation>`
30
26
31
27
.. grid-item-card:: Reference
32
28
@@ -51,3 +47,4 @@ To contribute to the documentation refer to
0 commit comments