onnxruntime 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 54260e1a83f205da2a0a016cc5b6a8508aa8969b484c22f18db966429e6007b0
4
- data.tar.gz: 44b4310ff48bb154057adf1ddc0622980148cfda47d7b973f01ae58f4e5e7416
3
+ metadata.gz: dc2115e3b32ec7d1d0ab2da64edfb5bf2ebf24ecc6ad705d4a53ae4793e60412
4
+ data.tar.gz: 5e53efd5de12ed5ac06a7e4472c8ee043ffbbba9c82b5f49e340f6a70a4dfcdf
5
5
  SHA512:
6
- metadata.gz: d61177039a5314b80342b627d5f7f1f8352be51d95dd71568d9b3ef2a5d970f9b9763023e7ca653f86689aa0ade0188c2d3a28a6f2cd3c890c43f7358952f77a
7
- data.tar.gz: 7c2a6c4c52e93fc3f3dc4a297b921eb69606b89e1c05d40ac736dd731d8e5ab2a51c5173c2cde7b081ec46f19d88a333adf96c01cef485ba6d73943e9160c640
6
+ metadata.gz: 93f83646d23298213b971ea7462ce4e5cc970c49d7572b646a6f8003b05689a5a232a3acc05b9cacfbabf65534c046d687eecc80fbf5583b2691391d30b54872
7
+ data.tar.gz: fc0349312d70944a2169302e8b9f1f70f255e29b60c523f0ba1a688ac162cc230636f9ef333d6ac032d855d9387d88234181a69edade6407bde027050972a2da
@@ -1,3 +1,9 @@
1
+ ## 0.5.0 (2020-10-01)
2
+
3
+ - Updated ONNX Runtime to 1.5.1
4
+ - OpenMP is now required on Mac
5
+ - Fixed `mul_1.onnx` example
6
+
1
7
  ## 0.4.0 (2020-07-20)
2
8
 
3
9
  - Updated ONNX Runtime to 1.4.0
@@ -1,23 +1,22 @@
1
- Copyright (c) 2019-2020 Andrew Kane
2
- Datasets Copyright (c) Microsoft Corporation
3
-
4
1
  MIT License
5
2
 
6
- Permission is hereby granted, free of charge, to any person obtaining
7
- a copy of this software and associated documentation files (the
8
- "Software"), to deal in the Software without restriction, including
9
- without limitation the rights to use, copy, modify, merge, publish,
10
- distribute, sublicense, and/or sell copies of the Software, and to
11
- permit persons to whom the Software is furnished to do so, subject to
12
- the following conditions:
3
+ Copyright (c) 2018 Microsoft Corporation
4
+ Copyright (c) 2019-2020 Andrew Kane
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
13
12
 
14
- The above copyright notice and this permission notice shall be
15
- included in all copies or substantial portions of the Software.
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
16
15
 
17
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
data/README.md CHANGED
@@ -14,6 +14,12 @@ Add this line to your application’s Gemfile:
14
14
  gem 'onnxruntime'
