Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

convenience fluent methods for sym/nd #7584

Merged
merged 1 commit into from
Aug 29, 2017
Merged

convenience fluent methods for sym/nd #7584

merged 1 commit into from
Aug 29, 2017

Conversation

szha
Copy link
Member

@szha szha commented Aug 23, 2017

No description provided.

@@ -673,6 +676,251 @@ def reshape(self, shape):
ctypes.byref(handle)))
return NDArray(handle=handle, writable=self.writable)

def flatten(self):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you can simply do flatten = flatten

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I do this, do I still need to add doc string?

@@ -42,6 +42,9 @@
from . import broadcast_sub, broadcast_div, broadcast_to, broadcast_equal, cast_storage
from . import broadcast_greater, broadcast_greater_equal, broadcast_lesser, broadcast_lesser_equal
from . import zeros_like, slice
from . import flatten, expand_dims, tile, flip
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do you have to import these ops directly? How about import the namespace?

@@ -673,6 +671,26 @@ def reshape(self, shape):
ctypes.byref(handle)))
return NDArray(handle=handle, writable=self.writable)

flatten = flatten
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does document display properly for these functions?

"""Convenience fluent method for ndarray.trunc.
See trunc"""
return op.trunc(self, **kwargs)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to support repeat as well?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was limiting the methods to unary ops with 0 or 1 argument before. Let me revisit the op list and see what else can be added.

@@ -673,6 +686,100 @@ def reshape(self, shape):
ctypes.byref(handle)))
return NDArray(handle=handle, writable=self.writable)

def flatten(self, **kwargs):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to support positional arguments as well? At least, the following two usages of the op through mx.nd both work:

mx.nd.tile(a, reps=(2, 3))
mx.nd.tile(a, (2, 3))

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will add. Thanks

@@ -118,7 +118,58 @@ We summarize the interface for each class in the following sections.

NDArray.T
NDArray.reshape
NDarray.flatten
NDarray.expand_dims
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NDArray instead of NDarray :P

@szha szha force-pushed the fluent branch 2 times, most recently from 4e874a1 to edfb56f Compare August 28, 2017 18:32
@szha
Copy link
Member Author

szha commented Aug 28, 2017

