From 8422558b946dc783f21241ed1226e601d314bd8b Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 14 May 2018 12:00:05 +0100 Subject: COMPMID-1150 : (OCLGrind) Kernel compilation error and assertion -Multiple definitions of COLS_MTX_B in gemm.cl one for FP32 and one for FP16. -GEMMTranspose1xWKernel invalid check fro small window sizes. Change-Id: I9c7ddd3577aec9afc702731ca27a1e10d6eddb81 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/131023 Tested-by: Jenkins Reviewed-by: Gian Marco Iodice Reviewed-by: Anthony Barbier --- src/core/CL/kernels/CLGEMMTranspose1xWKernel.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/core/CL/kernels') diff --git a/src/core/CL/kernels/CLGEMMTranspose1xWKernel.cpp b/src/core/CL/kernels/CLGEMMTranspose1xWKernel.cpp index a9618609e6..05a20fd604 100644 --- a/src/core/CL/kernels/CLGEMMTranspose1xWKernel.cpp +++ b/src/core/CL/kernels/CLGEMMTranspose1xWKernel.cpp @@ -71,11 +71,6 @@ std::pair validate_and_configure_window(ITensorInfo *input, ITen // Configure kernel window Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration)); - if((win.x().end() / scale_x) == 0) - { - return std::make_pair(ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Transposed shape would be 0 in the second dimension"), win); - } - AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration); // Output tensor auto inizialitation if not yet initialized -- cgit v1.2.1