From 352770aad17708be1734dfbe4b2c04e0d90f36b6 Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Thu, 31 Oct 2024 14:32:41 +0530 Subject: [PATCH] Remove aggressive constprop annotation on generic_matmatmul_wrapper! --- stdlib/LinearAlgebra/src/matmul.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/LinearAlgebra/src/matmul.jl b/stdlib/LinearAlgebra/src/matmul.jl index 8e90b21a4b7ce..2f1a3fe2ba861 100644 --- a/stdlib/LinearAlgebra/src/matmul.jl +++ b/stdlib/LinearAlgebra/src/matmul.jl @@ -337,7 +337,7 @@ end # this indirection allows is to specialize on the types of the wrappers of A and B to some extent, # even though the wrappers are stripped off in mul! # By default, we ignore the wrapper info and forward the arguments to generic_matmatmul! -Base.@constprop :aggressive function generic_matmatmul_wrapper!(C, tA, tB, A, B, α, β, @nospecialize(val)) +function generic_matmatmul_wrapper!(C, tA, tB, A, B, α, β, @nospecialize(val)) generic_matmatmul!(C, tA, tB, A, B, α, β) end