mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-13 01:36:06 +00:00
15 lines
192 B
C++
15 lines
192 B
C++
#ifndef CK_CONVOLUTION_COMMON_HPP
|
|
#define CK_CONVOLUTION_COMMON_HPP
|
|
|
|
namespace ck {
|
|
|
|
enum ConvolutionDirection
|
|
{
|
|
Forward,
|
|
BackwardData,
|
|
BackwardWeight
|
|
};
|
|
|
|
} // namespace ck
|
|
#endif
|