• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2004-present Facebook. All Rights Reserved.
2 #pragma once
3 
4 #include <ATen/core/Tensor.h>
5 #include <ATen/native/DispatchStub.h>
6 
7 namespace at::native {
8 
9 using stack_serial_fn = void(*)(Tensor &, TensorList, int64_t);
10 DECLARE_DISPATCH(stack_serial_fn, stack_serial_stub);
11 
12 } // namespace at::native
13