Skip to content

Whz forward [] operator and op doc #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Aug 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
6dde122
formal/[elementwise, nms] done. ops doing
whz14 Jul 31, 2020
28fd587
Merge branch 'whz' of https://github.com/CortexFoundation/cvm-runtime…
whz14 Jul 31, 2020
a8460ce
Merge remote-tracking branch 'origin/wlt' into whz
whz14 Jul 31, 2020
f39cb9c
in runtime/formal: operators in ops.cc get args&attrs by interfaces now
whz14 Aug 1, 2020
085514a
in runtime/formal: operators in reduce.cc get args&attrs by interface…
whz14 Aug 1, 2020
7e94fd6
Merge branch 'wlt' of https://github.com/CortexFoundation/cvm-runtime…
whz14 Aug 3, 2020
eb092b9
cvm/install.md language mistakes. guide/arch.rst reduce, conv2d and d…
whz14 Aug 3, 2020
88c9b7b
broadcast, nn, elementwise operator doc done. TODO: transform and vision
whz14 Aug 4, 2020
fa5841c
doc for all the operators
whz14 Aug 5, 2020
5c2bfb4
formula too long problem
whz14 Aug 5, 2020
bf690f5
merged from wlt
whz14 Aug 5, 2020
c843138
modified [] operator in Indices class to optimize performance, meet P…
whz14 Aug 6, 2020
1bc49af
modified broadcast op, description too long problem. fixed formula typo
whz14 Aug 6, 2020
b1eda96
conflict
whz14 Aug 6, 2020
3b0abe9
doc merge conflict
whz14 Aug 6, 2020
a4f8296
Merge branch 'whzOpDoc' into whz
whz14 Aug 6, 2020
8571a96
fixed many problems in arch.rst: empty line with spaces, spaces at en…
whz14 Aug 6, 2020
aa12d7a
docs modified to meet merge request review's need
whz14 Aug 7, 2020
0f4b8cf
src ops modified to meet merge request review's need
whz14 Aug 7, 2020
5c81d55
meet merge request's review
whz14 Aug 10, 2020
61ce986
comments on op_take. max_pool2d simplified lambda
whz14 Aug 10, 2020
51d4bea
pr's need
whz14 Aug 11, 2020
1eef72d
neaten ops.cc, moved it's operators into other files. TODO: where ope…
whz14 Aug 11, 2020
06ca38c
where operator doc
whz14 Aug 11, 2020
0cd249a
where bug fixed. fixed #66
whz14 Aug 11, 2020
4018aae
conv2d removed Indices readability optimization: to optimize performance
whz14 Aug 11, 2020
6d36221
pr's need
whz14 Aug 12, 2020
14be67c
a silly type
whz14 Aug 12, 2020
4fa06ef
Indices.ndim, TShape.ndim return value is int32_t now. Other comments…
whz14 Aug 12, 2020
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 docs/cvm/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ It will generate many test binary in the `build/tests/` directory.

#### doc generator

CVM support `sphinx` documentation, and before compile the documentation in directory `docs`, you need to install some python required packages. We have collect the neccessary packages in the `docs/requirements.txt`, so you can simply run the command to install the pre-requisites:
CVM support `sphinx` documentation, and before compiling the documentation in directory `docs`, you need to install some required python packages. We have collected the neccessary packages in the `docs/requirements.txt`, so you can simply run the command to install the pre-requisites:

``` bash
pip install -r docs/requirements.txt
```

Besides, check your system have installed the doxygen for C++ API
Besides, make sure that you have installed the doxygen for C++ API
generator. Refer to offical website for more details:
[Doxygen Install](https://www.doxygen.nl/manual/install.html).

Expand Down
Loading