| 253 | } |
| 254 | |
| 255 | Status |
| 256 | CpuActivationKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, const ActivationLayerInfo &act_info) |
| 257 | { |
| 258 | ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, "CpuActivationKernel::validate"); |
| 259 | ARM_COMPUTE_UNUSED(act_info); |
| 260 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, act_info)); |
| 261 | return Status{}; |
| 262 | } |
| 263 | |
| 264 | size_t CpuActivationKernel::get_mws(const CPUInfo &platform, size_t thread_count) const |
| 265 | { |
nothing calls this directly
no test coverage detected