onnxruntime/onnxruntime/core/framework/memcpy.h
2018-11-19 16:48:22 -08:00

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