From c645928c0321b131b8f16e0cbea1dc63aeabdca9 Mon Sep 17 00:00:00 2001 From: MoFtZ Date: Thu, 16 May 2024 18:30:44 +1000 Subject: [PATCH] Fixed ambiguous method call in T4 transformation. --- .../Runtime/Cuda/CuBlasMappings.ttinclude | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Src/ILGPU.Algorithms/Runtime/Cuda/CuBlasMappings.ttinclude b/Src/ILGPU.Algorithms/Runtime/Cuda/CuBlasMappings.ttinclude index 2b262fbe1..80af53b64 100644 --- a/Src/ILGPU.Algorithms/Runtime/Cuda/CuBlasMappings.ttinclude +++ b/Src/ILGPU.Algorithms/Runtime/Cuda/CuBlasMappings.ttinclude @@ -1,6 +1,6 @@ // --------------------------------------------------------------------------------------- // ILGPU Algorithms -// Copyright (c) 2020-2023 ILGPU Project +// Copyright (c) 2020-2024 ILGPU Project // www.ilgpu.net // // File: CuBlasMappings.ttinclude @@ -319,15 +319,6 @@ public static readonly string[] Dgmm = new string[] // Helper -public static IEnumerable<(T, string, string)> GetBlasMapping(params T[] values) -{ - for (int i = 0; i < values.Length; ++i) - { - var (type, elemType) = CuBlasTypes[i]; - yield return (values[i], type, elemType); - } -} - public static IEnumerable<(string, T, string, string)> GetBlasMapping( params (string, T[])[] bindings) {