Fix ACL build break (#3952)

This commit is contained in:
Tracy Sharpe 2020-05-14 23:14:15 -07:00 committed by GitHub
parent 47ae9691fd
commit be003dbab7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,15 +3,14 @@
#pragma once
#include "core/framework/op_kernel.h"
#include "core/providers/cpu/activation/activations.h"
namespace onnxruntime {
namespace acl {
template <typename T>
class Relu : public onnxruntime::Relu<T> {
class Relu : public OpKernel {
public:
explicit Relu(const OpKernelInfo& info) : onnxruntime::Relu<T>(info) {}
explicit Relu(const OpKernelInfo& info) : OpKernel(info) {}
Status Compute(OpKernelContext* context) const override;
};