mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
Fix ACL build break (#3952)
This commit is contained in:
parent
47ae9691fd
commit
be003dbab7
1 changed files with 2 additions and 3 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue