Skip to content

Commit 69f1ac0

Browse files
limqiyingfacebook-github-bot
authored andcommitted
resolve Open Source requirement violations (facebookresearch#4551)
Summary: Pull Request resolved: facebookresearch#4551 Seems like open source requirements require header to specify: - (Meta Platforms, Inc. and affiliates) - (Facebook, Inc(\.|,)? and **its** affiliates) Whereas the current headers specify a hybrid of the above two options. "Copyright (c) Meta Platforms, Inc. and its affiliates." Causing it to be marked as violating. Fixing this issue. Reviewed By: junjieqi Differential Revision: D80989808 fbshipit-source-id: 720d55d1ca2133487733f6caaf4976acea2502e9
1 parent dca887a commit 69f1ac0

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

benchs/bench_ivfflat_cuvs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# @lint-ignore-every LICENSELINT
2-
# Copyright (c) Meta Platforms, Inc. and its affiliates.
2+
# Copyright (c) Meta Platforms, Inc. and affiliates.
33
#
44
# This source code is licensed under the MIT license found in the
55
# LICENSE file in the root directory of this source tree.

benchs/bench_ivfpq_cuvs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# @lint-ignore-every LICENSELINT
2-
# Copyright (c) Meta Platforms, Inc. and its affiliates.
2+
# Copyright (c) Meta Platforms, Inc. and affiliates.
33
#
44
# This source code is licensed under the MIT license found in the
55
# LICENSE file in the root directory of this source tree.

faiss/gpu/test/TestGpuIcmEncoder.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
#include <faiss/gpu/GpuIcmEncoder.h>
29
#include <faiss/gpu/StandardGpuResources.h>
310
#include <faiss/gpu/test/TestUtils.h>

faiss/python/faiss_example_external_module.swig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) Meta Platforms, Inc. and its affiliates.
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
33
*
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.

faiss/python/swigfaiss.swig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) Meta Platforms, Inc. and its affiliates.
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
33
*
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.

0 commit comments

Comments
 (0)