We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccb74c1 commit 5a6a9b0Copy full SHA for 5a6a9b0
test/direct.jl
@@ -221,6 +221,10 @@ if MKL_jll.is_available() && Sys.ARCH == :x86_64
221
# Test that `dgemm` forwards to `dgemm_` within the MKL binary
222
mkl_dgemm = dlsym(MKL_jll.libmkl_rt_handle, :dgemm_64)
223
@test lbt_get_forward(lbt_handle, "dgemm_", LBT_INTERFACE_ILP64) == mkl_dgemm
224
+
225
+ # Test that `dgemmt` forwards to `dgemmt_` within the MKL binary
226
+ mkl_dgemmt = dlsym(MKL_jll.libmkl_rt_handle, :dgemmt_64)
227
+ @test lbt_get_forward(lbt_handle, "dgemmt_", LBT_INTERFACE_ILP64) == mkl_dgemmt
228
end
229
230
@testset "MKL v2022 dual-interface loading" begin
0 commit comments