Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/developer-guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ How to Read the Code
- All the module interface are listed in [include](../../include), these interfaces are heavily documented.
- You read the [Doxygen Version](https://mxnet.readthedocs.org/en/latest/doxygen) of the document.
- Each module will only depend on other module by the header files in [include](../../include).
- The implementation of module is in [src](../../src) folder.
- The implementation of module is in [src](../../src) folder.
- Each source code only sees the file within its folder, [src/common](../../src/common) and [include](../../include).

Most modules are mostly self-contained, with interface dependency on engine.
Expand Down Expand Up @@ -54,7 +54,7 @@ Open Source Design Notes
------------------------
* [Programming Models for Deep Learning](../program_model.md)
- Compares various programming models, which motivates the current design.
* [Dependency Engine for Multi-Device Deep Learning](note_engine.md)
* [Dependency Engine for Deep Learning](note_engine.md)
- Introduces the dependency tracking and scheduling component for general deep learning,
this motivates the design of Engine module.

Expand Down
4 changes: 2 additions & 2 deletions doc/developer-guide/note_engine.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Make Multi-Device Deep Learning Easy with Dependency Engine
===========================================================
Dependency Engine for Deep Learning
===================================
One always important theme of deep learning libraries is to run faster and scale to larger
dataset. In order to do so, a natural direction is always go beyond using one device(GPU),
and make uses of more computation resources.
Expand Down
4 changes: 2 additions & 2 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ Developer Guide

Open Source Design Notes
------------------------
This section contains the design document and notes we made for mxnet system design and deep learning
This section contains the design document and notes we made for mxnet system design and deep learning
libraries in general. We believe that open sourcing the system design note, its motivations and choices
can benefit general audience, for those who uses deep learning and who builds deep learning systems.

This section will be updated with self-contained design notes on various aspect of deep learning systems,
in terms of abstraction, optimization and trade-offs.

* [Programming Models for Deep Learning](program_model.md)
* [Dependency Engine for Multi-Device Deep Learning](developer-guide/note_engine.md)
* [Dependency Engine for Deep Learning](developer-guide/note_engine.md)

Indices and tables
------------------
Expand Down