"host/vscode:/vscode.git/clone" did not exist on "823657ed120144943b7db87c07fe3e647128db56"
convolution_forward_specialization.hpp 334 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CONVOLUTION_FORWARD_SPECIALIZATION
#define CONVOLUTION_FORWARD_SPECIALIZATION

namespace ck {
namespace tensor_operation {
namespace device {

enum ConvolutionForwardSpecialization_t
{
    Default,
    Filter1x1Pad0,
    Filter1x1Stride1Pad0,
};

} // namespace device
} // namespace tensor_operation
} // namespace ck
#endif