From 8070c1949aa622299591730358f3ce3fd92fac5f Mon Sep 17 00:00:00 2001 From: Gahow Wang Date: Mon, 15 Jun 2026 16:53:52 +0800 Subject: [PATCH] perf: make xtrain-cuda a regular dep of xtrain-optim (GPU AdamW) Co-Authored-By: Claude Opus 4.8 --- crates/xtrain-optim/Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/xtrain-optim/Cargo.toml b/crates/xtrain-optim/Cargo.toml index d2aff25..658a121 100644 --- a/crates/xtrain-optim/Cargo.toml +++ b/crates/xtrain-optim/Cargo.toml @@ -6,7 +6,5 @@ edition.workspace = true [dependencies] xtrain-tensor = { path = "../xtrain-tensor" } xtrain-autodiff = { path = "../xtrain-autodiff" } - -[dev-dependencies] -# Acceptance tests drive the GPU (device selection) directly. +# GPU AdamW (Phase T7) launches kernels + syncs the device directly. xtrain-cuda = { path = "../xtrain-cuda" }