Skip to content

Commit d6b604d

Browse files
committed
fix: Fix reorder test failures on multi-isa builds
Change-Id: Idba25cff9d29c07ebfafabb4dc46f88817fe639e Signed-off-by: Ryo Suzuki <[email protected]> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/14656 Comments-Addressed: Arm Jenkins <[email protected]> Benchmark: Arm Jenkins <[email protected]> Tested-by: Arm Jenkins <[email protected]> Reviewed-by: Pablo Marquez Tello <[email protected]>
1 parent ce1a7f0 commit d6b604d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/NEON/kernels/NEReorderKernel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ Status NEReorderKernel::validate(const ITensorInfo *input,
311311
}
312312
case DataType::BFLOAT16:
313313
{
314-
ARM_COMPUTE_ERROR_ON(!CPUInfo::get().has_bf16());
314+
ARM_COMPUTE_RETURN_ERROR_ON(!CPUInfo::get().has_bf16());
315315
#ifdef ARM_COMPUTE_ENABLE_SVE
316316
if (CPUInfo::get().has_sve() &&
317317
supported_bf16_transforms.count({get_sve_interleave_by<bfloat16>(interleave_by, block_by), block_by,

0 commit comments

Comments
 (0)