Skip to content

Commit

Permalink
Fixed ambiguous method call in T4 transformation. (#1224)
Browse files Browse the repository at this point in the history
  • Loading branch information
MoFtZ authored May 16, 2024
1 parent 1b0bd7e commit afba615
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions Src/ILGPU.Algorithms/Runtime/Cuda/CuBlasMappings.ttinclude
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ---------------------------------------------------------------------------------------
// ILGPU Algorithms
// Copyright (c) 2020-2023 ILGPU Project
// Copyright (c) 2020-2024 ILGPU Project
// www.ilgpu.net
//
// File: CuBlasMappings.ttinclude
Expand Down Expand Up @@ -319,15 +319,6 @@ public static readonly string[] Dgmm = new string[]

// Helper

public static IEnumerable<(T, string, string)> GetBlasMapping<T>(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<T>(
params (string, T[])[] bindings)
{
Expand Down

0 comments on commit afba615

Please sign in to comment.