mirror of
https://github.com/ml-explore/mlx.git
synced 2025-12-16 01:49:05 +08:00
@@ -62,7 +62,11 @@ norm(const array& a, int axis, bool keepdims = false, StreamOrDevice s = {}) {
|
||||
|
||||
std::pair<array, array> qr(const array& a, StreamOrDevice s = {});
|
||||
|
||||
std::vector<array> svd(const array& a, StreamOrDevice s = {});
|
||||
std::vector<array>
|
||||
svd(const array& a, bool compute_uv, StreamOrDevice s /* = {} */);
|
||||
inline std::vector<array> svd(const array& a, StreamOrDevice s = {}) {
|
||||
return svd(a, true, s);
|
||||
}
|
||||
|
||||
array inv(const array& a, StreamOrDevice s = {});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user