@piiswrong piiswrong merged commit 5591f42 into apache:master Aug 29, 2017
@szha szha deleted the fluent branch August 29, 2017 03:12
piiswrong pushed a commit that referenced this pull request Aug 30, 2017
* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* fix linalg_impl (#7611)

* fix linalg_impl

* fix

* fix

* fix

* set build status to success only after job ends (#7628)

Earlier code marks status as success initially. So any new PR shows jenkins status as success if we see the check mark on github. On opening the full build status, we see that builds haven't even started or are running. 

If something fails, variable changes to failure then. So even without this merge, a red mark on github indicates that build has failed correctly. That behavior is unchanged.

* Fix build status of a test (#7629)

installs bc required by sh2ju.sh and changes the regex match to capital alphabet as it clashes with a warning thrown by opencv driver

* entire codebase build with mshadow_use_clas=0 (#7625)

* Update README.md (#7630)

*  unit test for csv iter, doc update for libsvmiter (#7623)

* add unit test for csv iter

* fix lint

* add libsvm to mxnet.io doc

* update libsvm doc

* gpu access of ndarray (#7496)

* gpu access of ndarray

* gpu access from C++ api

* gpu access fix

* Update c_api.cc

* Update c_api.cc

* refactor cudnn algo reg to no use string (#7561)

* refactor cudnn algo reg to no use string

* refactor ctx list

* fix

* refactor save_inputs

* Update io.md (#7634)

* fix tests (#7633)

* [build] explicitly install JDK8 (#7574)

* explicitly install openjdk8

* handle earlier version of ubuntu

* install software-properties-common

* update -y

* update commands

* Indents correction

* Add script to build doc files for all versions (#7636)

* Add script to build doc files for all versions

* Fix

* Use add versipn script of each different version

* add fashion mnist and move mnists to s3 (#7635)

* add fashion mnist and move mnists to s3

* refactor

* add doc for dataset (#7644)

* Change apache package URL to https (#7622)

* Pip installer for CoreML Converter: mxnet-to-coreml (#7624)

* Fixing CoreML converter's README: typos/grammar/etc.

* CoreML converter README update: Talk about layers first and then about models.

* Providing examples on converting various standard models; calling out issues with InceptionV3.

* Fixing CoreML converter's README: typos/grammar/etc.

* CoreML converter README update: Talk about layers first and then about models.

* Providing examples on converting various standard models; calling out issues with InceptionV3.

* Pip installer for converter: mxnet-coreml-converter.

Runs only on MacOS and python 2.7. Once inside the directory pip_package, user needs
to run:
python setup.py bdist_wheel
twine upload dist/*

Once uploaded it'll look like this:
https://testpypi.python.org/pypi/mxnet-coreml-converter

Also updated the README for converter to reflect this.

Note that we are going with a package per tool for the time being. Please leave feedback if you think it is better to adopt the policy of all the tools in one single package.

Unit tests continue to pass.

* More informative pypi package documentation.

* Updating MacOS in release notes to 10.11 after testing on it.

* Changing the name to mxnet-to-coreml and version to 0.1.0.

* Added license to setup.py

* Updating readme files with the correct pip package name.

* Parallelize windows unit tests of python 2 and 3 in jenkins (#7646)

* parallelize python windows tests

* reordered for clarity

* Removed asset loaded insecurely and added the asset to be loaded from the origin securely (#7649)

* skip failing test temporarily (#7648)

* lower really high threshold to fix test failure (#7650)

* Doc updates for install and doc generation (#7647)

* fluent (#7584)

* add 1x1 convolution to tests

* indent

* Refactor random linalg contrib namespaces (#7604)

* Refactor namespaces contrib, linalg, random, and sparse for op registration

Change examples in documentation

Change namespace usage in examples

Fix pylint

Remove unused import

Switch name and alias in linalg and random

Change stype comparison from string to int for functions used internally

Change documentation to use the right namespace

Register ops under ndarray/op.py and symbol/op.py

Remove unused import

Change .cu op names

* Add __all__ to ndarray and symbol modules

* Revert "Add __all__ to ndarray and symbol modules"

This reverts commit 8bc5de7.

* Add __all__ to ndarray and symbol modules

* fix gluon fasionmnist dataset (#7655)

fix gluon fasionmnist dataset

* Parallelize Python 2 and 3 unit test cases in Jenkins CI. (#7658)

* Parallelize Python 2 and 3 unit test cases.

* Parallelize python 2 and 3 unit tests cases in jenkins

* Parallelize python 2 and 3 unit tests cases in jenkins

* Change namespace and make logging functionality changes (#7627)

* Change namespace and make logging functionality changes

* Help comment changes

* update mklml and mkl mac support (#7587)

* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* Indents correction

* add 1x1 convolution to tests

* indent

* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* Indents correction

* add 1x1 convolution to tests

* indent

* cpplint

* indent
mbaijal pushed a commit to mbaijal/incubator-mxnet that referenced this pull request Sep 6, 2017
mbaijal pushed a commit to mbaijal/incubator-mxnet that referenced this pull request Sep 6, 2017
* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* fix linalg_impl (apache#7611)

* fix linalg_impl

* fix

* fix

* fix

* set build status to success only after job ends (apache#7628)

Earlier code marks status as success initially. So any new PR shows jenkins status as success if we see the check mark on github. On opening the full build status, we see that builds haven't even started or are running. 

If something fails, variable changes to failure then. So even without this merge, a red mark on github indicates that build has failed correctly. That behavior is unchanged.

* Fix build status of a test (apache#7629)

installs bc required by sh2ju.sh and changes the regex match to capital alphabet as it clashes with a warning thrown by opencv driver

* entire codebase build with mshadow_use_clas=0 (apache#7625)

* Update README.md (apache#7630)

*  unit test for csv iter, doc update for libsvmiter (apache#7623)

* add unit test for csv iter

* fix lint

* add libsvm to mxnet.io doc

* update libsvm doc

* gpu access of ndarray (apache#7496)

* gpu access of ndarray

* gpu access from C++ api

* gpu access fix

* Update c_api.cc

* Update c_api.cc

* refactor cudnn algo reg to no use string (apache#7561)

* refactor cudnn algo reg to no use string

* refactor ctx list

* fix

* refactor save_inputs

* Update io.md (apache#7634)

* fix tests (apache#7633)

* [build] explicitly install JDK8 (apache#7574)

* explicitly install openjdk8

* handle earlier version of ubuntu

* install software-properties-common

* update -y

* update commands

* Indents correction

* Add script to build doc files for all versions (apache#7636)

* Add script to build doc files for all versions

* Fix

* Use add versipn script of each different version

* add fashion mnist and move mnists to s3 (apache#7635)

* add fashion mnist and move mnists to s3

* refactor

* add doc for dataset (apache#7644)

* Change apache package URL to https (apache#7622)

* Pip installer for CoreML Converter: mxnet-to-coreml (apache#7624)

* Fixing CoreML converter's README: typos/grammar/etc.

* CoreML converter README update: Talk about layers first and then about models.

* Providing examples on converting various standard models; calling out issues with InceptionV3.

* Fixing CoreML converter's README: typos/grammar/etc.

* CoreML converter README update: Talk about layers first and then about models.

* Providing examples on converting various standard models; calling out issues with InceptionV3.

* Pip installer for converter: mxnet-coreml-converter.

Runs only on MacOS and python 2.7. Once inside the directory pip_package, user needs
to run:
python setup.py bdist_wheel
twine upload dist/*

Once uploaded it'll look like this:
https://testpypi.python.org/pypi/mxnet-coreml-converter

Also updated the README for converter to reflect this.

Note that we are going with a package per tool for the time being. Please leave feedback if you think it is better to adopt the policy of all the tools in one single package.

Unit tests continue to pass.

* More informative pypi package documentation.

* Updating MacOS in release notes to 10.11 after testing on it.

* Changing the name to mxnet-to-coreml and version to 0.1.0.

* Added license to setup.py

* Updating readme files with the correct pip package name.

* Parallelize windows unit tests of python 2 and 3 in jenkins (apache#7646)

* parallelize python windows tests

* reordered for clarity

* Removed asset loaded insecurely and added the asset to be loaded from the origin securely (apache#7649)

* skip failing test temporarily (apache#7648)

* lower really high threshold to fix test failure (apache#7650)

* Doc updates for install and doc generation (apache#7647)

* fluent (apache#7584)

* add 1x1 convolution to tests

* indent

* Refactor random linalg contrib namespaces (apache#7604)

* Refactor namespaces contrib, linalg, random, and sparse for op registration

Change examples in documentation

Change namespace usage in examples

Fix pylint

Remove unused import

Switch name and alias in linalg and random

Change stype comparison from string to int for functions used internally

Change documentation to use the right namespace

Register ops under ndarray/op.py and symbol/op.py

Remove unused import

Change .cu op names

* Add __all__ to ndarray and symbol modules

* Revert "Add __all__ to ndarray and symbol modules"

This reverts commit 8bc5de7.

* Add __all__ to ndarray and symbol modules

* fix gluon fasionmnist dataset (apache#7655)

fix gluon fasionmnist dataset

* Parallelize Python 2 and 3 unit test cases in Jenkins CI. (apache#7658)

* Parallelize Python 2 and 3 unit test cases.

* Parallelize python 2 and 3 unit tests cases in jenkins

* Parallelize python 2 and 3 unit tests cases in jenkins

* Change namespace and make logging functionality changes (apache#7627)

* Change namespace and make logging functionality changes

* Help comment changes

* update mklml and mkl mac support (apache#7587)

* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* Indents correction

* add 1x1 convolution to tests

* indent

* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* Indents correction

* add 1x1 convolution to tests

* indent

* cpplint

* indent
cjolivier01 pushed a commit to cjolivier01/mxnet that referenced this pull request Sep 11, 2017
cjolivier01 pushed a commit to cjolivier01/mxnet that referenced this pull request Sep 11, 2017
* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* fix linalg_impl (apache#7611)

* fix linalg_impl

* fix

* fix

* fix

* set build status to success only after job ends (apache#7628)

Earlier code marks status as success initially. So any new PR shows jenkins status as success if we see the check mark on github. On opening the full build status, we see that builds haven't even started or are running. 

If something fails, variable changes to failure then. So even without this merge, a red mark on github indicates that build has failed correctly. That behavior is unchanged.

* Fix build status of a test (apache#7629)

installs bc required by sh2ju.sh and changes the regex match to capital alphabet as it clashes with a warning thrown by opencv driver

* entire codebase build with mshadow_use_clas=0 (apache#7625)

* Update README.md (apache#7630)

*  unit test for csv iter, doc update for libsvmiter (apache#7623)

* add unit test for csv iter

* fix lint

* add libsvm to mxnet.io doc

* update libsvm doc

* gpu access of ndarray (apache#7496)

* gpu access of ndarray

* gpu access from C++ api

* gpu access fix

* Update c_api.cc

* Update c_api.cc

* refactor cudnn algo reg to no use string (apache#7561)

* refactor cudnn algo reg to no use string

* refactor ctx list

* fix

* refactor save_inputs

* Update io.md (apache#7634)

* fix tests (apache#7633)

* [build] explicitly install JDK8 (apache#7574)

* explicitly install openjdk8

* handle earlier version of ubuntu

* install software-properties-common

* update -y

* update commands

* Indents correction

* Add script to build doc files for all versions (apache#7636)

* Add script to build doc files for all versions

* Fix

* Use add versipn script of each different version

* add fashion mnist and move mnists to s3 (apache#7635)

* add fashion mnist and move mnists to s3

* refactor

* add doc for dataset (apache#7644)

* Change apache package URL to https (apache#7622)

* Pip installer for CoreML Converter: mxnet-to-coreml (apache#7624)

* Fixing CoreML converter's README: typos/grammar/etc.

* CoreML converter README update: Talk about layers first and then about models.

* Providing examples on converting various standard models; calling out issues with InceptionV3.

* Fixing CoreML converter's README: typos/grammar/etc.

* CoreML converter README update: Talk about layers first and then about models.

* Providing examples on converting various standard models; calling out issues with InceptionV3.

* Pip installer for converter: mxnet-coreml-converter.

Runs only on MacOS and python 2.7. Once inside the directory pip_package, user needs
to run:
python setup.py bdist_wheel
twine upload dist/*

Once uploaded it'll look like this:
https://testpypi.python.org/pypi/mxnet-coreml-converter

Also updated the README for converter to reflect this.

Note that we are going with a package per tool for the time being. Please leave feedback if you think it is better to adopt the policy of all the tools in one single package.

Unit tests continue to pass.

* More informative pypi package documentation.

* Updating MacOS in release notes to 10.11 after testing on it.

* Changing the name to mxnet-to-coreml and version to 0.1.0.

* Added license to setup.py

* Updating readme files with the correct pip package name.

* Parallelize windows unit tests of python 2 and 3 in jenkins (apache#7646)

* parallelize python windows tests

* reordered for clarity

* Removed asset loaded insecurely and added the asset to be loaded from the origin securely (apache#7649)

* skip failing test temporarily (apache#7648)

* lower really high threshold to fix test failure (apache#7650)

* Doc updates for install and doc generation (apache#7647)

* fluent (apache#7584)

* add 1x1 convolution to tests

* indent

* Refactor random linalg contrib namespaces (apache#7604)

* Refactor namespaces contrib, linalg, random, and sparse for op registration

Change examples in documentation

Change namespace usage in examples

Fix pylint

Remove unused import

Switch name and alias in linalg and random

Change stype comparison from string to int for functions used internally

Change documentation to use the right namespace

Register ops under ndarray/op.py and symbol/op.py

Remove unused import

Change .cu op names

* Add __all__ to ndarray and symbol modules

* Revert "Add __all__ to ndarray and symbol modules"

This reverts commit 8bc5de7.

* Add __all__ to ndarray and symbol modules

* fix gluon fasionmnist dataset (apache#7655)

fix gluon fasionmnist dataset

* Parallelize Python 2 and 3 unit test cases in Jenkins CI. (apache#7658)

* Parallelize Python 2 and 3 unit test cases.

* Parallelize python 2 and 3 unit tests cases in jenkins

* Parallelize python 2 and 3 unit tests cases in jenkins

* Change namespace and make logging functionality changes (apache#7627)

* Change namespace and make logging functionality changes

* Help comment changes

* update mklml and mkl mac support (apache#7587)

* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* Indents correction

* add 1x1 convolution to tests

* indent

* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* Indents correction

* add 1x1 convolution to tests

* indent

* cpplint

* indent
crazy-cat pushed a commit to crazy-cat/incubator-mxnet that referenced this pull request Oct 26, 2017
crazy-cat pushed a commit to crazy-cat/incubator-mxnet that referenced this pull request Oct 26, 2017
* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* fix linalg_impl (apache#7611)

* fix linalg_impl

* fix

* fix

* fix

* set build status to success only after job ends (apache#7628)

Earlier code marks status as success initially. So any new PR shows jenkins status as success if we see the check mark on github. On opening the full build status, we see that builds haven't even started or are running. 

If something fails, variable changes to failure then. So even without this merge, a red mark on github indicates that build has failed correctly. That behavior is unchanged.

* Fix build status of a test (apache#7629)

installs bc required by sh2ju.sh and changes the regex match to capital alphabet as it clashes with a warning thrown by opencv driver

* entire codebase build with mshadow_use_clas=0 (apache#7625)

* Update README.md (apache#7630)

*  unit test for csv iter, doc update for libsvmiter (apache#7623)

* add unit test for csv iter

* fix lint

* add libsvm to mxnet.io doc

* update libsvm doc

* gpu access of ndarray (apache#7496)

* gpu access of ndarray

* gpu access from C++ api

* gpu access fix

* Update c_api.cc

* Update c_api.cc

* refactor cudnn algo reg to no use string (apache#7561)

* refactor cudnn algo reg to no use string

* refactor ctx list

* fix

* refactor save_inputs

* Update io.md (apache#7634)

* fix tests (apache#7633)

* [build] explicitly install JDK8 (apache#7574)

* explicitly install openjdk8

* handle earlier version of ubuntu

* install software-properties-common

* update -y

* update commands

* Indents correction

* Add script to build doc files for all versions (apache#7636)

* Add script to build doc files for all versions

* Fix

* Use add versipn script of each different version

* add fashion mnist and move mnists to s3 (apache#7635)

* add fashion mnist and move mnists to s3

* refactor

* add doc for dataset (apache#7644)

* Change apache package URL to https (apache#7622)

* Pip installer for CoreML Converter: mxnet-to-coreml (apache#7624)

* Fixing CoreML converter's README: typos/grammar/etc.

* CoreML converter README update: Talk about layers first and then about models.

* Providing examples on converting various standard models; calling out issues with InceptionV3.

* Fixing CoreML converter's README: typos/grammar/etc.

* CoreML converter README update: Talk about layers first and then about models.

* Providing examples on converting various standard models; calling out issues with InceptionV3.

* Pip installer for converter: mxnet-coreml-converter.

Runs only on MacOS and python 2.7. Once inside the directory pip_package, user needs
to run:
python setup.py bdist_wheel
twine upload dist/*

Once uploaded it'll look like this:
https://testpypi.python.org/pypi/mxnet-coreml-converter

Also updated the README for converter to reflect this.

Note that we are going with a package per tool for the time being. Please leave feedback if you think it is better to adopt the policy of all the tools in one single package.

Unit tests continue to pass.

* More informative pypi package documentation.

* Updating MacOS in release notes to 10.11 after testing on it.

* Changing the name to mxnet-to-coreml and version to 0.1.0.

* Added license to setup.py

* Updating readme files with the correct pip package name.

* Parallelize windows unit tests of python 2 and 3 in jenkins (apache#7646)

* parallelize python windows tests

* reordered for clarity

* Removed asset loaded insecurely and added the asset to be loaded from the origin securely (apache#7649)

* skip failing test temporarily (apache#7648)

* lower really high threshold to fix test failure (apache#7650)

* Doc updates for install and doc generation (apache#7647)

* fluent (apache#7584)

* add 1x1 convolution to tests

* indent

* Refactor random linalg contrib namespaces (apache#7604)

* Refactor namespaces contrib, linalg, random, and sparse for op registration

Change examples in documentation

Change namespace usage in examples

Fix pylint

Remove unused import

Switch name and alias in linalg and random

Change stype comparison from string to int for functions used internally

Change documentation to use the right namespace

Register ops under ndarray/op.py and symbol/op.py

Remove unused import

Change .cu op names

* Add __all__ to ndarray and symbol modules

* Revert "Add __all__ to ndarray and symbol modules"

This reverts commit 8bc5de7.

* Add __all__ to ndarray and symbol modules

* fix gluon fasionmnist dataset (apache#7655)

fix gluon fasionmnist dataset

* Parallelize Python 2 and 3 unit test cases in Jenkins CI. (apache#7658)

* Parallelize Python 2 and 3 unit test cases.

* Parallelize python 2 and 3 unit tests cases in jenkins

* Parallelize python 2 and 3 unit tests cases in jenkins

* Change namespace and make logging functionality changes (apache#7627)

* Change namespace and make logging functionality changes

* Help comment changes

* update mklml and mkl mac support (apache#7587)

* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* Indents correction

* add 1x1 convolution to tests

* indent

* 1x1 convolution acceleration

* GEMM directly without im2col or col2im in 1x1 convolution(stride=1,pad=0). The 1x1 convolution is used very common in modern CNN networks such as Googlenet/Inception/Resnet/Mobilenet etc.

* cpplint

* Indents correction

* add 1x1 convolution to tests

* indent

* cpplint

* indent
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants