Skip to content

Commit

Permalink
Merge pull request #15 from pfnet-research/fix_v1.0.1
Browse files Browse the repository at this point in the history
add notice
  • Loading branch information
okdshin authored Jun 22, 2018
2 parents 9ec62a0 + f49698b commit 017b6d2
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")

set(MENOH_MAJOR_VERSION 1)
set(MENOH_MINOR_VERSION 0)
set(MENOH_PATCH_VERSION 0)
set(MENOH_PATCH_VERSION 1)

# Options
option(BUILD_SHARED_LIBS "Build shared libs" ON)
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ Menoh is DNN inference library with C API.

Menoh is released under MIT License.

DISCLAIMER: Menoh is still experimental. Use it at your own risk.
In particular not all operators in ONNX are supported, so please check whether the operators used in your model are supported. We have checked that VGG16 and ResNet50 models converted by onnx-chainer work fine.

[Document](https://pfnet-research.github.io/menoh/)

This codebase contains C API and C++ API.

For Windows users, prebuild libraries are [available](https://github.com/pfnet-research/menoh/releases/download/untagged-3aa294f64531bcbd766c/Menoh_Prebuild_Cpp_Win.zip) and Nuget package is [available](https://www.nuget.org/packages/Menoh/).
For Windows users, prebuild libraries are available (see [release](https://github.com/pfnet-research/menoh/releases)) and Nuget package is [available](https://www.nuget.org/packages/Menoh/).

See also
- Chainer model to ONNX : [onnx-chainer](https://github.com/chainer/onnx-chainer)
Expand Down
43 changes: 43 additions & 0 deletions docs/LICENSE_THIRD_PARTY
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
This software depends on

==== Intel(R) MKL-DNN ====

Intel(R) MKL-DNN distributed under Apache License 2.0 licence

https://github.com/intel/mkl-dnn

http://www.apache.org/licenses/LICENSE-2.0

==== Xbyak ====

Xbyak distributed under 3-clause BSD licence

https://github.com/intel/mkl-dnn/blob/master/src/cpu/xbyak/COPYRIGHT

==== mklml ====

Copyright (c) 2016-2018, Intel Corporation
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 comments on commit 017b6d2

Please sign in to comment.