onnxruntime 0.5.1 → 0.5.2

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: 316527780be2781a474d0813aff47d840654423823ad83b8b52b13752caf6814
4
- data.tar.gz: 5954ba2dc4223b8330fb52e8474be78542360c2f4c1cb5946529d062c0b1b864
3
+ metadata.gz: c4df8503d4840fee0e897a8fc7b093e74c8af0bb7bf438b0ca4e1dd20b9d26e1
4
+ data.tar.gz: cd58fd60bfa2b57ed04797bebd2f6062f5bfb7a5ec5e8707c6666e2eb771493d
5
5
  SHA512:
6
- metadata.gz: c127874dd75a10b8cb9d9d033e607f9d73069bb5709d7b9ecee04c1d59f969f61db6ec88fd569188b0a35c8276f7611619f81662f3735fbd53e61938f15c6822
7
- data.tar.gz: 77a7c9f8c98b25fd82ee8818c63176d2005f846db489b5973330220344be8fd47d8e5279517a716f8c1222f729a248fc8ac80cb610633dbdc35c49418a42ea1c
6
+ metadata.gz: 15538d6be0754132d2fb5f9b2ac75fb4ee263fdc75a39a169a276b8c578586b170b07bda2194ca671a5773172e89749353adcefee6531559851690b4e04a78b9
7
+ data.tar.gz: e9aaaf9e5e64c54579fe279e5d0554ddefa3fc8ee01bb51523d1ecd0a22ded6a3d4b5024ffe3b677dabcf18d5d1bcb7712e12b82ad6844a1ef80425986fe3aee
@@ -1,3 +1,9 @@
1
+ ## 0.5.2 (2020-12-27)
2
+
3
+ - Updated ONNX Runtime to 1.6.0
4
+ - Fixed error with `execution_mode` option
5
+ - Fixed error with `bool` input
6
+
1
7
  ## 0.5.1 (2020-11-01)
2
8
 
