From 198b6e8e37e2154068d35c892850f3349ba0dfc0 Mon Sep 17 00:00:00 2001 From: Manish Gupta Date: Tue, 19 Sep 2023 22:27:20 +0000 Subject: [PATCH] mixed input reference are in a new file --- tools/library/src/reference/gemm_fp_other.cu | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/tools/library/src/reference/gemm_fp_other.cu b/tools/library/src/reference/gemm_fp_other.cu index 148d701caf..5f8a1e30b5 100644 --- a/tools/library/src/reference/gemm_fp_other.cu +++ b/tools/library/src/reference/gemm_fp_other.cu @@ -77,24 +77,6 @@ void initialize_gemm_reference_operations_fp_other(Manifest &manifest) { complex, complex >(manifest); - - // Mixed-input (S8*F16) - make_gemm_real_canonical_layouts< - int8_t, - half_t, - half_t, - half_t, - half_t - >(manifest); - - // Mixed-input (U8*F16) - make_gemm_real_canonical_layouts< - uint8_t, - half_t, - half_t, - half_t, - half_t - >(manifest); } ///////////////////////////////////////////////////////////////////////////////////////////////////