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 6723492 commit 191f2aeCopy full SHA for 191f2ae
base/broadcast.jl
@@ -503,7 +503,7 @@ function check_broadcast_shape(shp, Ashp::Tuple)
503
_bcsm(shp[1], Ashp[1]) || throw(DimensionMismatch("array could not be broadcast to match destination"))
504
check_broadcast_shape(tail(shp), tail(Ashp))
505
end
506
-check_broadcast_axes(shp, A) = check_broadcast_shape(shp, axes(A))
+@inline check_broadcast_axes(shp, A) = check_broadcast_shape(shp, axes(A))
507
# comparing many inputs
508
@inline function check_broadcast_axes(shp, A, As...)
509
check_broadcast_axes(shp, A)
0 commit comments