Skip to content

add complex sqrt

add complex sqrt #90

Triggered via pull request April 1, 2024 16:32
@wsmoseswsmoses
synchronize #1324
cmplx_sqrt
Status Failure
Total duration 5m 19s
Artifacts

Format.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 error and 2 warnings
format
Process completed with exit code 1.
format: src/compiler.jl#L70
[JuliaFormatter] reported by reviewdog 🐶 Raw Output: src/compiler.jl:70:-const cmplx_known_ops = src/compiler.jl:71:-Dict{DataType, Tuple{Symbol, Int, Union{Nothing, Tuple{Symbol, DataType}}}}( src/compiler.jl:72:- typeof(Base.inv) => (:cmplx_inv, 1, nothing), src/compiler.jl:73:- typeof(Base.sqrt) => (:cmplx_sqrt, 1, nothing), src/compiler.jl:74:- ) src/compiler.jl:75:-const known_ops = src/compiler.jl:76:-Dict{DataType, Tuple{Symbol, Int, Union{Nothing, Tuple{Symbol, DataType}}}}( src/compiler.jl:77:- typeof(Base.cbrt) => (:cbrt, 1, nothing), src/compiler.jl:78:- typeof(Base.rem2pi) => (:jl_rem2pi, 2, nothing), src/compiler.jl:79:- typeof(Base.sqrt) => (:sqrt, 1, nothing), src/compiler.jl:80:- typeof(Base.sin) => (:sin, 1, nothing), src/compiler.jl:81:- typeof(Base.sinc) => (:sincn, 1, nothing), src/compiler.jl:82:- typeof(Base.sincos) => (:__fd_sincos_1, 1, nothing), src/compiler.jl:83:- typeof(Base.sincospi) => (:sincospi, 1, nothing), src/compiler.jl:84:- typeof(Base.sinpi) => (:sinpi, 1, nothing), src/compiler.jl:85:- typeof(Base.cospi) => (:cospi, 1, nothing), src/compiler.jl:86:- typeof(Base.:^) => (:pow, 2, nothing), src/compiler.jl:87:- typeof(Base.rem) => (:fmod, 2, nothing), src/compiler.jl:88:- typeof(Base.cos) => (:cos, 1, nothing), src/compiler.jl:89:- typeof(Base.tan) => (:tan, 1, nothing), src/compiler.jl:90:- typeof(Base.exp) => (:exp, 1, nothing), src/compiler.jl:91:- typeof(Base.exp2) => (:exp2, 1, nothing), src/compiler.jl:92:- typeof(Base.expm1) => (:expm1, 1, nothing), src/compiler.jl:93:- typeof(Base.exp10) => (:exp10, 1, nothing), src/compiler.jl:94:- typeof(Base.FastMath.exp_fast) => (:exp, 1, nothing), src/compiler.jl:95:- typeof(Base.log) => (:log, 1, nothing), src/compiler.jl:96:- typeof(Base.FastMath.log) => (:log, 1, nothing), src/compiler.jl:97:- typeof(Base.log1p) => (:log1p, 1, nothing), src/compiler.jl:98:- typeof(Base.log2) => (:log2, 1, nothing), src/compiler.jl:99:- typeof(Base.log10) => (:log10, 1, nothing), src/compiler.jl:100:- typeof(Base.asin) => (:asin, 1, nothing), src/compiler.jl:101:- typeof(Base.acos) => (:acos, 1, nothing), src/compiler.jl:102:- typeof(Base.atan) => (:atan, 1, nothing), src/compiler.jl:103:- typeof(Base.atan) => (:atan2, 2, nothing), src/compiler.jl:104:- typeof(Base.sinh) => (:sinh, 1, nothing), src/compiler.jl:105:- typeof(Base.FastMath.sinh_fast) => (:sinh, 1, nothing), src/compiler.jl:106:- typeof(Base.cosh) => (:cosh, 1, nothing), src/compiler.jl:107:- typeof(Base.FastMath.cosh_fast) => (:cosh, 1, nothing), src/compiler.jl:108:- typeof(Base.tanh) => (:tanh, 1, nothing), src/compiler.jl:109:- typeof(Base.ldexp) => (:ldexp, 2, nothing), src/compiler.jl:110:- typeof(Base.FastMath.tanh_fast) => (:tanh, 1, nothing) src/compiler.jl:111:-) src/compiler.jl:75:+const cmplx_known_ops = Dict{DataType, src/compiler.jl:76:+ Tuple{Symbol,Int,Union{Nothing,Tuple{Symbol,DataType}}}}(typeof(Base.inv) => (:cmplx_inv, src/compiler.jl:77:+ 1, src/compiler.jl:78:+ nothing), src/compiler.jl:79:+ typeof(Base.sqrt) => (:cmplx_sqrt, src/compiler.jl:80:+ 1, src/compiler.jl:81:+ nothing)) src/compiler.jl:82:+const known_ops = Dict{DataType,Tuple{Symbol,Int,Union{Nothing,Tuple{Symbol,DataType}}}}(typeof(Base.cbrt) => (:cbrt, src/compiler.jl:83:+ 1, src/compiler.jl:84:+
format
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: julia-actions/setup-julia@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.