projects
/
platform
/
upstream
/
tvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d328c5
)
[DOCS] Mention Ninja build system in install/from_source.rst (#4554)
author
Hideto Ueno
<uenoku.tokotoko@gmail.com>
Fri, 20 Dec 2019 09:25:18 +0000
(18:25 +0900)
committer
masahi
<masahi129@gmail.com>
Fri, 20 Dec 2019 09:25:18 +0000
(18:25 +0900)
* [DOCS] Mention Ninja build system in install/from_source.rst
* Address comments
docs/install/from_source.rst
patch
|
blob
|
history
diff --git
a/docs/install/from_source.rst
b/docs/install/from_source.rst
index
acbd9b4
..
c4d0c59
100644
(file)
--- a/
docs/install/from_source.rst
+++ b/
docs/install/from_source.rst
@@
-107,6
+107,14
@@
The configuration of TVM can be modified by `config.cmake`.
cmake ..
make -j4
+ - You can also use Ninja build system instead of Unix Makefiles. It can be faster to build than using Makefiles.
+
+ .. code:: bash
+
+ cd build
+ cmake .. -G Ninja
+ ninja
+
If everything goes well, we can go to :ref:`python-package-installation`
Building on Windows