Skip to content

Commit

Permalink
Run formatter [skip tests]
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Jun 25, 2023
1 parent 43c53ce commit af46aad
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/layers/basic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -484,9 +484,7 @@ function (b::Bilinear{use_bias})((x, y)::Tuple{<:AbstractVecOrMat, <:AbstractVec
end
end

function (b::Bilinear)((x, y)::Tuple{<:AbstractArray, <:AbstractArray},
ps,
st::NamedTuple)
function (b::Bilinear)((x, y)::Tuple{<:AbstractArray, <:AbstractArray}, ps, st::NamedTuple)
if size(x)[2:end] != size(y)[2:end]
throw(DimensionMismatch("data arrays must agree on batch dimensions, " *
"got sizes $(size(x)), and $(size(y))"))
Expand Down

2 comments on commit af46aad

@avik-pal
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/86239

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.55 -m "<description of version>" af46aadb38651298d021af6a7d851929c1c2b8fe
git push origin v0.4.55

Please sign in to comment.