mirror of
https://github.com/facebookresearch/faiss.git
synced 2025-06-03 00:37:06 +08:00
* Facebook sync (2019-09-10) * Fix depends Makefile target. * Add faiss symlink for new include directives. * Fix missing header. * Fix tests. * Fix Makefile. * Update depend. * Fix include directives spacing.
16 lines
376 B
Plaintext
16 lines
376 B
Plaintext
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include <faiss/gpu/utils/warpselect/WarpSelectImpl.cuh>
|
|
|
|
namespace faiss { namespace gpu {
|
|
|
|
WARP_SELECT_IMPL(half, true, 32, 2);
|
|
WARP_SELECT_IMPL(half, false, 32, 2);
|
|
|
|
} } // namespace
|