Caffe2 - C++ API
A deep learning, cross platform ML framework
pool_dnnlowp_op_avx2.h
1 #pragma once
2 
3 #include <cstdint>
4 
5 namespace caffe2 {
6 
10 void max_pool_avx2(
11  const std::uint8_t* Xdata,
12  int n,
13  int height,
14  int width,
15  int channels,
16  int pooled_height,
17  int pooled_width,
18  int kernel_h,
19  int kernel_w,
20  int stride_h,
21  int stride_w,
22  int pad_t,
23  int pad_l,
24  std::uint8_t* Ydata);
25 
26 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13