- added process multi

This commit is contained in:
2025-11-09 18:34:00 +01:00
parent 681290c9ae
commit f55bb73e7a
3 changed files with 64 additions and 9 deletions
+10
View File
@@ -89,6 +89,16 @@ class Shuffle
out[s] = sign * in[c];
}
};
static inline void inPlace(T *data, const int *shuffle_spec)
{
T temp[numCh];
for (int c=0; c < numCh; c++)
{
temp[c] = data[c];
}
Shuffle<T, numCh>::outOfPlace(temp, data, shuffle_spec);
};
};
#endif