1 #pragma once 2 #include <ATen/native/DispatchStub.h> 3 #include <cstdint> 4 5 namespace at { 6 class TensorBase; 7 } 8 9 namespace at::native { 10 11 using channel_shuffle_fn = void(*)(TensorBase&, const TensorBase&, int64_t); 12 DECLARE_DISPATCH(channel_shuffle_fn, channel_shuffle_kernel); 13 14 } // at::native 15