3
9
  - Updated ONNX Runtime to 1.5.2
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Check out [an example](https://ankane.org/tensorflow-ruby)
6
6
 
7
- [![Build Status](https://travis-ci.org/ankane/onnxruntime.svg?branch=master)](https://travis-ci.org/ankane/onnxruntime) [![Build status](https://ci.appveyor.com/api/projects/status/f2bq6ruqjf4jx671/branch/master?svg=true)](https://ci.appveyor.com/project/ankane/onnxruntime/branch/master)
7
+ [![Build Status](https://github.com/ankane/onnxruntime/workflows/build/badge.svg?branch=master)](https://github.com/ankane/onnxruntime/actions)
8
8
 
9
9
  ## Installation
10
10
 
@@ -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
- tensor_type = :uchar
228
- flat_input = flat_input.map { |v| v ? 1 : 0 }
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.read_array_of_uchar(output_tensor_size).map { |v| v == 1 }
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
@@ -1,3 +1,3 @@
1
1
  module OnnxRuntime
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
3
3
  end
@@ -848,22 +848,16 @@ THE POSSIBILITY OF SUCH DAMAGE.
848
848
 
849
849
  _____
850
850
 
851
- Microsoft/GSL
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
- # Name or Organization <email address>
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
- Version 2.0, January 2004
2352
- http://www.apache.org/licenses/
2353
-
2354
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2355
-
2356
- 1. Definitions.
2357
-
2358
- "License" shall mean the terms and conditions for use, reproduction,
2359
- and distribution as defined by Sections 1 through 9 of this document.
2360
-
2361
- "Licensor" shall mean the copyright owner or entity authorized by
2362
- the copyright owner that is granting the License.
2363
-
2364
- "Legal Entity" shall mean the union of the acting entity and all
2365
- other entities that control, are controlled by, or are under common
2366
- control with that entity. For the purposes of this definition,
2367
- "control" means (i) the power, direct or indirect, to cause the
2368
- direction or management of such entity, whether by contract or
2369
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
2370
- outstanding shares, or (iii) beneficial ownership of such entity.
2371
-
2372
- "You" (or "Your") shall mean an individual or Legal Entity
2373
- exercising permissions granted by this License.
2374
-
2375
- "Source" form shall mean the preferred form for making modifications,
2376
- including but not limited to software source code, documentation
2377
- source, and configuration files.
2378
-
2379
- "Object" form shall mean any form resulting from mechanical
2380
- transformation or translation of a Source form, including but
2381
- not limited to compiled object code, generated documentation,
2382
- and conversions to other media types.
2383
-
2384
- "Work" shall mean the work of authorship, whether in Source or
2385
- Object form, made available under the License, as indicated by a
2386
- copyright notice that is included in or attached to the work
2387
- (an example is provided in the Appendix below).
2388
-
2389
- "Derivative Works" shall mean any work, whether in Source or Object
2390
- form, that is based on (or derived from) the Work and for which the
2391
- editorial revisions, annotations, elaborations, or other modifications
2392
- represent, as a whole, an original work of authorship. For the purposes
2393
- of this License, Derivative Works shall not include works that remain
2394
- separable from, or merely link (or bind by name) to the interfaces of,
2395
- the Work and Derivative Works thereof.
2396
-
2397
- "Contribution" shall mean any work of authorship, including
2398
- the original version of the Work and any modifications or additions
2399
- to that Work or Derivative Works thereof, that is intentionally
2400
- submitted to Licensor for inclusion in the Work by the copyright owner
2401
- or by an individual or Legal Entity authorized to submit on behalf of
2402
- the copyright owner. For the purposes of this definition, "submitted"
2403
- means any form of electronic, verbal, or written communication sent
2404
- to the Licensor or its representatives, including but not limited to
2405
- communication on electronic mailing lists, source code control systems,
2406
- and issue tracking systems that are managed by, or on behalf of, the
2407
- Licensor for the purpose of discussing and improving the Work, but
2408
- excluding communication that is conspicuously marked or otherwise
2409
- designated in writing by the copyright owner as "Not a Contribution."
2410
-
2411
- "Contributor" shall mean Licensor and any individual or Legal Entity
2412
- on behalf of whom a Contribution has been received by Licensor and
2413
- subsequently incorporated within the Work.
2414
-
2415
- 2. Grant of Copyright License. Subject to the terms and conditions of
2416
- this License, each Contributor hereby grants to You a perpetual,
2417
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2418
- copyright license to reproduce, prepare Derivative Works of,
2419
- publicly display, publicly perform, sublicense, and distribute the
2420
- Work and such Derivative Works in Source or Object form.
2421
-
2422
- 3. Grant of Patent License. Subject to the terms and conditions of
2423
- this License, each Contributor hereby grants to You a perpetual,
2424
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2425
- (except as stated in this section) patent license to make, have made,
2426
- use, offer to sell, sell, import, and otherwise transfer the Work,
2427
- where such license applies only to those patent claims licensable
2428
- by such Contributor that are necessarily infringed by their
2429
- Contribution(s) alone or by combination of their Contribution(s)
2430
- with the Work to which such Contribution(s) was submitted. If You
2431
- institute patent litigation against any entity (including a
2432
- cross-claim or counterclaim in a lawsuit) alleging that the Work
2433
- or a Contribution incorporated within the Work constitutes direct
2434
- or contributory patent infringement, then any patent licenses
2435
- granted to You under this License for that Work shall terminate
2436
- as of the date such litigation is filed.
2437
-
2438
- 4. Redistribution. You may reproduce and distribute copies of the
2439
- Work or Derivative Works thereof in any medium, with or without
2440
- modifications, and in Source or Object form, provided that You
2441
- meet the following conditions:
2442
-
2443
- (a) You must give any other recipients of the Work or
2444
- Derivative Works a copy of this License; and
2445
-
2446
- (b) You must cause any modified files to carry prominent notices
2447
- stating that You changed the files; and
2448
-
2449
- (c) You must retain, in the Source form of any Derivative Works
2450
- that You distribute, all copyright, patent, trademark, and
2451
- attribution notices from the Source form of the Work,
2452
- excluding those notices that do not pertain to any part of
2453
- the Derivative Works; and
2454
-
2455
- (d) If the Work includes a "NOTICE" text file as part of its
2456
- distribution, then any Derivative Works that You distribute must
2457
- include a readable copy of the attribution notices contained
2458
- within such NOTICE file, excluding those notices that do not
2459
- pertain to any part of the Derivative Works, in at least one
2460
- of the following places: within a NOTICE text file distributed
2461
- as part of the Derivative Works; within the Source form or
2462
- documentation, if provided along with the Derivative Works; or,
2463
- within a display generated by the Derivative Works, if and
2464
- wherever such third-party notices normally appear. The contents
2465
- of the NOTICE file are for informational purposes only and
2466
- do not modify the License. You may add Your own attribution
2467
- notices within Derivative Works that You distribute, alongside
2468
- or as an addendum to the NOTICE text from the Work, provided
2469
- that such additional attribution notices cannot be construed
2470
- as modifying the License.
2471
-
2472
- You may add Your own copyright statement to Your modifications and
2473
- may provide additional or different license terms and conditions
2474
- for use, reproduction, or distribution of Your modifications, or
2475
- for any such Derivative Works as a whole, provided Your use,
2476
- reproduction, and distribution of the Work otherwise complies with
2477
- the conditions stated in this License.
2478
-
2479
- 5. Submission of Contributions. Unless You explicitly state otherwise,
2480
- any Contribution intentionally submitted for inclusion in the Work
2481
- by You to the Licensor shall be under the terms and conditions of
2482
- this License, without any additional terms or conditions.
2483
- Notwithstanding the above, nothing herein shall supersede or modify
2484
- the terms of any separate license agreement you may have executed
2485
- with Licensor regarding such Contributions.
2486
-
2487
- 6. Trademarks. This License does not grant permission to use the trade
2488
- names, trademarks, service marks, or product names of the Licensor,
2489
- except as required for reasonable and customary use in describing the
2490
- origin of the Work and reproducing the content of the NOTICE file.
2491
-
2492
- 7. Disclaimer of Warranty. Unless required by applicable law or
2493
- agreed to in writing, Licensor provides the Work (and each
2494
- Contributor provides its Contributions) on an "AS IS" BASIS,
2495
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2496
- implied, including, without limitation, any warranties or conditions
2497
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2498
- PARTICULAR PURPOSE. You are solely responsible for determining the
2499
- appropriateness of using or redistributing the Work and assume any
2500
- risks associated with Your exercise of permissions under this License.
2501
-
2502
- 8. Limitation of Liability. In no event and under no legal theory,
2503
- whether in tort (including negligence), contract, or otherwise,
2504
- unless required by applicable law (such as deliberate and grossly
2505
- negligent acts) or agreed to in writing, shall any Contributor be
2506
- liable to You for damages, including any direct, indirect, special,
2507
- incidental, or consequential damages of any character arising as a
2508
- result of this License or out of the use or inability to use the
2509
- Work (including but not limited to damages for loss of goodwill,
2510
- work stoppage, computer failure or malfunction, or any and all
2511
- other commercial damages or losses), even if such Contributor
2512
- has been advised of the possibility of such damages.
2513
-
2514
- 9. Accepting Warranty or Additional Liability. While redistributing
2515
- the Work or Derivative Works thereof, You may choose to offer,
2516
- and charge a fee for, acceptance of support, warranty, indemnity,
2517
- or other liability obligations and/or rights consistent with this
2518
- License. However, in accepting such obligations, You may act only
2519
- on Your own behalf and on Your sole responsibility, not on behalf
2520
- of any other Contributor, and only if You agree to indemnify,
2521
- defend, and hold each Contributor harmless for any liability
2522
- incurred by, or claims asserted against, such Contributor by reason
2523
- of your accepting any such warranty or additional liability.
2524
-
2525
- END OF TERMS AND CONDITIONS
2526
-
2527
- APPENDIX: How to apply the Apache License to your work.
2528
-
2529
- To apply the Apache License to your work, attach the following
2530
- boilerplate notice, with the fields enclosed by brackets "[]"
2531
- replaced with your own identifying information. (Don't include
2532
- the brackets!) The text should be enclosed in the appropriate
2533
- comment syntax for the file format. We also recommend that a
2534
- file or class name and description of purpose be included on the
2535
- same "printed page" as the copyright notice for easier
2536
- identification within third-party archives.
2537
-
2538
- Copyright [yyyy] [name of copyright owner]
2539
-
2540
- Licensed under the Apache License, Version 2.0 (the "License");
2541
- you may not use this file except in compliance with the License.
2542
- You may obtain a copy of the License at
2543
-
2544
- http://www.apache.org/licenses/LICENSE-2.0
2545
-
2546
- Unless required by applicable law or agreed to in writing, software
2547
- distributed under the License is distributed on an "AS IS" BASIS,
2548
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2549
- See the License for the specific language governing permissions and
2550
- limitations under the License.
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
- Version 2.0, January 2004
2558
- http://www.apache.org/licenses/
2559
-
2560
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2561
-
2562
- 1. Definitions.
2563
-
2564
- "License" shall mean the terms and conditions for use, reproduction,
2565
- and distribution as defined by Sections 1 through 9 of this document.
2566
-
2567
- "Licensor" shall mean the copyright owner or entity authorized by
2568
- the copyright owner that is granting the License.
2569
-
2570
- "Legal Entity" shall mean the union of the acting entity and all
2571
- other entities that control, are controlled by, or are under common
2572
- control with that entity. For the purposes of this definition,
2573
- "control" means (i) the power, direct or indirect, to cause the
2574
- direction or management of such entity, whether by contract or
2575
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
2576
- outstanding shares, or (iii) beneficial ownership of such entity.
2577
-
2578
- "You" (or "Your") shall mean an individual or Legal Entity
2579
- exercising permissions granted by this License.
2580
-
2581
- "Source" form shall mean the preferred form for making modifications,
2582
- including but not limited to software source code, documentation
2583
- source, and configuration files.
2584
-
2585
- "Object" form shall mean any form resulting from mechanical
2586
- transformation or translation of a Source form, including but
2587
- not limited to compiled object code, generated documentation,
2588
- and conversions to other media types.
2589
-
2590
- "Work" shall mean the work of authorship, whether in Source or
2591
- Object form, made available under the License, as indicated by a
2592
- copyright notice that is included in or attached to the work
2593
- (an example is provided in the Appendix below).
2594
-
2595
- "Derivative Works" shall mean any work, whether in Source or Object
2596
- form, that is based on (or derived from) the Work and for which the
2597
- editorial revisions, annotations, elaborations, or other modifications
2598
- represent, as a whole, an original work of authorship. For the purposes
2599
- of this License, Derivative Works shall not include works that remain
2600
- separable from, or merely link (or bind by name) to the interfaces of,
2601
- the Work and Derivative Works thereof.
2602
-
2603
- "Contribution" shall mean any work of authorship, including
2604
- the original version of the Work and any modifications or additions
2605
- to that Work or Derivative Works thereof, that is intentionally
2606
- submitted to Licensor for inclusion in the Work by the copyright owner
2607
- or by an individual or Legal Entity authorized to submit on behalf of
2608
- the copyright owner. For the purposes of this definition, "submitted"
2609
- means any form of electronic, verbal, or written communication sent
2610
- to the Licensor or its representatives, including but not limited to
2611
- communication on electronic mailing lists, source code control systems,
2612
- and issue tracking systems that are managed by, or on behalf of, the
2613
- Licensor for the purpose of discussing and improving the Work, but
2614
- excluding communication that is conspicuously marked or otherwise
2615
- designated in writing by the copyright owner as "Not a Contribution."
2616
-
2617
- "Contributor" shall mean Licensor and any individual or Legal Entity
2618
- on behalf of whom a Contribution has been received by Licensor and
2619
- subsequently incorporated within the Work.
2620
-
2621
- 2. Grant of Copyright License. Subject to the terms and conditions of
2622
- this License, each Contributor hereby grants to You a perpetual,
2623
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2624
- copyright license to reproduce, prepare Derivative Works of,
2625
- publicly display, publicly perform, sublicense, and distribute the
2626
- Work and such Derivative Works in Source or Object form.
2627
-
2628
- 3. Grant of Patent License. Subject to the terms and conditions of
2629
- this License, each Contributor hereby grants to You a perpetual,
2630
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2631
- (except as stated in this section) patent license to make, have made,
2632
- use, offer to sell, sell, import, and otherwise transfer the Work,
2633
- where such license applies only to those patent claims licensable
2634
- by such Contributor that are necessarily infringed by their
2635
- Contribution(s) alone or by combination of their Contribution(s)
2636
- with the Work to which such Contribution(s) was submitted. If You
2637
- institute patent litigation against any entity (including a
2638
- cross-claim or counterclaim in a lawsuit) alleging that the Work
2639
- or a Contribution incorporated within the Work constitutes direct
2640
- or contributory patent infringement, then any patent licenses
2641
- granted to You under this License for that Work shall terminate
2642
- as of the date such litigation is filed.
2643
-
2644
- 4. Redistribution. You may reproduce and distribute copies of the
2645
- Work or Derivative Works thereof in any medium, with or without
2646
- modifications, and in Source or Object form, provided that You
2647
- meet the following conditions:
2648
-
2649
- (a) You must give any other recipients of the Work or
2650
- Derivative Works a copy of this License; and
2651
-
2652
- (b) You must cause any modified files to carry prominent notices
2653
- stating that You changed the files; and
2654
-
2655
- (c) You must retain, in the Source form of any Derivative Works
2656
- that You distribute, all copyright, patent, trademark, and
2657
- attribution notices from the Source form of the Work,
2658
- excluding those notices that do not pertain to any part of
2659
- the Derivative Works; and
2660
-
2661
- (d) If the Work includes a "NOTICE" text file as part of its
2662
- distribution, then any Derivative Works that You distribute must
2663
- include a readable copy of the attribution notices contained
2664
- within such NOTICE file, excluding those notices that do not
2665
- pertain to any part of the Derivative Works, in at least one
2666
- of the following places: within a NOTICE text file distributed
2667
- as part of the Derivative Works; within the Source form or
2668
- documentation, if provided along with the Derivative Works; or,
2669
- within a display generated by the Derivative Works, if and
2670
- wherever such third-party notices normally appear. The contents
2671
- of the NOTICE file are for informational purposes only and
2672
- do not modify the License. You may add Your own attribution
2673
- notices within Derivative Works that You distribute, alongside
2674
- or as an addendum to the NOTICE text from the Work, provided
2675
- that such additional attribution notices cannot be construed
2676
- as modifying the License.
2677
-
2678
- You may add Your own copyright statement to Your modifications and
2679
- may provide additional or different license terms and conditions
2680
- for use, reproduction, or distribution of Your modifications, or
2681
- for any such Derivative Works as a whole, provided Your use,
2682
- reproduction, and distribution of the Work otherwise complies with
2683
- the conditions stated in this License.
2684
-
2685
- 5. Submission of Contributions. Unless You explicitly state otherwise,
2686
- any Contribution intentionally submitted for inclusion in the Work
2687
- by You to the Licensor shall be under the terms and conditions of
2688
- this License, without any additional terms or conditions.
2689
- Notwithstanding the above, nothing herein shall supersede or modify
2690
- the terms of any separate license agreement you may have executed
2691
- with Licensor regarding such Contributions.
2692
-
2693
- 6. Trademarks. This License does not grant permission to use the trade
2694
- names, trademarks, service marks, or product names of the Licensor,
2695
- except as required for reasonable and customary use in describing the
2696
- origin of the Work and reproducing the content of the NOTICE file.
2697
-
2698
- 7. Disclaimer of Warranty. Unless required by applicable law or
2699
- agreed to in writing, Licensor provides the Work (and each
2700
- Contributor provides its Contributions) on an "AS IS" BASIS,
2701
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2702
- implied, including, without limitation, any warranties or conditions
2703
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2704
- PARTICULAR PURPOSE. You are solely responsible for determining the
2705
- appropriateness of using or redistributing the Work and assume any
2706
- risks associated with Your exercise of permissions under this License.
2707
-
2708
- 8. Limitation of Liability. In no event and under no legal theory,
2709
- whether in tort (including negligence), contract, or otherwise,
2710
- unless required by applicable law (such as deliberate and grossly
2711
- negligent acts) or agreed to in writing, shall any Contributor be
2712
- liable to You for damages, including any direct, indirect, special,
2713
- incidental, or consequential damages of any character arising as a
2714
- result of this License or out of the use or inability to use the
2715
- Work (including but not limited to damages for loss of goodwill,
2716
- work stoppage, computer failure or malfunction, or any and all
2717
- other commercial damages or losses), even if such Contributor
2718
- has been advised of the possibility of such damages.
2719
-
2720
- 9. Accepting Warranty or Additional Liability. While redistributing
2721
- the Work or Derivative Works thereof, You may choose to offer,
2722
- and charge a fee for, acceptance of support, warranty, indemnity,
2723
- or other liability obligations and/or rights consistent with this
2724
- License. However, in accepting such obligations, You may act only
2725
- on Your own behalf and on Your sole responsibility, not on behalf
2726
- of any other Contributor, and only if You agree to indemnify,
2727
- defend, and hold each Contributor harmless for any liability
2728
- incurred by, or claims asserted against, such Contributor by reason
2729
- of your accepting any such warranty or additional liability.
2730
-
2731
- END OF TERMS AND CONDITIONS
2732
-
2733
- APPENDIX: How to apply the Apache License to your work.
2734
-
2735
- To apply the Apache License to your work, attach the following
2736
- boilerplate notice, with the fields enclosed by brackets "[]"
2737
- replaced with your own identifying information. (Don't include
2738
- the brackets!) The text should be enclosed in the appropriate
2739
- comment syntax for the file format. We also recommend that a
2740
- file or class name and description of purpose be included on the
2741
- same "printed page" as the copyright notice for easier
2742
- identification within third-party archives.
2743
-
2744
- Copyright [yyyy] [name of copyright owner]
2745
-
2746
- Licensed under the Apache License, Version 2.0 (the "License");
2747
- you may not use this file except in compliance with the License.
2748
- You may obtain a copy of the License at
2749
-
2750
- http://www.apache.org/licenses/LICENSE-2.0
2751
-
2752
- Unless required by applicable law or agreed to in writing, software
2753
- distributed under the License is distributed on an "AS IS" BASIS,
2754
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2755
- See the License for the specific language governing permissions and
2756
- limitations under the License.
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
+ _____