reid from https://github.com/michuanhaohao/reid-strong-baseline
zhangmeng
2020-01-17 1bb4d137919cae4f57f95a2572ee612dcabb3b3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#pragma once
 
// RAII structs to acquire and release Python's global interpreter lock (GIL)
 
#include <torch/csrc/python_headers.h>
 
// Acquires the GIL on construction
struct AutoGIL {
  AutoGIL() : gstate(PyGILState_Ensure()) {
  }
  ~AutoGIL() {
    PyGILState_Release(gstate);
  }
 
  PyGILState_STATE gstate;
};
 
// Releases the GIL on construction
struct AutoNoGIL {
  AutoNoGIL() : save(PyEval_SaveThread()) {
  }
  ~AutoNoGIL() {
    PyEval_RestoreThread(save);
  }
 
  PyThreadState* save;
};
 
// Runs the function without the GIL
template<typename F>
inline void with_no_gil(F f) {
  AutoNoGIL no_gil;
  f();
}