From 7ee11c94ecbb2ba5db7dbb3325293fa987484d59 Mon Sep 17 00:00:00 2001 From: conrad Date: Sat, 30 Aug 2025 20:36:21 +1000 Subject: [PATCH] add TODO --- include/armadillo_bits/mul_gemm.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/armadillo_bits/mul_gemm.hpp b/include/armadillo_bits/mul_gemm.hpp index b409a4f3..099d0e14 100644 --- a/include/armadillo_bits/mul_gemm.hpp +++ b/include/armadillo_bits/mul_gemm.hpp @@ -241,8 +241,6 @@ struct gemm_emul_large if( (A_n_rows >= threshold) && (A_n_cols >= threshold) && (B_n_rows >= threshold) && (B_n_cols >= threshold) && (mp_thread_limit::in_parallel() == false) ) { - // TODO: the above limits on matrix sizes are place holders; - // TODO: need take into account transposes when determining if it's worth using the parallelised version gemm_emul_large_mp::apply(C,A,B,alpha,beta); return;