onnxruntime/onnxruntime/contrib_ops/cpu_contrib_kernels.h
Ashwini Khade 92dc5c506d
move all contrib ops to contrib ops namespace (#1190)
* move all contrib ops to one place

* namespace changes

* bug fix - remove redundant file after merge master

* plus more minor bug fixes

* bug fix

* fix extra space in include header + namespace fix

* fix linux build failure:

* fix test group names

* remove redundant test
2019-06-24 10:19:01 -07:00

13 lines
354 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 {
void RegisterCpuContribKernels(KernelRegistry& kernel_registry);
} // namespace contrib
} // namespace onnxruntime