Faiss
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends
WarpSelectImpl.cuh
1 /**
2  * Copyright (c) 2015-present, Facebook, Inc.
3  * All rights reserved.
4  *
5  * This source code is licensed under the BSD+Patents license found in the
6  * LICENSE file in the root directory of this source tree.
7  */
8 
9 // Copyright 2004-present Facebook. All Rights Reserved.
10 #include "../WarpSelectKernel.cuh"
11 #include "../Limits.cuh"
12 
13 #define WARP_SELECT_DECL(TYPE, DIR, WARP_Q) \
14  extern void runWarpSelect_ ## TYPE ## _ ## DIR ## _ ## WARP_Q ## _( \
15  Tensor<TYPE, 2, true>& in, \
16  Tensor<TYPE, 2, true>& outK, \
17  Tensor<int, 2, true>& outV, \
18  bool dir, \
19  int k, \
20  cudaStream_t stream)
21 
22 #define WARP_SELECT_IMPL(TYPE, DIR, WARP_Q, THREAD_Q) \
23  void runWarpSelect_ ## TYPE ## _ ## DIR ## _ ## WARP_Q ## _( \
24  Tensor<TYPE, 2, true>& in, \
25  Tensor<TYPE, 2, true>& outK, \
26  Tensor<int, 2, true>& outV, \
27  bool dir, \
28  int k, \
29  cudaStream_t stream) { \
30  \
31  constexpr int kWarpSelectNumThreads = 128; \
32  auto grid = dim3(utils::divUp(in.getSize(0), \
33  (kWarpSelectNumThreads / kWarpSize))); \
34  auto block = dim3(kWarpSelectNumThreads); \
35  \
36  FAISS_ASSERT(k <= WARP_Q); \
37  FAISS_ASSERT(dir == DIR); \
38  \
39  auto kInit = dir ? Limits<TYPE>::getMin() : Limits<TYPE>::getMax(); \
40  auto vInit = -1; \
41  \
42  warpSelect<TYPE, int, DIR, WARP_Q, THREAD_Q, kWarpSelectNumThreads> \
43  <<<grid, block, 0, stream>>>(in, outK, outV, kInit, vInit, k); \
44  CUDA_TEST_ERROR(); \
45  }
46 
47 #define WARP_SELECT_CALL(TYPE, DIR, WARP_Q) \
48  runWarpSelect_ ## TYPE ## _ ## DIR ## _ ## WARP_Q ## _( \
49  in, outK, outV, dir, k, stream)