Added Kronecker Product (#1728)

This commit is contained in:
Venkata Naga Aditya Datta Chivukula
2025-01-02 17:00:34 -07:00
committed by GitHub
parent 92ec632ad5
commit 491fa95b1f
4 changed files with 88 additions and 0 deletions

View File

@@ -917,6 +917,9 @@ inline array gather(
return gather(a, {indices}, std::vector<int>{axis}, slice_sizes, s);
}
/** Returns Kronecker Producct given two input arrays. */
array kron(const array& a, const array& b, StreamOrDevice s = {});
/** Take array slices at the given indices of the specified axis. */
array take(
const array& a,