From adb2b4e096c78e8b2f85fd372cf0d5eb04af5be8 Mon Sep 17 00:00:00 2001 From: Tyler Smith Date: Wed, 2 Mar 2016 14:48:12 -0600 Subject: [PATCH] Fixing guard for non implemented partitioning through packed matrices --- frame/1m/packm/bli_packm_part.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frame/1m/packm/bli_packm_part.c b/frame/1m/packm/bli_packm_part.c index 61eac3b54..89907993e 100644 --- a/frame/1m/packm/bli_packm_part.c +++ b/frame/1m/packm/bli_packm_part.c @@ -54,7 +54,7 @@ void bli_packm_acquire_mpart_t2b( subpart_t requested_part, // Partitioning top-to-bottom through packed column panels (which are // row-stored) is not yet supported. - if ( bli_obj_is_row_packed( *obj ) ) + if ( bli_obj_is_col_packed( *obj ) ) { bli_check_error_code( BLIS_NOT_YET_IMPLEMENTED ); } @@ -130,7 +130,7 @@ void bli_packm_acquire_mpart_l2r( subpart_t requested_part, // Partitioning left-to-right through packed row panels (which are // column-stored) is not yet supported. - if ( bli_obj_is_col_packed( *obj ) ) + if ( bli_obj_is_row_packed( *obj ) ) { bli_check_error_code( BLIS_NOT_YET_IMPLEMENTED ); }