CatKernel.h 320 B

123456789101112
  1. #pragma once
  2. #include <ATen/core/Tensor.h>
  3. #include <ATen/native/DispatchStub.h>
  4. #include <ATen/core/IListRef.h>
  5. namespace at { namespace native {
  6. using cat_serial_fn = void(*)(const Tensor &, const MaterializedITensorListRef&, int64_t);
  7. DECLARE_DISPATCH(cat_serial_fn, cat_serial_stub);
  8. }} // namespace at::native