Skip to content

Bump codecov/codecov-action from 3 to 4 #28

Bump codecov/codecov-action from 3 to 4

Bump codecov/codecov-action from 3 to 4 #28

Triggered via pull request February 5, 2024 21:29
Status Success
Total duration 1m 43s
Artifacts

Documenter.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

8 errors, 1 warning, and 1 notice
Documentation: ../../../.julia/packages/Documenter/6vUwN/src/DocTests.jl#L369
doctest failure in ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl ```jldoctest; setup=:(using TensorCore) julia> a = [2, 3]; b = [5, 7, 11]; julia> a ⊗ b 2×3 Array{Int64,2}: 10 14 22 15 21 33 ``` Subexpression: a ⊗ b Evaluated output: 2×3 Matrix{Int64}: 10 14 22 15 21 33 Expected output: 2×3 Array{Int64,2}: 10 14 22 15 21 33 diff = Warning: Diff output requires color. 2×3 Array{Int64,2}: Matrix{Int64}: 10 14 22 15 21 33
Documentation: ../../../.julia/packages/Documenter/6vUwN/src/DocTests.jl#L369
doctest failure in ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl ```jldoctest; setup=:(using TensorCore) julia> a = [2, 3]; b = [5, 7]; julia> a ⊙ b 2-element Array{Int64,1}: 10 21 julia> a ⊙ [5] ERROR: DimensionMismatch("Axes of `A` and `B` must match, got (Base.OneTo(2),) and (Base.OneTo(1),)") [...] ``` Subexpression: a ⊙ b Evaluated output: 2-element Vector{Int64}: 10 21 Expected output: 2-element Array{Int64,1}: 10 21 diff = Warning: Diff output requires color. 2-element Array{Int64,1}: Vector{Int64}: 10 21
Documentation: ../../../.julia/packages/Documenter/6vUwN/src/DocTests.jl#L369
doctest failure in ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl ```jldoctest; setup=:(using TensorCore) julia> a = [2, 3]; b = [5, 7]; julia> a ⊙ b 2-element Array{Int64,1}: 10 21 julia> a ⊙ [5] ERROR: DimensionMismatch("Axes of `A` and `B` must match, got (Base.OneTo(2),) and (Base.OneTo(1),)") [...] ``` Subexpression: a ⊙ [5] Evaluated output: ERROR: DimensionMismatch: Axes of `A` and `B` must match, got (Base.OneTo(2),) and (Base.OneTo(1),) Stacktrace: [1] (::TensorCore.var"#throw_dmm#1")(axA::Tuple{Base.OneTo{Int64}}, axB::Tuple{Base.OneTo{Int64}}) @ TensorCore ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl:35 [2] hadamard(A::Vector{Int64}, B::Vector{Int64}) @ TensorCore ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl:38 [3] top-level scope @ none:1 Expected output: ERROR: DimensionMismatch("Axes of `A` and `B` must match, got (Base.OneTo(2),) and (Base.OneTo(1),)") [...] diff = Warning: Diff output requires color. ERROR: DimensionMismatch("Axes DimensionMismatch: Axes of `A` and `B` must match, got (Base.OneTo(2),) and (Base.OneTo(1),)") [...](Base.OneTo(1),) Stacktrace: [1] (::TensorCore.var"#throw_dmm#1")(axA::Tuple{Base.OneTo{Int64}}, axB::Tuple{Base.OneTo{Int64}}) @ TensorCore ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl:35 [2] hadamard(A::Vector{Int64}, B::Vector{Int64}) @ TensorCore ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl:38 [3] top-level scope @ none:1
Documentation: ../../../.julia/packages/Documenter/6vUwN/src/DocTests.jl#L369
doctest failure in ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl:163-177 ```jldoctest; setup=:(using TensorCore) julia> M = rand(5,5); v = rand(5); julia> typeof(v ⊡ M') Array{Float64,1} julia> typeof(M ⊡ v') # adjoint of the previous line Adjoint{Float64,Array{Float64,1}} julia> typeof(v' ⊡ M') # same as *, and equal to adjoint(M ⊡ v) Adjoint{Float64,Array{Float64,1}} julia> typeof(v' ⊡ v) Float64 ``` Subexpression: typeof(v ⊡ M') Evaluated output: Vector{Float64} (alias for Array{Float64, 1}) Expected output: Array{Float64,1} diff = Warning: Diff output requires color. Array{Float64,1}Vector{Float64} (alias for Array{Float64, 1})
Documentation: ../../../.julia/packages/Documenter/6vUwN/src/DocTests.jl#L369
doctest failure in ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl:163-177 ```jldoctest; setup=:(using TensorCore) julia> M = rand(5,5); v = rand(5); julia> typeof(v ⊡ M') Array{Float64,1} julia> typeof(M ⊡ v') # adjoint of the previous line Adjoint{Float64,Array{Float64,1}} julia> typeof(v' ⊡ M') # same as *, and equal to adjoint(M ⊡ v) Adjoint{Float64,Array{Float64,1}} julia> typeof(v' ⊡ v) Float64 ``` Subexpression: typeof(M ⊡ v') # adjoint of the previous line Evaluated output: LinearAlgebra.Adjoint{Float64, Vector{Float64}} Expected output: Adjoint{Float64,Array{Float64,1}} diff = Warning: Diff output requires color. Adjoint{Float64,Array{Float64,1}}LinearAlgebra.Adjoint{Float64, Vector{Float64}}
Documentation: ../../../.julia/packages/Documenter/6vUwN/src/DocTests.jl#L369
doctest failure in ~/work/TensorCore.jl/TensorCore.jl/src/TensorCore.jl:163-177 ```jldoctest; setup=:(using TensorCore) julia> M = rand(5,5); v = rand(5); julia> typeof(v ⊡ M') Array{Float64,1} julia> typeof(M ⊡ v') # adjoint of the previous line Adjoint{Float64,Array{Float64,1}} julia> typeof(v' ⊡ M') # same as *, and equal to adjoint(M ⊡ v) Adjoint{Float64,Array{Float64,1}} julia> typeof(v' ⊡ v) Float64 ``` Subexpression: typeof(v' ⊡ M') # same as *, and equal to adjoint(M ⊡ v) Evaluated output: LinearAlgebra.Adjoint{Float64, Vector{Float64}} Expected output: Adjoint{Float64,Array{Float64,1}} diff = Warning: Diff output requires color. Adjoint{Float64,Array{Float64,1}}LinearAlgebra.Adjoint{Float64, Vector{Float64}}
Documentation: ../../../.julia/packages/Documenter/6vUwN/src/Documenter.jl#L552
Git failed to fetch [email protected]:JuliaMath/TensorCore.jl This can be caused by a DOCUMENTER_KEY variable that is not correctly set up. Make sure that the environment variable is properly set up as a Base64-encoded string of the SSH private key. You may need to re-generate the keys with DocumenterTools.
Documentation: ../../../.julia/packages/Documenter/6vUwN/src/Documenter.jl#L660
Failed to push: exception = failed process: Process(`git fetch upstream`, ProcessExited(128)) [128] Stacktrace: [1] pipeline_error @ Base ./process.jl:565 [inlined] [2] run(::Cmd; wait::Bool) @ Base ./process.jl:480 [3] run @ ./process.jl:477 [inlined] [4] (::Documenter.var"#git_commands#27"{String, String, SubString{String}, String, Vector{Any}, Bool, String, String})(sshconfig::String) @ Documenter ~/.julia/packages/Documenter/6vUwN/src/Documenter.jl:550 [5] (::Documenter.var"#26#32"{String})() @ Documenter ~/.julia/packages/Documenter/6vUwN/src/Documenter.jl:655 [6] cd(f::Documenter.var"#26#32"{String}, dir::String) @ Base.Filesystem ./file.jl:112 [7] #25 @ ~/.julia/packages/Documenter/6vUwN/src/Documenter.jl:655 [inlined] [8] withenv(f::Documenter.var"#25#31"{String, String}, keyvals::Pair{String, String}) @ Base ./env.jl:256 [9] (::Documenter.var"#24#30"{String, String, SubString{String}, String})(sshconfig::String, io::IOStream) @ Documenter ~/.julia/packages/Documenter/6vUwN/src/Documenter.jl:654 [10] mktemp(fn::Documenter.var"#24#30"{String, String, SubString{String}, String}, parent::String) @ Base.Filesystem ./file.jl:738 [11] mktemp(fn::Function) @ Base.Filesystem ./file.jl:736 [12] git_push(root::String, temp::String, repo::String; branch::String, dirname::String, target::String, sha::SubString{String}, devurl::String, versions::Vector{Any}, forcepush::Bool, deploy_config::Documenter.GitHubActions, subfolder::String, is_preview::Bool) @ Documenter ~/.julia/packages/Documenter/6vUwN/src/Documenter.jl:639 [13] git_push @ ~/.julia/packages/Documenter/6vUwN/src/Documenter.jl:526 [inlined] [14] #18 @ ~/.julia/packages/Documenter/6vUwN/src/Documenter.jl:504 [inlined] [15] mktempdir(fn::Documenter.var"#18#20"{SubString{String}, String, String, String, String, Vector{Any}, Bool, Documenter.GitHubActions, Bool, String, String, String}, parent::String; prefix::String) @ Base.Filesystem ./file.jl:766 [16] mktempdir(fn::Function, parent::String) (repeats 2 times) @ Base.Filesystem ./file.jl:762 [17] (::Documenter.var"#17#19"{String, String, String, Nothing, String, Vector{Any}, Bool, Documenter.GitHubActions, Bool, String, String, String})() @ Documenter ~/.julia/packages/Documenter/6vUwN/src/Documenter.jl:503 [18] cd(f::Documenter.var"#17#19"{String, String, String, Nothing, String, Vector{Any}, Bool, Documenter.GitHubActions, Bool, String, String, String}, dir::String) @ Base.Filesystem ./file.jl:112 [19] deploydocs(; root::String, target::String, dirname::String, repo::String, branch::String, repo_previews::String, branch_previews::String, deps::Nothing, make::Nothing, devbranch::String, devurl::String, versions::Vector{Any}, forcepush::Bool, deploy_config::Documenter.GitHubActions, push_preview::Bool) @ Documenter ~/.julia/packages/Documenter/6vUwN/src/Documenter.jl:480 [20] top-level scope @ ~/work/TensorCore.jl/TensorCore.jl/docs/make.jl:14 [21] include(fname::String) @ Base.MainInclude ./client.jl:489 [22] top-level scope @ none:8 [23] eval @ Core ./boot.jl:385 [inlined] [24] exec_options(opts::Base.JLOptions) @ Base ./client.jl:291 [25] _start() @ Base ./client.jl:552
Documentation: ../../../.julia/packages/Documenter/6vUwN/src/DocChecks.jl#L69
1 docstring not included in the manual: TensorCore._adjoint :: Tuple{Any} These are docstrings in the checked modules (configured with the modules keyword) that are not included in @docs or @autodocs blocks.
[julia-buildpkg] Caching of the julia depot was not detected
Consider using `julia-actions/cache` to speed up runs https://github.com/julia-actions/cache. To ignore, set input `ignore-no-cache: true`