Skip to content

Commit e350f0a

Browse files
committed
Remove unused conv
1 parent 7f61196 commit e350f0a

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/LinearAlgebra/helper.jl

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -716,18 +716,6 @@ conv(y::SVector{1}, x::AbstractVector) = y[1]*x
716716
conv(x::AbstractFill, y::SVector{1}) = x*y[1]
717717
conv(y::SVector{1}, x::AbstractFill) = y[1]*x
718718
conv(x::AbstractFill, y::AbstractFill) = DSP.conv(x, y)
719-
function conv(x::AbstractFill, y::AbstractVector)
720-
isinf(length(x)) || return DSP.conv(x,y)
721-
@assert length(y) == 1
722-
x*y[1]
723-
end
724-
function conv(y::AbstractVector, x::AbstractFill)
725-
isinf(length(x)) || return DSP.conv(y,x)
726-
@assert length(y) == 1
727-
y[1]*x
728-
end
729-
730-
731719

732720

733721
## BlockInterlacer

0 commit comments

Comments
 (0)