Skip to content

Commit

Permalink
Initial commits
Browse files Browse the repository at this point in the history
  • Loading branch information
dannys4 committed Jul 22, 2021
1 parent ace8eb1 commit 5c2560b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/LLVM_intrinsics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,10 @@ for f in MULADD_INTRINSICS
end
end

function fmuladdsub(a::LVec{N,T}, b::LVec{N,T}, c::LVec{N,T}) where {N,T<:Float64}
ff = llvm_name("fma_vfmaddsub_pd")
ccall(ff, llvmcall, LVec{N,T}, (LVec{N, T}, LVec{N, T}, LVec{N, T}), a, b, c)
end

################
# Load / store #
Expand Down

0 comments on commit 5c2560b

Please sign in to comment.