1 /* 2 * Copyright (c) Meta Platforms, Inc. and affiliates. 3 * All rights reserved. 4 * 5 * This source code is licensed under the BSD-style license found in the 6 * LICENSE file in the root directory of this source tree. 7 */ 8 9 // clang-format off 10 #pragma once 11 12 #include <tuple> 13 14 #include <executorch/runtime/core/exec_aten/exec_aten.h> // at::Tensor etc. 15 #include <executorch/codegen/macros.h> // TORCH_API 16 #include <executorch/runtime/kernel/kernel_runtime_context.h> 17 18 // ${generated_comment} 19 20 ${static_dispatch_extra_headers} 21 22 namespace torch { 23 namespace executor { 24 25 ${Functions_declarations} 26 27 } // namespace executor 28 } // namespace torch 29