15
15
  ```
16
16
 
17
+ On Mac, also install OpenMP:
18
+
19
+ ```sh
20
+ brew install libomp
21
+ ```
22
+
17
23
  ## Getting Started
18
24
 
19
25
  Load a model and make predictions
@@ -2,7 +2,15 @@ module OnnxRuntime
2
2
  module FFI
3
3
  extend ::FFI::Library
4
4
 
5
- ffi_lib Array(OnnxRuntime.ffi_lib)
5
+ begin
6
+ ffi_lib OnnxRuntime.ffi_lib
7
+ rescue LoadError => e
8
+ if e.message.include?("Library not loaded: /usr/local/opt/libomp/lib/libomp.dylib") && e.message.include?("Reason: image not found")
9
+ raise LoadError, "OpenMP not found. Run `brew install libomp`"
10
+ else
11
+ raise e
12
+ end
13
+ end
6
14
 
7
15
  # https://github.com/microsoft/onnxruntime/blob/master/include/onnxruntime/core/session/onnxruntime_c_api.h
8
16
  # keep same order
@@ -124,7 +124,7 @@ module OnnxRuntime
124
124
  check_status api[:SessionGetModelMetadata].call(read_pointer, metadata)
125
125
 
126
126
  custom_metadata_map = {}
127
- check_status = api[:ModelMetadataGetCustomMetadataMapKeys].call(metadata.read_pointer, @allocator.read_pointer, keys, num_keys)
127
+ check_status api[:ModelMetadataGetCustomMetadataMapKeys].call(metadata.read_pointer, @allocator.read_pointer, keys, num_keys)
128
128
  num_keys.read(:int64_t).times do |i|
129
129
  key = keys.read_pointer[i * ::FFI::Pointer.size].read_pointer.read_string
130
130
  value = ::FFI::MemoryPointer.new(:string)
@@ -176,7 +176,7 @@ module OnnxRuntime
176
176
 
177
177
  def create_input_tensor(input_feed)
178
178
  allocator_info = ::FFI::MemoryPointer.new(:pointer)
179
- check_status = api[:CreateCpuMemoryInfo].call(1, 0, allocator_info)
179
+ check_status api[:CreateCpuMemoryInfo].call(1, 0, allocator_info)
180
180
  input_tensor = ::FFI::MemoryPointer.new(:pointer, input_feed.size)
181
181
 
182
182
  input_feed.each_with_index do |(input_name, input), idx|
@@ -236,7 +236,7 @@ module OnnxRuntime
236
236
 
237
237
  def create_from_onnx_value(out_ptr)
238
238
  out_type = ::FFI::MemoryPointer.new(:int)
239
- check_status = api[:GetValueType].call(out_ptr, out_type)
239
+ check_status api[:GetValueType].call(out_ptr, out_type)
240
240
  type = FFI::OnnxType[out_type.read_int]
241
241
 
242
242
  case type
@@ -1,3 +1,3 @@
1
1
  module OnnxRuntime
2
- VERSION = "0.4.0"
2
+ VERSION = "0.5.0"
3
3
  end
@@ -225,7 +225,7 @@ THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
225
225
 
226
226
  _____
227
227
 
228
- eigen-git-mirror
228
+ Eigen
229
229
 
230
230
  MPL v2.0
231
231
  Mozilla Public License Version 2.0
@@ -610,7 +610,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
610
610
 
611
611
  _____
612
612
 
613
- intel/mkl-dnn
613
+ intel/dnnl
614
614
 
615
615
  Copyright 2016-2018 Intel Corporation
616
616
 
@@ -3794,4 +3794,1030 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3794
3794
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3795
3795
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3796
3796
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3797
- SOFTWARE
3797
+ SOFTWARE
3798
+
3799
+ -----
3800
+
3801
+ nlohmann/json
3802
+
3803
+ MIT License
3804
+
3805
+ Copyright (c) 2013-2019 Niels Lohmann
3806
+
3807
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3808
+ of this software and associated documentation files (the "Software"), to deal
3809
+ in the Software without restriction, including without limitation the rights
3810
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3811
+ copies of the Software, and to permit persons to whom the Software is
3812
+ furnished to do so, subject to the following conditions:
3813
+
3814
+ The above copyright notice and this permission notice shall be included in all
3815
+ copies or substantial portions of the Software.
3816
+
3817
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3818
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3819
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3820
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3821
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3822
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3823
+ SOFTWARE.
3824
+
3825
+ -----
3826
+
3827
+ dcleblanc/SafeInt
3828
+
3829
+ MIT License
3830
+
3831
+ Copyright (c) 2018 Microsoft
3832
+
3833
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3834
+ of this software and associated documentation files (the "Software"), to deal
3835
+ in the Software without restriction, including without limitation the rights
3836
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3837
+ copies of the Software, and to permit persons to whom the Software is
3838
+ furnished to do so, subject to the following conditions:
3839
+
3840
+ The above copyright notice and this permission notice shall be included in all
3841
+ copies or substantial portions of the Software.
3842
+
3843
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3844
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3845
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3846
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3847
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3848
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3849
+ SOFTWARE.
3850
+
3851
+ -----
3852
+ Open MPI
3853
+
3854
+ 3-Clause BSD License
3855
+
3856
+ Most files in this release are marked with the copyrights of the
3857
+ organizations who have edited them. The copyrights below are in no
3858
+ particular order and generally reflect members of the Open MPI core
3859
+ team who have contributed code to this release. The copyrights for
3860
+ code used under license from other parties are included in the
3861
+ corresponding files.
3862
+
3863
+ Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
3864
+ University Research and Technology
3865
+ Corporation. All rights reserved.
3866
+ Copyright (c) 2004-2017 The University of Tennessee and The University
3867
+ of Tennessee Research Foundation. All rights
3868
+ reserved.
3869
+ Copyright (c) 2004-2010 High Performance Computing Center Stuttgart,
3870
+ University of Stuttgart. All rights reserved.
3871
+ Copyright (c) 2004-2008 The Regents of the University of California.
3872
+ All rights reserved.
3873
+ Copyright (c) 2006-2017 Los Alamos National Security, LLC. All rights
3874
+ reserved.
3875
+ Copyright (c) 2006-2017 Cisco Systems, Inc. All rights reserved.
3876
+ Copyright (c) 2006-2010 Voltaire, Inc. All rights reserved.
3877
+ Copyright (c) 2006-2017 Sandia National Laboratories. All rights reserved.
3878
+ Copyright (c) 2006-2010 Sun Microsystems, Inc. All rights reserved.
3879
+ Use is subject to license terms.
3880
+ Copyright (c) 2006-2017 The University of Houston. All rights reserved.
3881
+ Copyright (c) 2006-2009 Myricom, Inc. All rights reserved.
3882
+ Copyright (c) 2007-2017 UT-Battelle, LLC. All rights reserved.
3883
+ Copyright (c) 2007-2017 IBM Corporation. All rights reserved.
3884
+ Copyright (c) 1998-2005 Forschungszentrum Juelich, Juelich Supercomputing
3885
+ Centre, Federal Republic of Germany
3886
+ Copyright (c) 2005-2008 ZIH, TU Dresden, Federal Republic of Germany
3887
+ Copyright (c) 2007 Evergrid, Inc. All rights reserved.
3888
+ Copyright (c) 2008 Chelsio, Inc. All rights reserved.
3889
+ Copyright (c) 2008-2009 Institut National de Recherche en
3890
+ Informatique. All rights reserved.
3891
+ Copyright (c) 2007 Lawrence Livermore National Security, LLC.
3892
+ All rights reserved.
3893
+ Copyright (c) 2007-2017 Mellanox Technologies. All rights reserved.
3894
+ Copyright (c) 2006-2010 QLogic Corporation. All rights reserved.
3895
+ Copyright (c) 2008-2017 Oak Ridge National Labs. All rights reserved.
3896
+ Copyright (c) 2006-2012 Oracle and/or its affiliates. All rights reserved.
3897
+ Copyright (c) 2009-2015 Bull SAS. All rights reserved.
3898
+ Copyright (c) 2010 ARM ltd. All rights reserved.
3899
+ Copyright (c) 2016 ARM, Inc. All rights reserved.
3900
+ Copyright (c) 2010-2011 Alex Brick . All rights reserved.
3901
+ Copyright (c) 2012 The University of Wisconsin-La Crosse. All rights
3902
+ reserved.
3903
+ Copyright (c) 2013-2016 Intel, Inc. All rights reserved.
3904
+ Copyright (c) 2011-2017 NVIDIA Corporation. All rights reserved.
3905
+ Copyright (c) 2016 Broadcom Limited. All rights reserved.
3906
+ Copyright (c) 2011-2017 Fujitsu Limited. All rights reserved.
3907
+ Copyright (c) 2014-2015 Hewlett-Packard Development Company, LP. All
3908
+ rights reserved.
3909
+ Copyright (c) 2013-2017 Research Organization for Information Science (RIST).
3910
+ All rights reserved.
3911
+ Copyright (c) 2017-2018 Amazon.com, Inc. or its affiliates. All Rights
3912
+ reserved.
3913
+ Copyright (c) 2018 DataDirect Networks. All rights reserved.
3914
+ Copyright (c) 2018-2019 Triad National Security, LLC. All rights reserved.
3915
+
3916
+ $COPYRIGHT$
3917
+
3918
+ Additional copyrights may follow
3919
+
3920
+ $HEADER$
3921
+
3922
+ Redistribution and use in source and binary forms, with or without
3923
+ modification, are permitted provided that the following conditions are
3924
+ met:
3925
+
3926
+ - Redistributions of source code must retain the above copyright
3927
+ notice, this list of conditions and the following disclaimer.
3928
+
3929
+ - Redistributions in binary form must reproduce the above copyright
3930
+ notice, this list of conditions and the following disclaimer listed
3931
+ in this license in the documentation and/or other materials
3932
+ provided with the distribution.
3933
+
3934
+ - Neither the name of the copyright holders nor the names of its
3935
+ contributors may be used to endorse or promote products derived from
3936
+ this software without specific prior written permission.
3937
+
3938
+ The copyright holders provide no reassurances that the source code
3939
+ provided does not infringe any patent, copyright, or any other
3940
+ intellectual property rights of third parties. The copyright holders
3941
+ disclaim any liability to any recipient for claims brought against
3942
+ recipient by any third party for infringement of that parties
3943
+ intellectual property rights.
3944
+
3945
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
3946
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
3947
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
3948
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
3949
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3950
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3951
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3952
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3953
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3954
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3955
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3956
+
3957
+ -----
3958
+
3959
+ The Android Open Source Project
3960
+
3961
+ Copyright (C) 2017 The Android Open Source Project
3962
+ Licensed under the Apache License, Version 2.0 (the "License");
3963
+ you may not use this file except in compliance with the License.
3964
+ You may obtain a copy of the License at
3965
+
3966
+ http://www.apache.org/licenses/LICENSE-2.0
3967
+
3968
+ Unless required by applicable law or agreed to in writing, software
3969
+ distributed under the License is distributed on an "AS IS" BASIS,
3970
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3971
+ See the License for the specific language governing permissions and
3972
+ limitations under the License.
3973
+
3974
+ ------
3975
+
3976
+ libprotobuf-mutator
3977
+
3978
+ Apache License
3979
+ Version 2.0, January 2004
3980
+ http://www.apache.org/licenses/
3981
+
3982
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3983
+
3984
+ 1. Definitions.
3985
+
3986
+ "License" shall mean the terms and conditions for use, reproduction,
3987
+ and distribution as defined by Sections 1 through 9 of this document.
3988
+
3989
+ "Licensor" shall mean the copyright owner or entity authorized by
3990
+ the copyright owner that is granting the License.
3991
+
3992
+ "Legal Entity" shall mean the union of the acting entity and all
3993
+ other entities that control, are controlled by, or are under common
3994
+ control with that entity. For the purposes of this definition,
3995
+ "control" means (i) the power, direct or indirect, to cause the
3996
+ direction or management of such entity, whether by contract or
3997
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
3998
+ outstanding shares, or (iii) beneficial ownership of such entity.
3999
+
4000
+ "You" (or "Your") shall mean an individual or Legal Entity
4001
+ exercising permissions granted by this License.
4002
+
4003
+ "Source" form shall mean the preferred form for making modifications,
4004
+ including but not limited to software source code, documentation
4005
+ source, and configuration files.
4006
+
4007
+ "Object" form shall mean any form resulting from mechanical
4008
+ transformation or translation of a Source form, including but
4009
+ not limited to compiled object code, generated documentation,
4010
+ and conversions to other media types.
4011
+
4012
+ "Work" shall mean the work of authorship, whether in Source or
4013
+ Object form, made available under the License, as indicated by a
4014
+ copyright notice that is included in or attached to the work
4015
+ (an example is provided in the Appendix below).
4016
+
4017
+ "Derivative Works" shall mean any work, whether in Source or Object
4018
+ form, that is based on (or derived from) the Work and for which the
4019
+ editorial revisions, annotations, elaborations, or other modifications
4020
+ represent, as a whole, an original work of authorship. For the purposes
4021
+ of this License, Derivative Works shall not include works that remain
4022
+ separable from, or merely link (or bind by name) to the interfaces of,
4023
+ the Work and Derivative Works thereof.
4024
+
4025
+ "Contribution" shall mean any work of authorship, including
4026
+ the original version of the Work and any modifications or additions
4027
+ to that Work or Derivative Works thereof, that is intentionally
4028
+ submitted to Licensor for inclusion in the Work by the copyright owner
4029
+ or by an individual or Legal Entity authorized to submit on behalf of
4030
+ the copyright owner. For the purposes of this definition, "submitted"
4031
+ means any form of electronic, verbal, or written communication sent
4032
+ to the Licensor or its representatives, including but not limited to
4033
+ communication on electronic mailing lists, source code control systems,
4034
+ and issue tracking systems that are managed by, or on behalf of, the
4035
+ Licensor for the purpose of discussing and improving the Work, but
4036
+ excluding communication that is conspicuously marked or otherwise
4037
+ designated in writing by the copyright owner as "Not a Contribution."
4038
+
4039
+ "Contributor" shall mean Licensor and any individual or Legal Entity
4040
+ on behalf of whom a Contribution has been received by Licensor and
4041
+ subsequently incorporated within the Work.
4042
+
4043
+ 2. Grant of Copyright License. Subject to the terms and conditions of
4044
+ this License, each Contributor hereby grants to You a perpetual,
4045
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4046
+ copyright license to reproduce, prepare Derivative Works of,
4047
+ publicly display, publicly perform, sublicense, and distribute the
4048
+ Work and such Derivative Works in Source or Object form.
4049
+
4050
+ 3. Grant of Patent License. Subject to the terms and conditions of
4051
+ this License, each Contributor hereby grants to You a perpetual,
4052
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4053
+ (except as stated in this section) patent license to make, have made,
4054
+ use, offer to sell, sell, import, and otherwise transfer the Work,
4055
+ where such license applies only to those patent claims licensable
4056
+ by such Contributor that are necessarily infringed by their
4057
+ Contribution(s) alone or by combination of their Contribution(s)
4058
+ with the Work to which such Contribution(s) was submitted. If You
4059
+ institute patent litigation against any entity (including a
4060
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
4061
+ or a Contribution incorporated within the Work constitutes direct
4062
+ or contributory patent infringement, then any patent licenses
4063
+ granted to You under this License for that Work shall terminate
4064
+ as of the date such litigation is filed.
4065
+
4066
+ 4. Redistribution. You may reproduce and distribute copies of the
4067
+ Work or Derivative Works thereof in any medium, with or without
4068
+ modifications, and in Source or Object form, provided that You
4069
+ meet the following conditions:
4070
+
4071
+ (a) You must give any other recipients of the Work or
4072
+ Derivative Works a copy of this License; and
4073
+
4074
+ (b) You must cause any modified files to carry prominent notices
4075
+ stating that You changed the files; and
4076
+
4077
+ (c) You must retain, in the Source form of any Derivative Works
4078
+ that You distribute, all copyright, patent, trademark, and
4079
+ attribution notices from the Source form of the Work,
4080
+ excluding those notices that do not pertain to any part of
4081
+ the Derivative Works; and
4082
+
4083
+ (d) If the Work includes a "NOTICE" text file as part of its
4084
+ distribution, then any Derivative Works that You distribute must
4085
+ include a readable copy of the attribution notices contained
4086
+ within such NOTICE file, excluding those notices that do not
4087
+ pertain to any part of the Derivative Works, in at least one
4088
+ of the following places: within a NOTICE text file distributed
4089
+ as part of the Derivative Works; within the Source form or
4090
+ documentation, if provided along with the Derivative Works; or,
4091
+ within a display generated by the Derivative Works, if and
4092
+ wherever such third-party notices normally appear. The contents
4093
+ of the NOTICE file are for informational purposes only and
4094
+ do not modify the License. You may add Your own attribution
4095
+ notices within Derivative Works that You distribute, alongside
4096
+ or as an addendum to the NOTICE text from the Work, provided
4097
+ that such additional attribution notices cannot be construed
4098
+ as modifying the License.
4099
+
4100
+ You may add Your own copyright statement to Your modifications and
4101
+ may provide additional or different license terms and conditions
4102
+ for use, reproduction, or distribution of Your modifications, or
4103
+ for any such Derivative Works as a whole, provided Your use,
4104
+ reproduction, and distribution of the Work otherwise complies with
4105
+ the conditions stated in this License.
4106
+
4107
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
4108
+ any Contribution intentionally submitted for inclusion in the Work
4109
+ by You to the Licensor shall be under the terms and conditions of
4110
+ this License, without any additional terms or conditions.
4111
+ Notwithstanding the above, nothing herein shall supersede or modify
4112
+ the terms of any separate license agreement you may have executed
4113
+ with Licensor regarding such Contributions.
4114
+
4115
+ 6. Trademarks. This License does not grant permission to use the trade
4116
+ names, trademarks, service marks, or product names of the Licensor,
4117
+ except as required for reasonable and customary use in describing the
4118
+ origin of the Work and reproducing the content of the NOTICE file.
4119
+
4120
+ 7. Disclaimer of Warranty. Unless required by applicable law or
4121
+ agreed to in writing, Licensor provides the Work (and each
4122
+ Contributor provides its Contributions) on an "AS IS" BASIS,
4123
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
4124
+ implied, including, without limitation, any warranties or conditions
4125
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
4126
+ PARTICULAR PURPOSE. You are solely responsible for determining the
4127
+ appropriateness of using or redistributing the Work and assume any
4128
+ risks associated with Your exercise of permissions under this License.
4129
+
4130
+ 8. Limitation of Liability. In no event and under no legal theory,
4131
+ whether in tort (including negligence), contract, or otherwise,
4132
+ unless required by applicable law (such as deliberate and grossly
4133
+ negligent acts) or agreed to in writing, shall any Contributor be
4134
+ liable to You for damages, including any direct, indirect, special,
4135
+ incidental, or consequential damages of any character arising as a
4136
+ result of this License or out of the use or inability to use the
4137
+ Work (including but not limited to damages for loss of goodwill,
4138
+ work stoppage, computer failure or malfunction, or any and all
4139
+ other commercial damages or losses), even if such Contributor
4140
+ has been advised of the possibility of such damages.
4141
+
4142
+ 9. Accepting Warranty or Additional Liability. While redistributing
4143
+ the Work or Derivative Works thereof, You may choose to offer,
4144
+ and charge a fee for, acceptance of support, warranty, indemnity,
4145
+ or other liability obligations and/or rights consistent with this
4146
+ License. However, in accepting such obligations, You may act only
4147
+ on Your own behalf and on Your sole responsibility, not on behalf
4148
+ of any other Contributor, and only if You agree to indemnify,
4149
+ defend, and hold each Contributor harmless for any liability
4150
+ incurred by, or claims asserted against, such Contributor by reason
4151
+ of your accepting any such warranty or additional liability.
4152
+
4153
+ END OF TERMS AND CONDITIONS
4154
+
4155
+ APPENDIX: How to apply the Apache License to your work.
4156
+
4157
+ To apply the Apache License to your work, attach the following
4158
+ boilerplate notice, with the fields enclosed by brackets "[]"
4159
+ replaced with your own identifying information. (Don't include
4160
+ the brackets!) The text should be enclosed in the appropriate
4161
+ comment syntax for the file format. We also recommend that a
4162
+ file or class name and description of purpose be included on the
4163
+ same "printed page" as the copyright notice for easier
4164
+ identification within third-party archives.
4165
+
4166
+ Copyright [yyyy] [name of copyright owner]
4167
+
4168
+ Licensed under the Apache License, Version 2.0 (the "License");
4169
+ you may not use this file except in compliance with the License.
4170
+ You may obtain a copy of the License at
4171
+
4172
+ http://www.apache.org/licenses/LICENSE-2.0
4173
+
4174
+ Unless required by applicable law or agreed to in writing, software
4175
+ distributed under the License is distributed on an "AS IS" BASIS,
4176
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4177
+ See the License for the specific language governing permissions and
4178
+ limitations under the License.
4179
+
4180
+ -----
4181
+
4182
+ openucx/ucx
4183
+ https://github.com/openucx/ucx
4184
+
4185
+ Copyright (c) 2014-2015 UT-Battelle, LLC. All rights reserved.
4186
+ Copyright (C) 2014-2020 Mellanox Technologies Ltd. All rights reserved.
4187
+ Copyright (C) 2014-2015 The University of Houston System. All rights reserved.
4188
+ Copyright (C) 2015 The University of Tennessee and The University
4189
+ of Tennessee Research Foundation. All rights reserved.
4190
+ Copyright (C) 2016-2020 ARM Ltd. All rights reserved.
4191
+ Copyright (c) 2016 Los Alamos National Security, LLC. All rights reserved.
4192
+ Copyright (C) 2016-2020 Advanced Micro Devices, Inc. All rights reserved.
4193
+ Copyright (C) 2019 UChicago Argonne, LLC. All rights reserved.
4194
+ Copyright (c) 2018-2020 NVIDIA CORPORATION. All rights reserved.
4195
+ Copyright (C) 2020 Huawei Technologies Co., Ltd. All rights reserved.
4196
+ Copyright (C) 2016-2020 Stony Brook University. All rights reserved.
4197
+
4198
+ Redistribution and use in source and binary forms, with or without
4199
+ modification, are permitted provided that the following conditions
4200
+ are met:
4201
+
4202
+ 1. Redistributions of source code must retain the above copyright
4203
+ notice, this list of conditions and the following disclaimer.
4204
+ 2. Redistributions in binary form must reproduce the above copyright
4205
+ notice, this list of conditions and the following disclaimer in the
4206
+ documentation and/or other materials provided with the distribution.
4207
+ 3. Neither the name of the copyright holder nor the names of its
4208
+ contributors may be used to endorse or promote products derived from
4209
+ this software without specific prior written permission.
4210
+
4211
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4212
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4213
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4214
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
4215
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4216
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
4217
+ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
4218
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
4219
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
4220
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4221
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4222
+
4223
+ -----
4224
+
4225
+ From PyTorch:
4226
+
4227
+ Copyright (c) 2016- Facebook, Inc (Adam Paszke)
4228
+ Copyright (c) 2014- Facebook, Inc (Soumith Chintala)
4229
+ Copyright (c) 2011-2014 Idiap Research Institute (Ronan Collobert)
4230
+ Copyright (c) 2012-2014 Deepmind Technologies (Koray Kavukcuoglu)
4231
+ Copyright (c) 2011-2012 NEC Laboratories America (Koray Kavukcuoglu)
4232
+ Copyright (c) 2011-2013 NYU (Clement Farabet)
4233
+ Copyright (c) 2006-2010 NEC Laboratories America (Ronan Collobert, Leon Bottou, Iain Melvin, Jason Weston)
4234
+ Copyright (c) 2006 Idiap Research Institute (Samy Bengio)
4235
+ Copyright (c) 2001-2004 Idiap Research Institute (Ronan Collobert, Samy Bengio, Johnny Mariethoz)
4236
+
4237
+ From Caffe2:
4238
+
4239
+ Copyright (c) 2016-present, Facebook Inc. All rights reserved.
4240
+
4241
+ All contributions by Facebook:
4242
+ Copyright (c) 2016 Facebook Inc.
4243
+
4244
+ All contributions by Google:
4245
+ Copyright (c) 2015 Google Inc.
4246
+ All rights reserved.
4247
+
4248
+ All contributions by Yangqing Jia:
4249
+ Copyright (c) 2015 Yangqing Jia
4250
+ All rights reserved.
4251
+
4252
+ All contributions from Caffe:
4253
+ Copyright(c) 2013, 2014, 2015, the respective contributors
4254
+ All rights reserved.
4255
+
4256
+ All other contributions:
4257
+ Copyright(c) 2015, 2016 the respective contributors
4258
+ All rights reserved.
4259
+
4260
+ Caffe2 uses a copyright model similar to Caffe: each contributor holds
4261
+ copyright over their contributions to Caffe2. The project versioning records
4262
+ all such contribution and copyright details. If a contributor wants to further
4263
+ mark their specific copyright on a particular contribution, they should
4264
+ indicate their copyright solely in the commit message of the change when it is
4265
+ committed.
4266
+
4267
+ All rights reserved.
4268
+
4269
+ Redistribution and use in source and binary forms, with or without
4270
+ modification, are permitted provided that the following conditions are met:
4271
+
4272
+ 1. Redistributions of source code must retain the above copyright
4273
+ notice, this list of conditions and the following disclaimer.
4274
+
4275
+ 2. Redistributions in binary form must reproduce the above copyright
4276
+ notice, this list of conditions and the following disclaimer in the
4277
+ documentation and/or other materials provided with the distribution.
4278
+
4279
+ 3. Neither the names of Facebook, Deepmind Technologies, NYU, NEC Laboratories America
4280
+ and IDIAP Research Institute nor the names of its contributors may be
4281
+ used to endorse or promote products derived from this software without
4282
+ specific prior written permission.
4283
+
4284
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
4285
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4286
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4287
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
4288
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
4289
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
4290
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
4291
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
4292
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
4293
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4294
+ POSSIBILITY OF SUCH DAMAGE.
4295
+
4296
+ --
4297
+
4298
+ mpi4py
4299
+ https://github.com/mpi4py/mpi4py/
4300
+
4301
+ =======================
4302
+ LICENSE: MPI for Python
4303
+ =======================
4304
+
4305
+ :Author: Lisandro Dalcin
4306
+ :Contact: dalcinl@gmail.com
4307
+
4308
+
4309
+ Copyright (c) 2019, Lisandro Dalcin.
4310
+ All rights reserved.
4311
+
4312
+ Redistribution and use in source and binary forms, with or without
4313
+ modification, are permitted provided that the following conditions
4314
+ are met:
4315
+
4316
+ * Redistributions of source code must retain the above copyright
4317
+ notice, this list of conditions and the following disclaimer.
4318
+
4319
+ * Redistributions in binary form must reproduce the above copyright
4320
+ notice, this list of conditions and the following disclaimer in the
4321
+ documentation and/or other materials provided with the distribution.
4322
+
4323
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS
4324
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4325
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4326
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
4327
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4328
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4329
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4330
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4331
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4332
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
4333
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4334
+ _____
4335
+ huggingface/transformers
4336
+
4337
+ Apache License
4338
+ Version 2.0, January 2004
4339
+ http://www.apache.org/licenses/
4340
+
4341
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
4342
+
4343
+ 1. Definitions.
4344
+
4345
+ "License" shall mean the terms and conditions for use, reproduction,
4346
+ and distribution as defined by Sections 1 through 9 of this document.
4347
+
4348
+ "Licensor" shall mean the copyright owner or entity authorized by
4349
+ the copyright owner that is granting the License.
4350
+
4351
+ "Legal Entity" shall mean the union of the acting entity and all
4352
+ other entities that control, are controlled by, or are under common
4353
+ control with that entity. For the purposes of this definition,
4354
+ "control" means (i) the power, direct or indirect, to cause the
4355
+ direction or management of such entity, whether by contract or
4356
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
4357
+ outstanding shares, or (iii) beneficial ownership of such entity.
4358
+
4359
+ "You" (or "Your") shall mean an individual or Legal Entity
4360
+ exercising permissions granted by this License.
4361
+
4362
+ "Source" form shall mean the preferred form for making modifications,
4363
+ including but not limited to software source code, documentation
4364
+ source, and configuration files.
4365
+
4366
+ "Object" form shall mean any form resulting from mechanical
4367
+ transformation or translation of a Source form, including but
4368
+ not limited to compiled object code, generated documentation,
4369
+ and conversions to other media types.
4370
+
4371
+ "Work" shall mean the work of authorship, whether in Source or
4372
+ Object form, made available under the License, as indicated by a
4373
+ copyright notice that is included in or attached to the work
4374
+ (an example is provided in the Appendix below).
4375
+
4376
+ "Derivative Works" shall mean any work, whether in Source or Object
4377
+ form, that is based on (or derived from) the Work and for which the
4378
+ editorial revisions, annotations, elaborations, or other modifications
4379
+ represent, as a whole, an original work of authorship. For the purposes
4380
+ of this License, Derivative Works shall not include works that remain
4381
+ separable from, or merely link (or bind by name) to the interfaces of,
4382
+ the Work and Derivative Works thereof.
4383
+
4384
+ "Contribution" shall mean any work of authorship, including
4385
+ the original version of the Work and any modifications or additions
4386
+ to that Work or Derivative Works thereof, that is intentionally
4387
+ submitted to Licensor for inclusion in the Work by the copyright owner
4388
+ or by an individual or Legal Entity authorized to submit on behalf of
4389
+ the copyright owner. For the purposes of this definition, "submitted"
4390
+ means any form of electronic, verbal, or written communication sent
4391
+ to the Licensor or its representatives, including but not limited to
4392
+ communication on electronic mailing lists, source code control systems,
4393
+ and issue tracking systems that are managed by, or on behalf of, the
4394
+ Licensor for the purpose of discussing and improving the Work, but
4395
+ excluding communication that is conspicuously marked or otherwise
4396
+ designated in writing by the copyright owner as "Not a Contribution."
4397
+
4398
+ "Contributor" shall mean Licensor and any individual or Legal Entity
4399
+ on behalf of whom a Contribution has been received by Licensor and
4400
+ subsequently incorporated within the Work.
4401
+
4402
+ 2. Grant of Copyright License. Subject to the terms and conditions of
4403
+ this License, each Contributor hereby grants to You a perpetual,
4404
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4405
+ copyright license to reproduce, prepare Derivative Works of,
4406
+ publicly display, publicly perform, sublicense, and distribute the
4407
+ Work and such Derivative Works in Source or Object form.
4408
+
4409
+ 3. Grant of Patent License. Subject to the terms and conditions of
4410
+ this License, each Contributor hereby grants to You a perpetual,
4411
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4412
+ (except as stated in this section) patent license to make, have made,
4413
+ use, offer to sell, sell, import, and otherwise transfer the Work,
4414
+ where such license applies only to those patent claims licensable
4415
+ by such Contributor that are necessarily infringed by their
4416
+ Contribution(s) alone or by combination of their Contribution(s)
4417
+ with the Work to which such Contribution(s) was submitted. If You
4418
+ institute patent litigation against any entity (including a
4419
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
4420
+ or a Contribution incorporated within the Work constitutes direct
4421
+ or contributory patent infringement, then any patent licenses
4422
+ granted to You under this License for that Work shall terminate
4423
+ as of the date such litigation is filed.
4424
+
4425
+ 4. Redistribution. You may reproduce and distribute copies of the
4426
+ Work or Derivative Works thereof in any medium, with or without
4427
+ modifications, and in Source or Object form, provided that You
4428
+ meet the following conditions:
4429
+
4430
+ (a) You must give any other recipients of the Work or
4431
+ Derivative Works a copy of this License; and
4432
+
4433
+ (b) You must cause any modified files to carry prominent notices
4434
+ stating that You changed the files; and
4435
+
4436
+ (c) You must retain, in the Source form of any Derivative Works
4437
+ that You distribute, all copyright, patent, trademark, and
4438
+ attribution notices from the Source form of the Work,
4439
+ excluding those notices that do not pertain to any part of
4440
+ the Derivative Works; and
4441
+
4442
+ (d) If the Work includes a "NOTICE" text file as part of its
4443
+ distribution, then any Derivative Works that You distribute must
4444
+ include a readable copy of the attribution notices contained
4445
+ within such NOTICE file, excluding those notices that do not
4446
+ pertain to any part of the Derivative Works, in at least one
4447
+ of the following places: within a NOTICE text file distributed
4448
+ as part of the Derivative Works; within the Source form or
4449
+ documentation, if provided along with the Derivative Works; or,
4450
+ within a display generated by the Derivative Works, if and
4451
+ wherever such third-party notices normally appear. The contents
4452
+ of the NOTICE file are for informational purposes only and
4453
+ do not modify the License. You may add Your own attribution
4454
+ notices within Derivative Works that You distribute, alongside
4455
+ or as an addendum to the NOTICE text from the Work, provided
4456
+ that such additional attribution notices cannot be construed
4457
+ as modifying the License.
4458
+
4459
+ You may add Your own copyright statement to Your modifications and
4460
+ may provide additional or different license terms and conditions
4461
+ for use, reproduction, or distribution of Your modifications, or
4462
+ for any such Derivative Works as a whole, provided Your use,
4463
+ reproduction, and distribution of the Work otherwise complies with
4464
+ the conditions stated in this License.
4465
+
4466
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
4467
+ any Contribution intentionally submitted for inclusion in the Work
4468
+ by You to the Licensor shall be under the terms and conditions of
4469
+ this License, without any additional terms or conditions.
4470
+ Notwithstanding the above, nothing herein shall supersede or modify
4471
+ the terms of any separate license agreement you may have executed
4472
+ with Licensor regarding such Contributions.
4473
+
4474
+ 6. Trademarks. This License does not grant permission to use the trade
4475
+ names, trademarks, service marks, or product names of the Licensor,
4476
+ except as required for reasonable and customary use in describing the
4477
+ origin of the Work and reproducing the content of the NOTICE file.
4478
+
4479
+ 7. Disclaimer of Warranty. Unless required by applicable law or
4480
+ agreed to in writing, Licensor provides the Work (and each
4481
+ Contributor provides its Contributions) on an "AS IS" BASIS,
4482
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
4483
+ implied, including, without limitation, any warranties or conditions
4484
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
4485
+ PARTICULAR PURPOSE. You are solely responsible for determining the
4486
+ appropriateness of using or redistributing the Work and assume any
4487
+ risks associated with Your exercise of permissions under this License.
4488
+
4489
+ 8. Limitation of Liability. In no event and under no legal theory,
4490
+ whether in tort (including negligence), contract, or otherwise,
4491
+ unless required by applicable law (such as deliberate and grossly
4492
+ negligent acts) or agreed to in writing, shall any Contributor be
4493
+ liable to You for damages, including any direct, indirect, special,
4494
+ incidental, or consequential damages of any character arising as a
4495
+ result of this License or out of the use or inability to use the
4496
+ Work (including but not limited to damages for loss of goodwill,
4497
+ work stoppage, computer failure or malfunction, or any and all
4498
+ other commercial damages or losses), even if such Contributor
4499
+ has been advised of the possibility of such damages.
4500
+
4501
+ 9. Accepting Warranty or Additional Liability. While redistributing
4502
+ the Work or Derivative Works thereof, You may choose to offer,
4503
+ and charge a fee for, acceptance of support, warranty, indemnity,
4504
+ or other liability obligations and/or rights consistent with this
4505
+ License. However, in accepting such obligations, You may act only
4506
+ on Your own behalf and on Your sole responsibility, not on behalf
4507
+ of any other Contributor, and only if You agree to indemnify,
4508
+ defend, and hold each Contributor harmless for any liability
4509
+ incurred by, or claims asserted against, such Contributor by reason
4510
+ of your accepting any such warranty or additional liability.
4511
+
4512
+ END OF TERMS AND CONDITIONS
4513
+
4514
+ APPENDIX: How to apply the Apache License to your work.
4515
+
4516
+ To apply the Apache License to your work, attach the following
4517
+ boilerplate notice, with the fields enclosed by brackets "[]"
4518
+ replaced with your own identifying information. (Don't include
4519
+ the brackets!) The text should be enclosed in the appropriate
4520
+ comment syntax for the file format. We also recommend that a
4521
+ file or class name and description of purpose be included on the
4522
+ same "printed page" as the copyright notice for easier
4523
+ identification within third-party archives.
4524
+
4525
+ Copyright [yyyy] [name of copyright owner]
4526
+
4527
+ Licensed under the Apache License, Version 2.0 (the "License");
4528
+ you may not use this file except in compliance with the License.
4529
+ You may obtain a copy of the License at
4530
+
4531
+ http://www.apache.org/licenses/LICENSE-2.0
4532
+
4533
+ Unless required by applicable law or agreed to in writing, software
4534
+ distributed under the License is distributed on an "AS IS" BASIS,
4535
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4536
+ See the License for the specific language governing permissions and
4537
+ limitations under the License.
4538
+ _____
4539
+ msgpack/msgpack-python
4540
+
4541
+ Copyright (C) 2008-2011 INADA Naoki <songofacandy@gmail.com>
4542
+
4543
+ Licensed under the Apache License, Version 2.0 (the "License");
4544
+ you may not use this file except in compliance with the License.
4545
+ You may obtain a copy of the License at
4546
+
4547
+ http://www.apache.org/licenses/LICENSE-2.0
4548
+
4549
+ Unless required by applicable law or agreed to in writing, software
4550
+ distributed under the License is distributed on an "AS IS" BASIS,
4551
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4552
+ See the License for the specific language governing permissions and
4553
+ limitations under the License.
4554
+ _____
4555
+ lanpa/tensorboardX
4556
+
4557
+ MIT License
4558
+
4559
+ Copyright (c) 2017 Tzu-Wei Huang
4560
+
4561
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4562
+ of this software and associated documentation files (the "Software"), to deal
4563
+ in the Software without restriction, including without limitation the rights
4564
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4565
+ copies of the Software, and to permit persons to whom the Software is
4566
+ furnished to do so, subject to the following conditions:
4567
+
4568
+ The above copyright notice and this permission notice shall be included in all
4569
+ copies or substantial portions of the Software.
4570
+
4571
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4572
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4573
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4574
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4575
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4576
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
4577
+ SOFTWARE.
4578
+ _____
4579
+ tensorflow/tensorboard
4580
+
4581
+ Copyright 2017 The TensorFlow Authors. All rights reserved.
4582
+
4583
+ Apache License
4584
+ Version 2.0, January 2004
4585
+ http://www.apache.org/licenses/
4586
+
4587
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
4588
+
4589
+ 1. Definitions.
4590
+
4591
+ "License" shall mean the terms and conditions for use, reproduction,
4592
+ and distribution as defined by Sections 1 through 9 of this document.
4593
+
4594
+ "Licensor" shall mean the copyright owner or entity authorized by
4595
+ the copyright owner that is granting the License.
4596
+
4597
+ "Legal Entity" shall mean the union of the acting entity and all
4598
+ other entities that control, are controlled by, or are under common
4599
+ control with that entity. For the purposes of this definition,
4600
+ "control" means (i) the power, direct or indirect, to cause the
4601
+ direction or management of such entity, whether by contract or
4602
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
4603
+ outstanding shares, or (iii) beneficial ownership of such entity.
4604
+
4605
+ "You" (or "Your") shall mean an individual or Legal Entity
4606
+ exercising permissions granted by this License.
4607
+
4608
+ "Source" form shall mean the preferred form for making modifications,
4609
+ including but not limited to software source code, documentation
4610
+ source, and configuration files.
4611
+
4612
+ "Object" form shall mean any form resulting from mechanical
4613
+ transformation or translation of a Source form, including but
4614
+ not limited to compiled object code, generated documentation,
4615
+ and conversions to other media types.
4616
+
4617
+ "Work" shall mean the work of authorship, whether in Source or
4618
+ Object form, made available under the License, as indicated by a
4619
+ copyright notice that is included in or attached to the work
4620
+ (an example is provided in the Appendix below).
4621
+
4622
+ "Derivative Works" shall mean any work, whether in Source or Object
4623
+ form, that is based on (or derived from) the Work and for which the
4624
+ editorial revisions, annotations, elaborations, or other modifications
4625
+ represent, as a whole, an original work of authorship. For the purposes
4626
+ of this License, Derivative Works shall not include works that remain
4627
+ separable from, or merely link (or bind by name) to the interfaces of,
4628
+ the Work and Derivative Works thereof.
4629
+
4630
+ "Contribution" shall mean any work of authorship, including
4631
+ the original version of the Work and any modifications or additions
4632
+ to that Work or Derivative Works thereof, that is intentionally
4633
+ submitted to Licensor for inclusion in the Work by the copyright owner
4634
+ or by an individual or Legal Entity authorized to submit on behalf of
4635
+ the copyright owner. For the purposes of this definition, "submitted"
4636
+ means any form of electronic, verbal, or written communication sent
4637
+ to the Licensor or its representatives, including but not limited to
4638
+ communication on electronic mailing lists, source code control systems,
4639
+ and issue tracking systems that are managed by, or on behalf of, the
4640
+ Licensor for the purpose of discussing and improving the Work, but
4641
+ excluding communication that is conspicuously marked or otherwise
4642
+ designated in writing by the copyright owner as "Not a Contribution."
4643
+
4644
+ "Contributor" shall mean Licensor and any individual or Legal Entity
4645
+ on behalf of whom a Contribution has been received by Licensor and
4646
+ subsequently incorporated within the Work.
4647
+
4648
+ 2. Grant of Copyright License. Subject to the terms and conditions of
4649
+ this License, each Contributor hereby grants to You a perpetual,
4650
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4651
+ copyright license to reproduce, prepare Derivative Works of,
4652
+ publicly display, publicly perform, sublicense, and distribute the
4653
+ Work and such Derivative Works in Source or Object form.
4654
+
4655
+ 3. Grant of Patent License. Subject to the terms and conditions of
4656
+ this License, each Contributor hereby grants to You a perpetual,
4657
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4658
+ (except as stated in this section) patent license to make, have made,
4659
+ use, offer to sell, sell, import, and otherwise transfer the Work,
4660
+ where such license applies only to those patent claims licensable
4661
+ by such Contributor that are necessarily infringed by their
4662
+ Contribution(s) alone or by combination of their Contribution(s)
4663
+ with the Work to which such Contribution(s) was submitted. If You
4664
+ institute patent litigation against any entity (including a
4665
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
4666
+ or a Contribution incorporated within the Work constitutes direct
4667
+ or contributory patent infringement, then any patent licenses
4668
+ granted to You under this License for that Work shall terminate
4669
+ as of the date such litigation is filed.
4670
+
4671
+ 4. Redistribution. You may reproduce and distribute copies of the
4672
+ Work or Derivative Works thereof in any medium, with or without
4673
+ modifications, and in Source or Object form, provided that You
4674
+ meet the following conditions:
4675
+
4676
+ (a) You must give any other recipients of the Work or
4677
+ Derivative Works a copy of this License; and
4678
+
4679
+ (b) You must cause any modified files to carry prominent notices
4680
+ stating that You changed the files; and
4681
+
4682
+ (c) You must retain, in the Source form of any Derivative Works
4683
+ that You distribute, all copyright, patent, trademark, and
4684
+ attribution notices from the Source form of the Work,
4685
+ excluding those notices that do not pertain to any part of
4686
+ the Derivative Works; and
4687
+
4688
+ (d) If the Work includes a "NOTICE" text file as part of its
4689
+ distribution, then any Derivative Works that You distribute must
4690
+ include a readable copy of the attribution notices contained
4691
+ within such NOTICE file, excluding those notices that do not
4692
+ pertain to any part of the Derivative Works, in at least one
4693
+ of the following places: within a NOTICE text file distributed
4694
+ as part of the Derivative Works; within the Source form or
4695
+ documentation, if provided along with the Derivative Works; or,
4696
+ within a display generated by the Derivative Works, if and
4697
+ wherever such third-party notices normally appear. The contents
4698
+ of the NOTICE file are for informational purposes only and
4699
+ do not modify the License. You may add Your own attribution
4700
+ notices within Derivative Works that You distribute, alongside
4701
+ or as an addendum to the NOTICE text from the Work, provided
4702
+ that such additional attribution notices cannot be construed
4703
+ as modifying the License.
4704
+
4705
+ You may add Your own copyright statement to Your modifications and
4706
+ may provide additional or different license terms and conditions
4707
+ for use, reproduction, or distribution of Your modifications, or
4708
+ for any such Derivative Works as a whole, provided Your use,
4709
+ reproduction, and distribution of the Work otherwise complies with
4710
+ the conditions stated in this License.
4711
+
4712
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
4713
+ any Contribution intentionally submitted for inclusion in the Work
4714
+ by You to the Licensor shall be under the terms and conditions of
4715
+ this License, without any additional terms or conditions.
4716
+ Notwithstanding the above, nothing herein shall supersede or modify
4717
+ the terms of any separate license agreement you may have executed
4718
+ with Licensor regarding such Contributions.
4719
+
4720
+ 6. Trademarks. This License does not grant permission to use the trade
4721
+ names, trademarks, service marks, or product names of the Licensor,
4722
+ except as required for reasonable and customary use in describing the
4723
+ origin of the Work and reproducing the content of the NOTICE file.
4724
+
4725
+ 7. Disclaimer of Warranty. Unless required by applicable law or
4726
+ agreed to in writing, Licensor provides the Work (and each
4727
+ Contributor provides its Contributions) on an "AS IS" BASIS,
4728
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
4729
+ implied, including, without limitation, any warranties or conditions
4730
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
4731
+ PARTICULAR PURPOSE. You are solely responsible for determining the
4732
+ appropriateness of using or redistributing the Work and assume any
4733
+ risks associated with Your exercise of permissions under this License.
4734
+
4735
+ 8. Limitation of Liability. In no event and under no legal theory,
4736
+ whether in tort (including negligence), contract, or otherwise,
4737
+ unless required by applicable law (such as deliberate and grossly
4738
+ negligent acts) or agreed to in writing, shall any Contributor be
4739
+ liable to You for damages, including any direct, indirect, special,
4740
+ incidental, or consequential damages of any character arising as a
4741
+ result of this License or out of the use or inability to use the
4742
+ Work (including but not limited to damages for loss of goodwill,
4743
+ work stoppage, computer failure or malfunction, or any and all
4744
+ other commercial damages or losses), even if such Contributor
4745
+ has been advised of the possibility of such damages.
4746
+
4747
+ 9. Accepting Warranty or Additional Liability. While redistributing
4748
+ the Work or Derivative Works thereof, You may choose to offer,
4749
+ and charge a fee for, acceptance of support, warranty, indemnity,
4750
+ or other liability obligations and/or rights consistent with this
4751
+ License. However, in accepting such obligations, You may act only
4752
+ on Your own behalf and on Your sole responsibility, not on behalf
4753
+ of any other Contributor, and only if You agree to indemnify,
4754
+ defend, and hold each Contributor harmless for any liability
4755
+ incurred by, or claims asserted against, such Contributor by reason
4756
+ of your accepting any such warranty or additional liability.
4757
+
4758
+ END OF TERMS AND CONDITIONS
4759
+
4760
+ APPENDIX: How to apply the Apache License to your work.
4761
+
4762
+ To apply the Apache License to your work, attach the following
4763
+ boilerplate notice, with the fields enclosed by brackets "[]"
4764
+ replaced with your own identifying information. (Don't include
4765
+ the brackets!) The text should be enclosed in the appropriate
4766
+ comment syntax for the file format. We also recommend that a
4767
+ file or class name and description of purpose be included on the
4768
+ same "printed page" as the copyright notice for easier
4769
+ identification within third-party archives.
4770
+
4771
+ Copyright 2017, The TensorFlow Authors.
4772
+
4773
+ Licensed under the Apache License, Version 2.0 (the "License");
4774
+ you may not use this file except in compliance with the License.
4775
+ You may obtain a copy of the License at
4776
+
4777
+ http://www.apache.org/licenses/LICENSE-2.0
4778
+
4779
+ Unless required by applicable law or agreed to in writing, software
4780
+ distributed under the License is distributed on an "AS IS" BASIS,
4781
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4782
+ See the License for the specific language governing permissions and
4783
+ limitations under the License.
4784
+
4785
+
4786
+ _____
4787
+
4788
+ cerberus
4789
+
4790
+ Cerberus is a lightweight and extensible data validation library for Python.
4791
+
4792
+ ISC License
4793
+
4794
+ Copyright (c) 2012-2016 Nicola Iarocci.
4795
+
4796
+ Permission to use, copy, modify, and/or distribute this software for any
4797
+ purpose with or without fee is hereby granted, provided that the above
4798
+ copyright notice and this permission notice appear in all copies.
4799
+
4800
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
4801
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
4802
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
4803
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
4804
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
4805
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
4806
+ PERFORMANCE OF THIS SOFTWARE.
4807
+
4808
+ -----
4809
+
4810
+ MurmurHash3
4811
+
4812
+ MIT license
4813
+
4814
+ https://github.com/aappleby/smhasher
4815
+
4816
+ SMHasher is a test suite designed to test the distribution, collision, and
4817
+ performance properties of non-cryptographic hash functions.
4818
+ This is the home for the MurmurHash family of hash functions along with the
4819
+ SMHasher test suite used to verify them.
4820
+ SMHasher is released under the MIT license.
4821
+ All MurmurHash versions are public domain software, and the author disclaims all copyright to their code.
4822
+
4823
+ -----
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onnxruntime
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-21 00:00:00.000000000 Z
11
+ date: 2020-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi