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 #include <executorch/backends/vulkan/runtime/graph/ops/ExecuteNode.h>
10
11 namespace vkcompute {
ExecuteNode(const ResizeFunction & resize_fn,const std::vector<ValueRef> & resize_args,const std::vector<ArgGroup> & args,const std::string & name)12 ExecuteNode::ExecuteNode(
13 const ResizeFunction& resize_fn,
14 const std::vector<ValueRef>& resize_args,
15 const std::vector<ArgGroup>& args,
16 const std::string& name)
17 : resize_fn_(resize_fn),
18 resize_args_(resize_args),
19 args_(args),
20 name_(name) {}
21 } // namespace vkcompute
22