mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-28 20:11:22 +00:00
13 lines
356 B
C++
13 lines
356 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include "core/framework/op_kernel.h"
|
|
#include "core/framework/kernel_registry.h"
|
|
|
|
namespace onnxruntime {
|
|
namespace contrib {
|
|
Status RegisterCpuContribKernels(KernelRegistry& kernel_registry);
|
|
} // namespace contrib
|
|
} // namespace onnxruntime
|