mirror of
https://github.com/ml-explore/mlx.git
synced 2025-12-16 01:49:05 +08:00
Fix grad in place updates (#2899)
Some checks failed
Build and Test / Check Lint (push) Has been cancelled
Build and Test / Linux (cpu, aarch64) (push) Has been cancelled
Build and Test / Linux (cpu, x86_64) (push) Has been cancelled
Build and Test / Linux (cuda-12.6, aarch64) (push) Has been cancelled
Build and Test / Linux (cuda-12.9, aarch64) (push) Has been cancelled
Build and Test / Linux (cuda-12.6, x86_64) (push) Has been cancelled
Build and Test / Linux (cuda-12.9, x86_64) (push) Has been cancelled
Build and Test / macOS (14.0) (push) Has been cancelled
Build and Test / macOS (15.0) (push) Has been cancelled
Build and Test / Build Documentation (push) Has been cancelled
Build and Test / Linux Fedora (aarch64) (push) Has been cancelled
Build and Test / Linux Fedora (x86_64) (push) Has been cancelled
Nightly Build / build_linux_release (3.10) (push) Has been cancelled
Nightly Build / build_linux_release (3.14) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.11, ubuntu-22.04) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.11, ubuntu-22.04-arm) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.12, ubuntu-22.04) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.12, ubuntu-22.04-arm) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.13, ubuntu-22.04) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.13, ubuntu-22.04-arm) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.14, ubuntu-22.04) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.14, ubuntu-22.04-arm) (push) Has been cancelled
Nightly Build / build_mac_release (3.10) (push) Has been cancelled
Nightly Build / build_mac_release (3.13) (push) Has been cancelled
Nightly Build / build_cuda_release (push) Has been cancelled
Some checks failed
Build and Test / Check Lint (push) Has been cancelled
Build and Test / Linux (cpu, aarch64) (push) Has been cancelled
Build and Test / Linux (cpu, x86_64) (push) Has been cancelled
Build and Test / Linux (cuda-12.6, aarch64) (push) Has been cancelled
Build and Test / Linux (cuda-12.9, aarch64) (push) Has been cancelled
Build and Test / Linux (cuda-12.6, x86_64) (push) Has been cancelled
Build and Test / Linux (cuda-12.9, x86_64) (push) Has been cancelled
Build and Test / macOS (14.0) (push) Has been cancelled
Build and Test / macOS (15.0) (push) Has been cancelled
Build and Test / Build Documentation (push) Has been cancelled
Build and Test / Linux Fedora (aarch64) (push) Has been cancelled
Build and Test / Linux Fedora (x86_64) (push) Has been cancelled
Nightly Build / build_linux_release (3.10) (push) Has been cancelled
Nightly Build / build_linux_release (3.14) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.11, ubuntu-22.04) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.11, ubuntu-22.04-arm) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.12, ubuntu-22.04) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.12, ubuntu-22.04-arm) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.13, ubuntu-22.04) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.13, ubuntu-22.04-arm) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.14, ubuntu-22.04) (push) Has been cancelled
Nightly Build / build_linux_with_tests (3.14, ubuntu-22.04-arm) (push) Has been cancelled
Nightly Build / build_mac_release (3.10) (push) Has been cancelled
Nightly Build / build_mac_release (3.13) (push) Has been cancelled
Nightly Build / build_cuda_release (push) Has been cancelled
This commit is contained in:
@@ -124,37 +124,53 @@ auto py_value_and_grad(
|
|||||||
|
|
||||||
// Collect the arrays
|
// Collect the arrays
|
||||||
std::vector<mx::array> arrays;
|
std::vector<mx::array> arrays;
|
||||||
|
std::vector<nb::object> array_objects;
|
||||||
|
auto flatten_with_objects = [&arrays, &array_objects](
|
||||||
|
auto tree, bool strict) {
|
||||||
|
tree_visit(tree, [&](nb::handle obj) {
|
||||||
|
if (nb::isinstance<mx::array>(obj)) {
|
||||||
|
arrays.push_back(nb::cast<mx::array>(obj));
|
||||||
|
array_objects.push_back(nb::borrow<nb::object>(obj));
|
||||||
|
} else if (strict) {
|
||||||
|
throw std::invalid_argument(
|
||||||
|
"[tree_flatten] The argument should contain only arrays");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
std::vector<int> counts(1, 0);
|
std::vector<int> counts(1, 0);
|
||||||
std::vector<int> gradient_indices;
|
std::vector<int> gradient_indices;
|
||||||
for (int i = 0, j = 0; i < args.size(); ++i) {
|
for (int i = 0, j = 0; i < args.size(); ++i) {
|
||||||
bool needs_grad = (j < argnums.size() && argnums[j] == i);
|
bool needs_grad = (j < argnums.size() && argnums[j] == i);
|
||||||
auto argsi = tree_flatten(args[i], /* strict = */ needs_grad);
|
auto pre_size = arrays.size();
|
||||||
|
flatten_with_objects(args[i], /* strict = */ needs_grad);
|
||||||
if (needs_grad) {
|
if (needs_grad) {
|
||||||
auto old_size = gradient_indices.size();
|
auto old_size = gradient_indices.size();
|
||||||
gradient_indices.resize(old_size + argsi.size());
|
auto delta_size = arrays.size() - pre_size;
|
||||||
|
gradient_indices.resize(old_size + delta_size);
|
||||||
std::iota(
|
std::iota(
|
||||||
gradient_indices.begin() + old_size,
|
gradient_indices.begin() + old_size,
|
||||||
gradient_indices.end(),
|
gradient_indices.end(),
|
||||||
arrays.size());
|
pre_size);
|
||||||
j++;
|
j++;
|
||||||
counts.push_back(argsi.size());
|
counts.push_back(delta_size);
|
||||||
}
|
}
|
||||||
arrays.insert(arrays.end(), argsi.begin(), argsi.end());
|
|
||||||
}
|
}
|
||||||
for (auto item : kwargs) {
|
for (auto item : kwargs) {
|
||||||
bool needs_grad =
|
bool needs_grad =
|
||||||
(argnames.find(nb::cast<std::string>(item.first)) != argnames.end());
|
(argnames.find(nb::cast<std::string>(item.first)) != argnames.end());
|
||||||
auto argsk = tree_flatten(item.second, /* strict = */ needs_grad);
|
auto pre_size = arrays.size();
|
||||||
|
flatten_with_objects(item.second, /* strict = */ needs_grad);
|
||||||
if (needs_grad) {
|
if (needs_grad) {
|
||||||
auto old_size = gradient_indices.size();
|
auto old_size = gradient_indices.size();
|
||||||
gradient_indices.resize(old_size + argsk.size());
|
auto delta_size = arrays.size() - pre_size;
|
||||||
|
gradient_indices.resize(old_size + delta_size);
|
||||||
std::iota(
|
std::iota(
|
||||||
gradient_indices.begin() + old_size,
|
gradient_indices.begin() + old_size,
|
||||||
gradient_indices.end(),
|
gradient_indices.end(),
|
||||||
arrays.size());
|
pre_size);
|
||||||
counts.push_back(argsk.size());
|
counts.push_back(delta_size);
|
||||||
}
|
}
|
||||||
arrays.insert(arrays.end(), argsk.begin(), argsk.end());
|
|
||||||
}
|
}
|
||||||
std::partial_sum(counts.cbegin(), counts.cend(), counts.begin());
|
std::partial_sum(counts.cbegin(), counts.cend(), counts.begin());
|
||||||
|
|
||||||
@@ -163,7 +179,7 @@ auto py_value_and_grad(
|
|||||||
nb::object py_value_out;
|
nb::object py_value_out;
|
||||||
auto value_and_grads = mx::value_and_grad(
|
auto value_and_grads = mx::value_and_grad(
|
||||||
[&fun,
|
[&fun,
|
||||||
&arrays,
|
&array_objects,
|
||||||
&args,
|
&args,
|
||||||
&kwargs,
|
&kwargs,
|
||||||
&py_value_out,
|
&py_value_out,
|
||||||
@@ -183,8 +199,9 @@ auto py_value_and_grad(
|
|||||||
tree_visit_update(tree, [&](nb::handle node) {
|
tree_visit_update(tree, [&](nb::handle node) {
|
||||||
auto replace_arr = nb::cast<mx::array>(node);
|
auto replace_arr = nb::cast<mx::array>(node);
|
||||||
if (replace_arr.id() == a[index].id()) {
|
if (replace_arr.id() == a[index].id()) {
|
||||||
return nb::cast(arrays[index++]);
|
return array_objects[index++];
|
||||||
} else {
|
} else {
|
||||||
|
index++;
|
||||||
return nb::cast(replace_arr);
|
return nb::cast(replace_arr);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -780,9 +780,21 @@ class TestAutograd(mlx_tests.MLXTestCase):
|
|||||||
return arrs[0]
|
return arrs[0]
|
||||||
|
|
||||||
arrs = [mx.array(1.0)]
|
arrs = [mx.array(1.0)]
|
||||||
init_id = id(arrs[0])
|
arr = arrs[0]
|
||||||
mx.grad(fun)(arrs)
|
mx.grad(fun)(arrs)
|
||||||
self.assertEqual(init_id, id(arrs[0]))
|
self.assertEqual(id(arr), id(arrs[0]))
|
||||||
|
|
||||||
|
def fun(arrs):
|
||||||
|
arrs[1] = sum(arrs)
|
||||||
|
return arrs[1]
|
||||||
|
|
||||||
|
arrs = [mx.array(1.0), mx.array(1.0), mx.array(1.0)]
|
||||||
|
a_0, a_1, a_2 = arrs
|
||||||
|
|
||||||
|
mx.grad(fun)(arrs)
|
||||||
|
self.assertEqual(id(a_0), id(arrs[0]))
|
||||||
|
self.assertNotEqual(id(a_1), id(arrs[1]))
|
||||||
|
self.assertEqual(id(a_2), id(arrs[2]))
|
||||||
|
|
||||||
def test_grad_with_inplace_update(self):
|
def test_grad_with_inplace_update(self):
|
||||||
def loss_fn(model):
|
def loss_fn(model):
|
||||||
|
|||||||
@@ -744,7 +744,6 @@ class TestVmap(mlx_tests.MLXTestCase):
|
|||||||
return Vector([t[0] + 10, t[1] * 10])
|
return Vector([t[0] + 10, t[1] * 10])
|
||||||
|
|
||||||
x = State(mx.array(1), mx.array(2))
|
x = State(mx.array(1), mx.array(2))
|
||||||
print(f"{transform(x)=}")
|
|
||||||
|
|
||||||
vmap_transform = mx.vmap(transform)
|
vmap_transform = mx.vmap(transform)
|
||||||
vmap_transform_tuple = mx.vmap(transform_tuple)
|
vmap_transform_tuple = mx.vmap(transform_tuple)
|
||||||
|
|||||||
Reference in New Issue
Block a user