Wrong definition for the SIMD cumsum
This commit is contained in:
parent
ced4178643
commit
a114b1e144
1 changed files with 1 additions and 1 deletions
|
|
@ -477,7 +477,7 @@ inline void snippetCumsum(const T*& input, T*& output)
|
|||
}
|
||||
|
||||
template <class T, bool SIMD = SIMDConfig::cumsum>
|
||||
void cumsum(absl::Span<const float> input, absl::Span<float> output) noexcept
|
||||
void cumsum(absl::Span<const T> input, absl::Span<T> output) noexcept
|
||||
{
|
||||
ASSERT(output.size() >= input.size());
|
||||
if (input.size() == 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue