Skip to content

Commit 0d9030e

Browse files
authored
add copyright (microsoft#9943)
1 parent 1e31b2c commit 0d9030e

File tree

3 files changed

+89
-0
lines changed

3 files changed

+89
-0
lines changed

ThirdPartyNotices.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4741,3 +4741,39 @@ has been taken from other projects or from the open internet. Every line of
47414741
code can be traced back to its original author, and all of those authors have
47424742
public domain dedications on file. So the SQLite code base is clean and is
47434743
uncontaminated with licensed code from other projects.
4744+
4745+
_____
4746+
4747+
google/XNNPACK
4748+
4749+
BSD License
4750+
4751+
For XNNPACK software
4752+
4753+
Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
4754+
Copyright 2019 Google LLC
4755+
4756+
Redistribution and use in source and binary forms, with or without modification,
4757+
are permitted provided that the following conditions are met:
4758+
4759+
* Redistributions of source code must retain the above copyright notice, this
4760+
list of conditions and the following disclaimer.
4761+
4762+
* Redistributions in binary form must reproduce the above copyright notice,
4763+
this list of conditions and the following disclaimer in the documentation
4764+
and/or other materials provided with the distribution.
4765+
4766+
* Neither the name Facebook nor the names of its contributors may be used to
4767+
endorse or promote products derived from this software without specific
4768+
prior written permission.
4769+
4770+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
4771+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
4772+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4773+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
4774+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4775+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4776+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
4777+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4778+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4779+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

cgmanifests/cgmanifest.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,16 @@
493493
"DownloadUrl": "http://security.ubuntu.com/ubuntu/pool/main/s/sqlite3/libsqlite3-dev_3.22.0-1ubuntu0.4_amd64.deb"
494494
}
495495
}
496+
},
497+
{
498+
"component": {
499+
"type": "git",
500+
"git": {
501+
"commitHash": "512d44b9aa22690fd7d7e665fcab9bdcb590f118",
502+
"repositoryUrl": "https://github.com/google/XNNPACK.git"
503+
},
504+
"comments": "xnnpack"
505+
}
496506
}
497507
],
498508
"Version": 1

onnxruntime/core/mlas/lib/qdwconv_kernelsize.cpp

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
/*Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
2+
Copyright 2019 Google LLC
3+
4+
Redistribution and use in source and binary forms, with or without modification,
5+
are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
* Neither the name Facebook nor the names of its contributors may be used to
15+
endorse or promote products derived from this software without specific
16+
prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+
29+
==============================================================================*/
30+
/* Modifications Copyright (c) Microsoft. */
31+
32+
33+
/*++
34+
Module Name:
35+
36+
qdwconv_kernelsize.cpp
37+
38+
Abstract:
39+
40+
This module implements kernel of the quantized integer depthwise convolution with kernalsize 25.
41+
42+
--*/
43+
144
#include "mlasi.h"
245

346
#if defined(MLAS_TARGET_ARM64)

0 commit comments

Comments
 (0)