"integration-tests/vscode:/vscode.git/clone" did not exist on "2335459556d50d5dd5e39dc41e0ee16366d655dc"
convolution_forward_specialization.hpp 344 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CONVOLUTION_FORWARD_SPECIALIZATION
#define CONVOLUTION_FORWARD_SPECIALIZATION

namespace ck {
namespace tensor_operation {
namespace device {

enum ConvolutionForwardSpecialization_t
{
    Default,
    Filter1x1Pad0,
    Filter1x1Stride1Pad0,
Chao Liu's avatar
Chao Liu committed
13
    OddC,
Chao Liu's avatar
Chao Liu committed
14
15
16
17
18
19
};

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