mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-29 03:30:52 +00:00
21 lines
433 B
C++
21 lines
433 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include "core/common/common.h"
|
|
#include "core/framework/op_kernel.h"
|
|
|
|
namespace onnxruntime {
|
|
|
|
class Memcpy final : public OpKernel {
|
|
public:
|
|
Memcpy(const OpKernelInfo& info);
|
|
|
|
Status Compute(OpKernelContext* context) const override;
|
|
|
|
private:
|
|
const IExecutionProvider* provider_;
|
|
};
|
|
|
|
} // namespace onnxruntime
|