Skip to content

Commit e937a73

Browse files
committed
avoid excessive compilation time that increases exponentially in N
1 parent 2a56132 commit e937a73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/implementation/blascontract.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ end
134134

135135
_canfuse(::Dims{0}, ::Dims{0}) = true, 1, 1
136136
_canfuse(dims::Dims{1}, strides::Dims{1}) = true, dims[1], strides[1]
137-
@inline function _canfuse(dims::Dims{N}, strides::Dims{N}) where {N}
137+
function _canfuse(dims::Dims{N}, strides::Dims{N}) where {N}
138138
if dims[1] == 0
139139
return true, 0, 1
140140
elseif dims[1] == 1

0 commit comments

Comments
 (0)