From 1aedbdfaa21fce6850f93aa7052df3c06a22b03f Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sat, 26 Aug 2023 07:51:13 -0700 Subject: [PATCH] remove outdated comment --- src/cunumeric/matrix/batched_cholesky_template.inl | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/cunumeric/matrix/batched_cholesky_template.inl b/src/cunumeric/matrix/batched_cholesky_template.inl index 79dff7edb..8d266e3f0 100644 --- a/src/cunumeric/matrix/batched_cholesky_template.inl +++ b/src/cunumeric/matrix/batched_cholesky_template.inl @@ -94,9 +94,6 @@ struct BatchedCholeskyImpl { if (shape.empty()) return; - // TODO: we need some sort of check here on the strides - // This should be a dense thing. - int num_blocks = 1; for (int i = 0; i < (DIM - 2); ++i) { num_blocks *= (shape.hi[i] - shape.lo[i] + 1); }