onnxruntime 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/lib/onnxruntime/ffi.rb +1 -1
- data/lib/onnxruntime/inference_session.rb +4 -4
- data/lib/onnxruntime/version.rb +1 -1
- data/vendor/ThirdPartyNotices.txt +484 -637
- data/vendor/libonnxruntime.dylib +0 -0
- data/vendor/libonnxruntime.so +0 -0
- data/vendor/onnxruntime.dll +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c4df8503d4840fee0e897a8fc7b093e74c8af0bb7bf438b0ca4e1dd20b9d26e1
|
|
4
|
+
data.tar.gz: cd58fd60bfa2b57ed04797bebd2f6062f5bfb7a5ec5e8707c6666e2eb771493d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15538d6be0754132d2fb5f9b2ac75fb4ee263fdc75a39a169a276b8c578586b170b07bda2194ca671a5773172e89749353adcefee6531559851690b4e04a78b9
|
|
7
|
+
data.tar.gz: e9aaaf9e5e64c54579fe279e5d0554ddefa3fc8ee01bb51523d1ecd0a22ded6a3d4b5024ffe3b677dabcf18d5d1bcb7712e12b82ad6844a1ef80425986fe3aee
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Check out [an example](https://ankane.org/tensorflow-ruby)
|
|
6
6
|
|
|
7
|
-
[](https://github.com/ankane/onnxruntime/actions)
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
data/lib/onnxruntime/ffi.rb
CHANGED
|
@@ -34,7 +34,7 @@ module OnnxRuntime
|
|
|
34
34
|
:CreateSessionOptions, callback(%i[pointer], :pointer),
|
|
35
35
|
:SetOptimizedModelFilePath, callback(%i[pointer pointer], :pointer),
|
|
36
36
|
:CloneSessionOptions, callback(%i[], :pointer),
|
|
37
|
-
:SetSessionExecutionMode, callback(%i[], :pointer),
|
|
37
|
+
:SetSessionExecutionMode, callback(%i[pointer int], :pointer),
|
|
38
38
|
:EnableProfiling, callback(%i[pointer pointer], :pointer),
|
|
39
39
|
:DisableProfiling, callback(%i[pointer], :pointer),
|
|
40
40
|
:EnableMemPattern, callback(%i[pointer], :pointer),
|
|
@@ -224,10 +224,10 @@ module OnnxRuntime
|
|
|
224
224
|
flat_input = input.flatten.to_a
|
|
225
225
|
input_tensor_values = ::FFI::MemoryPointer.new(tensor_type, flat_input.size)
|
|
226
226
|
if tensor_type == :bool
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
input_tensor_values.write_array_of_uint8(flat_input.map { |v| v ? 1 : 0 })
|
|
228
|
+
else
|
|
229
|
+
input_tensor_values.send("write_array_of_#{tensor_type}", flat_input)
|
|
229
230
|
end
|
|
230
|
-
input_tensor_values.send("write_array_of_#{tensor_type}", flat_input)
|
|
231
231
|
end
|
|
232
232
|
|
|
233
233
|
type_enum = FFI::TensorElementDataType[tensor_type]
|
|
@@ -290,7 +290,7 @@ module OnnxRuntime
|
|
|
290
290
|
when :float, :uint8, :int8, :uint16, :int16, :int32, :int64, :double, :uint32, :uint64
|
|
291
291
|
tensor_data.read_pointer.send("read_array_of_#{type}", output_tensor_size)
|
|
292
292
|
when :bool
|
|
293
|
-
tensor_data.read_pointer.
|
|
293
|
+
tensor_data.read_pointer.read_array_of_uint8(output_tensor_size).map { |v| v == 1 }
|
|
294
294
|
when :string
|
|
295
295
|
create_strings_from_onnx_value(out_ptr, output_tensor_size, [])
|
|
296
296
|
else
|
data/lib/onnxruntime/version.rb
CHANGED
|
@@ -848,22 +848,16 @@ THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
848
848
|
|
|
849
849
|
_____
|
|
850
850
|
|
|
851
|
-
|
|
851
|
+
gsl-lite
|
|
852
852
|
|
|
853
|
+
gsl-lite is based on GSL: Guidelines Support Library.
|
|
854
|
+
For more information see https://github.com/martinmoene/gsl-lite
|
|
855
|
+
|
|
856
|
+
Copyright (c) 2015 Martin Moene
|
|
853
857
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
854
858
|
|
|
855
859
|
This code is licensed under the MIT License (MIT).
|
|
856
860
|
|
|
857
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
858
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
859
|
-
in the Software without restriction, including without limitation the rights
|
|
860
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
861
|
-
of the Software, and to permit persons to whom the Software is furnished to do
|
|
862
|
-
so, subject to the following conditions:
|
|
863
|
-
|
|
864
|
-
The above copyright notice and this permission notice shall be included in all
|
|
865
|
-
copies or substantial portions of the Software.
|
|
866
|
-
|
|
867
861
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
868
862
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
869
863
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
@@ -1595,7 +1589,7 @@ AUTHORS
|
|
|
1595
1589
|
# See the latter for an explanation.
|
|
1596
1590
|
#
|
|
1597
1591
|
# Names should be added to this file as:
|
|
1598
|
-
#
|
|
1592
|
+
# Name or Organization <email address>
|
|
1599
1593
|
# The email address is not required for organizations.
|
|
1600
1594
|
#
|
|
1601
1595
|
# Please keep the list sorted.
|
|
@@ -1657,7 +1651,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
1657
1651
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1658
1652
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1659
1653
|
|
|
1660
|
-
|
|
1654
|
+
_____
|
|
1661
1655
|
|
|
1662
1656
|
Distributed Machine Learning Common Codebase
|
|
1663
1657
|
|
|
@@ -1881,7 +1875,7 @@ DLPack: Open In Memory Tensor Structure
|
|
|
1881
1875
|
See the License for the specific language governing permissions and
|
|
1882
1876
|
limitations under the License.
|
|
1883
1877
|
|
|
1884
|
-
|
|
1878
|
+
_____
|
|
1885
1879
|
|
|
1886
1880
|
HowardHinnant/date
|
|
1887
1881
|
|
|
@@ -1917,7 +1911,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1917
1911
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1918
1912
|
SOFTWARE.
|
|
1919
1913
|
|
|
1920
|
-
|
|
1914
|
+
_____
|
|
1921
1915
|
|
|
1922
1916
|
TVM Open Deep Learning Compiler Stack
|
|
1923
1917
|
|
|
@@ -2204,7 +2198,7 @@ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
2204
2198
|
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2205
2199
|
--------------------------------------------------------------------------------
|
|
2206
2200
|
|
|
2207
|
-
|
|
2201
|
+
_____
|
|
2208
2202
|
|
|
2209
2203
|
FreeBSD: getopt.c file
|
|
2210
2204
|
|
|
@@ -2348,412 +2342,412 @@ MIPS Tech LLC
|
|
|
2348
2342
|
Wave Computing Inc.
|
|
2349
2343
|
|
|
2350
2344
|
Apache License
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2345
|
+
Version 2.0, January 2004
|
|
2346
|
+
http://www.apache.org/licenses/
|
|
2347
|
+
|
|
2348
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
2349
|
+
|
|
2350
|
+
1. Definitions.
|
|
2351
|
+
|
|
2352
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
2353
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
2354
|
+
|
|
2355
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
2356
|
+
the copyright owner that is granting the License.
|
|
2357
|
+
|
|
2358
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
2359
|
+
other entities that control, are controlled by, or are under common
|
|
2360
|
+
control with that entity. For the purposes of this definition,
|
|
2361
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
2362
|
+
direction or management of such entity, whether by contract or
|
|
2363
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
2364
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
2365
|
+
|
|
2366
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
2367
|
+
exercising permissions granted by this License.
|
|
2368
|
+
|
|
2369
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
2370
|
+
including but not limited to software source code, documentation
|
|
2371
|
+
source, and configuration files.
|
|
2372
|
+
|
|
2373
|
+
"Object" form shall mean any form resulting from mechanical
|
|
2374
|
+
transformation or translation of a Source form, including but
|
|
2375
|
+
not limited to compiled object code, generated documentation,
|
|
2376
|
+
and conversions to other media types.
|
|
2377
|
+
|
|
2378
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
2379
|
+
Object form, made available under the License, as indicated by a
|
|
2380
|
+
copyright notice that is included in or attached to the work
|
|
2381
|
+
(an example is provided in the Appendix below).
|
|
2382
|
+
|
|
2383
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
2384
|
+
form, that is based on (or derived from) the Work and for which the
|
|
2385
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
2386
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
2387
|
+
of this License, Derivative Works shall not include works that remain
|
|
2388
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
2389
|
+
the Work and Derivative Works thereof.
|
|
2390
|
+
|
|
2391
|
+
"Contribution" shall mean any work of authorship, including
|
|
2392
|
+
the original version of the Work and any modifications or additions
|
|
2393
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
2394
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
2395
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
2396
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
2397
|
+
means any form of electronic, verbal, or written communication sent
|
|
2398
|
+
to the Licensor or its representatives, including but not limited to
|
|
2399
|
+
communication on electronic mailing lists, source code control systems,
|
|
2400
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
2401
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
2402
|
+
excluding communication that is conspicuously marked or otherwise
|
|
2403
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
2404
|
+
|
|
2405
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
2406
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
2407
|
+
subsequently incorporated within the Work.
|
|
2408
|
+
|
|
2409
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
2410
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
2411
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2412
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
2413
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
2414
|
+
Work and such Derivative Works in Source or Object form.
|
|
2415
|
+
|
|
2416
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
2417
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
2418
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2419
|
+
(except as stated in this section) patent license to make, have made,
|
|
2420
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
2421
|
+
where such license applies only to those patent claims licensable
|
|
2422
|
+
by such Contributor that are necessarily infringed by their
|
|
2423
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
2424
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
2425
|
+
institute patent litigation against any entity (including a
|
|
2426
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
2427
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
2428
|
+
or contributory patent infringement, then any patent licenses
|
|
2429
|
+
granted to You under this License for that Work shall terminate
|
|
2430
|
+
as of the date such litigation is filed.
|
|
2431
|
+
|
|
2432
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
2433
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
2434
|
+
modifications, and in Source or Object form, provided that You
|
|
2435
|
+
meet the following conditions:
|
|
2436
|
+
|
|
2437
|
+
(a) You must give any other recipients of the Work or
|
|
2438
|
+
Derivative Works a copy of this License; and
|
|
2439
|
+
|
|
2440
|
+
(b) You must cause any modified files to carry prominent notices
|
|
2441
|
+
stating that You changed the files; and
|
|
2442
|
+
|
|
2443
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
2444
|
+
that You distribute, all copyright, patent, trademark, and
|
|
2445
|
+
attribution notices from the Source form of the Work,
|
|
2446
|
+
excluding those notices that do not pertain to any part of
|
|
2447
|
+
the Derivative Works; and
|
|
2448
|
+
|
|
2449
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
2450
|
+
distribution, then any Derivative Works that You distribute must
|
|
2451
|
+
include a readable copy of the attribution notices contained
|
|
2452
|
+
within such NOTICE file, excluding those notices that do not
|
|
2453
|
+
pertain to any part of the Derivative Works, in at least one
|
|
2454
|
+
of the following places: within a NOTICE text file distributed
|
|
2455
|
+
as part of the Derivative Works; within the Source form or
|
|
2456
|
+
documentation, if provided along with the Derivative Works; or,
|
|
2457
|
+
within a display generated by the Derivative Works, if and
|
|
2458
|
+
wherever such third-party notices normally appear. The contents
|
|
2459
|
+
of the NOTICE file are for informational purposes only and
|
|
2460
|
+
do not modify the License. You may add Your own attribution
|
|
2461
|
+
notices within Derivative Works that You distribute, alongside
|
|
2462
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
2463
|
+
that such additional attribution notices cannot be construed
|
|
2464
|
+
as modifying the License.
|
|
2465
|
+
|
|
2466
|
+
You may add Your own copyright statement to Your modifications and
|
|
2467
|
+
may provide additional or different license terms and conditions
|
|
2468
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
2469
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
2470
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
2471
|
+
the conditions stated in this License.
|
|
2472
|
+
|
|
2473
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
2474
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
2475
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
2476
|
+
this License, without any additional terms or conditions.
|
|
2477
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
2478
|
+
the terms of any separate license agreement you may have executed
|
|
2479
|
+
with Licensor regarding such Contributions.
|
|
2480
|
+
|
|
2481
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
2482
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
2483
|
+
except as required for reasonable and customary use in describing the
|
|
2484
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
2485
|
+
|
|
2486
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
2487
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
2488
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
2489
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
2490
|
+
implied, including, without limitation, any warranties or conditions
|
|
2491
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
2492
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
2493
|
+
appropriateness of using or redistributing the Work and assume any
|
|
2494
|
+
risks associated with Your exercise of permissions under this License.
|
|
2495
|
+
|
|
2496
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
2497
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
2498
|
+
unless required by applicable law (such as deliberate and grossly
|
|
2499
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
2500
|
+
liable to You for damages, including any direct, indirect, special,
|
|
2501
|
+
incidental, or consequential damages of any character arising as a
|
|
2502
|
+
result of this License or out of the use or inability to use the
|
|
2503
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
2504
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
2505
|
+
other commercial damages or losses), even if such Contributor
|
|
2506
|
+
has been advised of the possibility of such damages.
|
|
2507
|
+
|
|
2508
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
2509
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
2510
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
2511
|
+
or other liability obligations and/or rights consistent with this
|
|
2512
|
+
License. However, in accepting such obligations, You may act only
|
|
2513
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
2514
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
2515
|
+
defend, and hold each Contributor harmless for any liability
|
|
2516
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
2517
|
+
of your accepting any such warranty or additional liability.
|
|
2518
|
+
|
|
2519
|
+
END OF TERMS AND CONDITIONS
|
|
2520
|
+
|
|
2521
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
2522
|
+
|
|
2523
|
+
To apply the Apache License to your work, attach the following
|
|
2524
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
2525
|
+
replaced with your own identifying information. (Don't include
|
|
2526
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
2527
|
+
comment syntax for the file format. We also recommend that a
|
|
2528
|
+
file or class name and description of purpose be included on the
|
|
2529
|
+
same "printed page" as the copyright notice for easier
|
|
2530
|
+
identification within third-party archives.
|
|
2531
|
+
|
|
2532
|
+
Copyright [yyyy] [name of copyright owner]
|
|
2533
|
+
|
|
2534
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2535
|
+
you may not use this file except in compliance with the License.
|
|
2536
|
+
You may obtain a copy of the License at
|
|
2537
|
+
|
|
2538
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2539
|
+
|
|
2540
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2541
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2542
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2543
|
+
See the License for the specific language governing permissions and
|
|
2544
|
+
limitations under the License.
|
|
2551
2545
|
|
|
2552
2546
|
_____
|
|
2553
2547
|
|
|
2554
2548
|
google/nsync
|
|
2555
2549
|
|
|
2556
2550
|
Apache License
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2551
|
+
Version 2.0, January 2004
|
|
2552
|
+
http://www.apache.org/licenses/
|
|
2553
|
+
|
|
2554
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
2555
|
+
|
|
2556
|
+
1. Definitions.
|
|
2557
|
+
|
|
2558
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
2559
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
2560
|
+
|
|
2561
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
2562
|
+
the copyright owner that is granting the License.
|
|
2563
|
+
|
|
2564
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
2565
|
+
other entities that control, are controlled by, or are under common
|
|
2566
|
+
control with that entity. For the purposes of this definition,
|
|
2567
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
2568
|
+
direction or management of such entity, whether by contract or
|
|
2569
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
2570
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
2571
|
+
|
|
2572
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
2573
|
+
exercising permissions granted by this License.
|
|
2574
|
+
|
|
2575
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
2576
|
+
including but not limited to software source code, documentation
|
|
2577
|
+
source, and configuration files.
|
|
2578
|
+
|
|
2579
|
+
"Object" form shall mean any form resulting from mechanical
|
|
2580
|
+
transformation or translation of a Source form, including but
|
|
2581
|
+
not limited to compiled object code, generated documentation,
|
|
2582
|
+
and conversions to other media types.
|
|
2583
|
+
|
|
2584
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
2585
|
+
Object form, made available under the License, as indicated by a
|
|
2586
|
+
copyright notice that is included in or attached to the work
|
|
2587
|
+
(an example is provided in the Appendix below).
|
|
2588
|
+
|
|
2589
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
2590
|
+
form, that is based on (or derived from) the Work and for which the
|
|
2591
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
2592
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
2593
|
+
of this License, Derivative Works shall not include works that remain
|
|
2594
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
2595
|
+
the Work and Derivative Works thereof.
|
|
2596
|
+
|
|
2597
|
+
"Contribution" shall mean any work of authorship, including
|
|
2598
|
+
the original version of the Work and any modifications or additions
|
|
2599
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
2600
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
2601
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
2602
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
2603
|
+
means any form of electronic, verbal, or written communication sent
|
|
2604
|
+
to the Licensor or its representatives, including but not limited to
|
|
2605
|
+
communication on electronic mailing lists, source code control systems,
|
|
2606
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
2607
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
2608
|
+
excluding communication that is conspicuously marked or otherwise
|
|
2609
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
2610
|
+
|
|
2611
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
2612
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
2613
|
+
subsequently incorporated within the Work.
|
|
2614
|
+
|
|
2615
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
2616
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
2617
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2618
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
2619
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
2620
|
+
Work and such Derivative Works in Source or Object form.
|
|
2621
|
+
|
|
2622
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
2623
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
2624
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2625
|
+
(except as stated in this section) patent license to make, have made,
|
|
2626
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
2627
|
+
where such license applies only to those patent claims licensable
|
|
2628
|
+
by such Contributor that are necessarily infringed by their
|
|
2629
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
2630
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
2631
|
+
institute patent litigation against any entity (including a
|
|
2632
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
2633
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
2634
|
+
or contributory patent infringement, then any patent licenses
|
|
2635
|
+
granted to You under this License for that Work shall terminate
|
|
2636
|
+
as of the date such litigation is filed.
|
|
2637
|
+
|
|
2638
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
2639
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
2640
|
+
modifications, and in Source or Object form, provided that You
|
|
2641
|
+
meet the following conditions:
|
|
2642
|
+
|
|
2643
|
+
(a) You must give any other recipients of the Work or
|
|
2644
|
+
Derivative Works a copy of this License; and
|
|
2645
|
+
|
|
2646
|
+
(b) You must cause any modified files to carry prominent notices
|
|
2647
|
+
stating that You changed the files; and
|
|
2648
|
+
|
|
2649
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
2650
|
+
that You distribute, all copyright, patent, trademark, and
|
|
2651
|
+
attribution notices from the Source form of the Work,
|
|
2652
|
+
excluding those notices that do not pertain to any part of
|
|
2653
|
+
the Derivative Works; and
|
|
2654
|
+
|
|
2655
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
2656
|
+
distribution, then any Derivative Works that You distribute must
|
|
2657
|
+
include a readable copy of the attribution notices contained
|
|
2658
|
+
within such NOTICE file, excluding those notices that do not
|
|
2659
|
+
pertain to any part of the Derivative Works, in at least one
|
|
2660
|
+
of the following places: within a NOTICE text file distributed
|
|
2661
|
+
as part of the Derivative Works; within the Source form or
|
|
2662
|
+
documentation, if provided along with the Derivative Works; or,
|
|
2663
|
+
within a display generated by the Derivative Works, if and
|
|
2664
|
+
wherever such third-party notices normally appear. The contents
|
|
2665
|
+
of the NOTICE file are for informational purposes only and
|
|
2666
|
+
do not modify the License. You may add Your own attribution
|
|
2667
|
+
notices within Derivative Works that You distribute, alongside
|
|
2668
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
2669
|
+
that such additional attribution notices cannot be construed
|
|
2670
|
+
as modifying the License.
|
|
2671
|
+
|
|
2672
|
+
You may add Your own copyright statement to Your modifications and
|
|
2673
|
+
may provide additional or different license terms and conditions
|
|
2674
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
2675
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
2676
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
2677
|
+
the conditions stated in this License.
|
|
2678
|
+
|
|
2679
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
2680
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
2681
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
2682
|
+
this License, without any additional terms or conditions.
|
|
2683
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
2684
|
+
the terms of any separate license agreement you may have executed
|
|
2685
|
+
with Licensor regarding such Contributions.
|
|
2686
|
+
|
|
2687
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
2688
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
2689
|
+
except as required for reasonable and customary use in describing the
|
|
2690
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
2691
|
+
|
|
2692
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
2693
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
2694
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
2695
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
2696
|
+
implied, including, without limitation, any warranties or conditions
|
|
2697
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
2698
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
2699
|
+
appropriateness of using or redistributing the Work and assume any
|
|
2700
|
+
risks associated with Your exercise of permissions under this License.
|
|
2701
|
+
|
|
2702
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
2703
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
2704
|
+
unless required by applicable law (such as deliberate and grossly
|
|
2705
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
2706
|
+
liable to You for damages, including any direct, indirect, special,
|
|
2707
|
+
incidental, or consequential damages of any character arising as a
|
|
2708
|
+
result of this License or out of the use or inability to use the
|
|
2709
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
2710
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
2711
|
+
other commercial damages or losses), even if such Contributor
|
|
2712
|
+
has been advised of the possibility of such damages.
|
|
2713
|
+
|
|
2714
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
2715
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
2716
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
2717
|
+
or other liability obligations and/or rights consistent with this
|
|
2718
|
+
License. However, in accepting such obligations, You may act only
|
|
2719
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
2720
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
2721
|
+
defend, and hold each Contributor harmless for any liability
|
|
2722
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
2723
|
+
of your accepting any such warranty or additional liability.
|
|
2724
|
+
|
|
2725
|
+
END OF TERMS AND CONDITIONS
|
|
2726
|
+
|
|
2727
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
2728
|
+
|
|
2729
|
+
To apply the Apache License to your work, attach the following
|
|
2730
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
2731
|
+
replaced with your own identifying information. (Don't include
|
|
2732
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
2733
|
+
comment syntax for the file format. We also recommend that a
|
|
2734
|
+
file or class name and description of purpose be included on the
|
|
2735
|
+
same "printed page" as the copyright notice for easier
|
|
2736
|
+
identification within third-party archives.
|
|
2737
|
+
|
|
2738
|
+
Copyright [yyyy] [name of copyright owner]
|
|
2739
|
+
|
|
2740
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2741
|
+
you may not use this file except in compliance with the License.
|
|
2742
|
+
You may obtain a copy of the License at
|
|
2743
|
+
|
|
2744
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2745
|
+
|
|
2746
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2747
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2748
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2749
|
+
See the License for the specific language governing permissions and
|
|
2750
|
+
limitations under the License.
|
|
2757
2751
|
|
|
2758
2752
|
_____
|
|
2759
2753
|
|
|
@@ -2812,214 +2806,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
2812
2806
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2813
2807
|
SOFTWARE.
|
|
2814
2808
|
|
|
2815
|
-
_____
|
|
2816
|
-
|
|
2817
|
-
NervanaSystems/ngraph
|
|
2818
|
-
|
|
2819
|
-
Copyright 2016-2019 Intel Corporation
|
|
2820
|
-
|
|
2821
|
-
Apache License
|
|
2822
|
-
Version 2.0, January 2004
|
|
2823
|
-
http://www.apache.org/licenses/
|
|
2824
|
-
|
|
2825
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
2826
|
-
|
|
2827
|
-
1. Definitions.
|
|
2828
|
-
|
|
2829
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
2830
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
2831
|
-
|
|
2832
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
2833
|
-
the copyright owner that is granting the License.
|
|
2834
|
-
|
|
2835
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
2836
|
-
other entities that control, are controlled by, or are under common
|
|
2837
|
-
control with that entity. For the purposes of this definition,
|
|
2838
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
2839
|
-
direction or management of such entity, whether by contract or
|
|
2840
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
2841
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
2842
|
-
|
|
2843
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
2844
|
-
exercising permissions granted by this License.
|
|
2845
|
-
|
|
2846
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
2847
|
-
including but not limited to software source code, documentation
|
|
2848
|
-
source, and configuration files.
|
|
2849
|
-
|
|
2850
|
-
"Object" form shall mean any form resulting from mechanical
|
|
2851
|
-
transformation or translation of a Source form, including but
|
|
2852
|
-
not limited to compiled object code, generated documentation,
|
|
2853
|
-
and conversions to other media types.
|
|
2854
|
-
|
|
2855
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
2856
|
-
Object form, made available under the License, as indicated by a
|
|
2857
|
-
copyright notice that is included in or attached to the work
|
|
2858
|
-
(an example is provided in the Appendix below).
|
|
2859
|
-
|
|
2860
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
2861
|
-
form, that is based on (or derived from) the Work and for which the
|
|
2862
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
2863
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
2864
|
-
of this License, Derivative Works shall not include works that remain
|
|
2865
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
2866
|
-
the Work and Derivative Works thereof.
|
|
2867
|
-
|
|
2868
|
-
"Contribution" shall mean any work of authorship, including
|
|
2869
|
-
the original version of the Work and any modifications or additions
|
|
2870
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
2871
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
2872
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
2873
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
2874
|
-
means any form of electronic, verbal, or written communication sent
|
|
2875
|
-
to the Licensor or its representatives, including but not limited to
|
|
2876
|
-
communication on electronic mailing lists, source code control systems,
|
|
2877
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
2878
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
2879
|
-
excluding communication that is conspicuously marked or otherwise
|
|
2880
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
2881
|
-
|
|
2882
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
2883
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
2884
|
-
subsequently incorporated within the Work.
|
|
2885
|
-
|
|
2886
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
2887
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
2888
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2889
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
2890
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
2891
|
-
Work and such Derivative Works in Source or Object form.
|
|
2892
|
-
|
|
2893
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
2894
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
2895
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2896
|
-
(except as stated in this section) patent license to make, have made,
|
|
2897
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
2898
|
-
where such license applies only to those patent claims licensable
|
|
2899
|
-
by such Contributor that are necessarily infringed by their
|
|
2900
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
2901
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
2902
|
-
institute patent litigation against any entity (including a
|
|
2903
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
2904
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
2905
|
-
or contributory patent infringement, then any patent licenses
|
|
2906
|
-
granted to You under this License for that Work shall terminate
|
|
2907
|
-
as of the date such litigation is filed.
|
|
2908
|
-
|
|
2909
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
2910
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
2911
|
-
modifications, and in Source or Object form, provided that You
|
|
2912
|
-
meet the following conditions:
|
|
2913
|
-
|
|
2914
|
-
(a) You must give any other recipients of the Work or
|
|
2915
|
-
Derivative Works a copy of this License; and
|
|
2916
|
-
|
|
2917
|
-
(b) You must cause any modified files to carry prominent notices
|
|
2918
|
-
stating that You changed the files; and
|
|
2919
|
-
|
|
2920
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
2921
|
-
that You distribute, all copyright, patent, trademark, and
|
|
2922
|
-
attribution notices from the Source form of the Work,
|
|
2923
|
-
excluding those notices that do not pertain to any part of
|
|
2924
|
-
the Derivative Works; and
|
|
2925
|
-
|
|
2926
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
2927
|
-
distribution, then any Derivative Works that You distribute must
|
|
2928
|
-
include a readable copy of the attribution notices contained
|
|
2929
|
-
within such NOTICE file, excluding those notices that do not
|
|
2930
|
-
pertain to any part of the Derivative Works, in at least one
|
|
2931
|
-
of the following places: within a NOTICE text file distributed
|
|
2932
|
-
as part of the Derivative Works; within the Source form or
|
|
2933
|
-
documentation, if provided along with the Derivative Works; or,
|
|
2934
|
-
within a display generated by the Derivative Works, if and
|
|
2935
|
-
wherever such third-party notices normally appear. The contents
|
|
2936
|
-
of the NOTICE file are for informational purposes only and
|
|
2937
|
-
do not modify the License. You may add Your own attribution
|
|
2938
|
-
notices within Derivative Works that You distribute, alongside
|
|
2939
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
2940
|
-
that such additional attribution notices cannot be construed
|
|
2941
|
-
as modifying the License.
|
|
2942
|
-
|
|
2943
|
-
You may add Your own copyright statement to Your modifications and
|
|
2944
|
-
may provide additional or different license terms and conditions
|
|
2945
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
2946
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
2947
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
2948
|
-
the conditions stated in this License.
|
|
2949
|
-
|
|
2950
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
2951
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
2952
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
2953
|
-
this License, without any additional terms or conditions.
|
|
2954
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
2955
|
-
the terms of any separate license agreement you may have executed
|
|
2956
|
-
with Licensor regarding such Contributions.
|
|
2957
|
-
|
|
2958
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
2959
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
2960
|
-
except as required for reasonable and customary use in describing the
|
|
2961
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
2962
|
-
|
|
2963
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
2964
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
2965
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
2966
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
2967
|
-
implied, including, without limitation, any warranties or conditions
|
|
2968
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
2969
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
2970
|
-
appropriateness of using or redistributing the Work and assume any
|
|
2971
|
-
risks associated with Your exercise of permissions under this License.
|
|
2972
|
-
|
|
2973
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
2974
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
2975
|
-
unless required by applicable law (such as deliberate and grossly
|
|
2976
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
2977
|
-
liable to You for damages, including any direct, indirect, special,
|
|
2978
|
-
incidental, or consequential damages of any character arising as a
|
|
2979
|
-
result of this License or out of the use or inability to use the
|
|
2980
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
2981
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
2982
|
-
other commercial damages or losses), even if such Contributor
|
|
2983
|
-
has been advised of the possibility of such damages.
|
|
2984
|
-
|
|
2985
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
2986
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
2987
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
2988
|
-
or other liability obligations and/or rights consistent with this
|
|
2989
|
-
License. However, in accepting such obligations, You may act only
|
|
2990
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
2991
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
2992
|
-
defend, and hold each Contributor harmless for any liability
|
|
2993
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
2994
|
-
of your accepting any such warranty or additional liability.
|
|
2995
|
-
|
|
2996
|
-
END OF TERMS AND CONDITIONS
|
|
2997
|
-
|
|
2998
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
2999
|
-
|
|
3000
|
-
To apply the Apache License to your work, attach the following
|
|
3001
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
3002
|
-
replaced with your own identifying information. (Don't include
|
|
3003
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
3004
|
-
comment syntax for the file format. We also recommend that a
|
|
3005
|
-
file or class name and description of purpose be included on the
|
|
3006
|
-
same "printed page" as the copyright notice for easier
|
|
3007
|
-
identification within third-party archives.
|
|
3008
|
-
|
|
3009
|
-
Copyright [yyyy] [name of copyright owner]
|
|
3010
|
-
|
|
3011
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
3012
|
-
you may not use this file except in compliance with the License.
|
|
3013
|
-
You may obtain a copy of the License at
|
|
3014
|
-
|
|
3015
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
3016
|
-
|
|
3017
|
-
Unless required by applicable law or agreed to in writing, software
|
|
3018
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
3019
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3020
|
-
See the License for the specific language governing permissions and
|
|
3021
|
-
limitations under the License.
|
|
3022
|
-
|
|
3023
2809
|
_____
|
|
3024
2810
|
Boost
|
|
3025
2811
|
|
|
@@ -3048,7 +2834,7 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
3048
2834
|
DEALINGS IN THE SOFTWARE.
|
|
3049
2835
|
|
|
3050
2836
|
|
|
3051
|
-
|
|
2837
|
+
_____
|
|
3052
2838
|
|
|
3053
2839
|
JDAI-CV/DNNLibrary
|
|
3054
2840
|
|
|
@@ -3255,7 +3041,7 @@ JDAI-CV/DNNLibrary
|
|
|
3255
3041
|
limitations under the License.
|
|
3256
3042
|
|
|
3257
3043
|
|
|
3258
|
-
|
|
3044
|
+
_____
|
|
3259
3045
|
|
|
3260
3046
|
google/flatbuffers
|
|
3261
3047
|
|
|
@@ -3463,7 +3249,7 @@ google/flatbuffers
|
|
|
3463
3249
|
limitations under the License.
|
|
3464
3250
|
|
|
3465
3251
|
|
|
3466
|
-
|
|
3252
|
+
_____
|
|
3467
3253
|
|
|
3468
3254
|
google/glog
|
|
3469
3255
|
|
|
@@ -3533,7 +3319,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
3533
3319
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3534
3320
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3535
3321
|
|
|
3536
|
-
|
|
3322
|
+
_____
|
|
3537
3323
|
|
|
3538
3324
|
abseil-cpp
|
|
3539
3325
|
https://github.com/abseil/abseil-cpp
|
|
@@ -3741,7 +3527,7 @@ https://github.com/abseil/abseil-cpp
|
|
|
3741
3527
|
limitations under the License.
|
|
3742
3528
|
|
|
3743
3529
|
|
|
3744
|
-
|
|
3530
|
+
_____
|
|
3745
3531
|
|
|
3746
3532
|
NVlabs/cub
|
|
3747
3533
|
|
|
@@ -3770,7 +3556,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
3770
3556
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
3771
3557
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3772
3558
|
|
|
3773
|
-
|
|
3559
|
+
_____
|
|
3774
3560
|
|
|
3775
3561
|
microsoft/wil
|
|
3776
3562
|
|
|
@@ -3796,7 +3582,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3796
3582
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3797
3583
|
SOFTWARE
|
|
3798
3584
|
|
|
3799
|
-
|
|
3585
|
+
_____
|
|
3800
3586
|
|
|
3801
3587
|
nlohmann/json
|
|
3802
3588
|
|
|
@@ -3822,7 +3608,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3822
3608
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3823
3609
|
SOFTWARE.
|
|
3824
3610
|
|
|
3825
|
-
|
|
3611
|
+
_____
|
|
3826
3612
|
|
|
3827
3613
|
dcleblanc/SafeInt
|
|
3828
3614
|
|
|
@@ -3848,7 +3634,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3848
3634
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3849
3635
|
SOFTWARE.
|
|
3850
3636
|
|
|
3851
|
-
|
|
3637
|
+
_____
|
|
3852
3638
|
Open MPI
|
|
3853
3639
|
|
|
3854
3640
|
3-Clause BSD License
|
|
@@ -3954,7 +3740,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
3954
3740
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3955
3741
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3956
3742
|
|
|
3957
|
-
|
|
3743
|
+
_____
|
|
3958
3744
|
|
|
3959
3745
|
The Android Open Source Project
|
|
3960
3746
|
|
|
@@ -4293,7 +4079,7 @@ libprotobuf-mutator
|
|
|
4293
4079
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
4294
4080
|
POSSIBILITY OF SUCH DAMAGE.
|
|
4295
4081
|
|
|
4296
|
-
|
|
4082
|
+
_____
|
|
4297
4083
|
|
|
4298
4084
|
mpi4py
|
|
4299
4085
|
https://github.com/mpi4py/mpi4py/
|
|
@@ -4805,7 +4591,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
4805
4591
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
4806
4592
|
PERFORMANCE OF THIS SOFTWARE.
|
|
4807
4593
|
|
|
4808
|
-
|
|
4594
|
+
_____
|
|
4809
4595
|
|
|
4810
4596
|
MurmurHash3
|
|
4811
4597
|
|
|
@@ -4820,4 +4606,65 @@ SMHasher test suite used to verify them.
|
|
|
4820
4606
|
SMHasher is released under the MIT license.
|
|
4821
4607
|
All MurmurHash versions are public domain software, and the author disclaims all copyright to their code.
|
|
4822
4608
|
|
|
4823
|
-
|
|
4609
|
+
_____
|
|
4610
|
+
|
|
4611
|
+
gtest-ios-framework
|
|
4612
|
+
|
|
4613
|
+
https://github.com/mestevens/gtest-ios-framework
|
|
4614
|
+
|
|
4615
|
+
Copyright (c) 2013 Matthew Stevens
|
|
4616
|
+
|
|
4617
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4618
|
+
a copy of this software and associated documentation files (the
|
|
4619
|
+
"Software"), to deal in the Software without restriction, including
|
|
4620
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
4621
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4622
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
4623
|
+
the following conditions:
|
|
4624
|
+
|
|
4625
|
+
The above copyright notice and this permission notice shall be
|
|
4626
|
+
included in all copies or substantial portions of the Software.
|
|
4627
|
+
|
|
4628
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
4629
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4630
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
4631
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
4632
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
4633
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
4634
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4635
|
+
|
|
4636
|
+
_____
|
|
4637
|
+
|
|
4638
|
+
optional-lite
|
|
4639
|
+
|
|
4640
|
+
Copyright (c) 2014-2018 Martin Moene
|
|
4641
|
+
|
|
4642
|
+
https://github.com/martinmoene/optional-lite
|
|
4643
|
+
|
|
4644
|
+
Distributed under the Boost Software License, Version 1.0.
|
|
4645
|
+
|
|
4646
|
+
Boost Software License - Version 1.0 - August 17th, 2003
|
|
4647
|
+
|
|
4648
|
+
Permission is hereby granted, free of charge, to any person or organization
|
|
4649
|
+
obtaining a copy of the software and accompanying documentation covered by
|
|
4650
|
+
this license (the "Software") to use, reproduce, display, distribute,
|
|
4651
|
+
execute, and transmit the Software, and to prepare derivative works of the
|
|
4652
|
+
Software, and to permit third-parties to whom the Software is furnished to
|
|
4653
|
+
do so, all subject to the following:
|
|
4654
|
+
|
|
4655
|
+
The copyright notices in the Software and this entire statement, including
|
|
4656
|
+
the above license grant, this restriction and the following disclaimer,
|
|
4657
|
+
must be included in all copies of the Software, in whole or in part, and
|
|
4658
|
+
all derivative works of the Software, unless such copies or derivative
|
|
4659
|
+
works are solely in the form of machine-executable object code generated by
|
|
4660
|
+
a source language processor.
|
|
4661
|
+
|
|
4662
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4663
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4664
|
+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
4665
|
+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
4666
|
+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
4667
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
4668
|
+
DEALINGS IN THE SOFTWARE.
|
|
4669
|
+
|
|
4670
|
+
_____
|