We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Float16
1 parent 8272782 commit 4023556Copy full SHA for 4023556
src/compiler/output.jl
@@ -140,6 +140,7 @@ export @ipuprint, @ipuprintln
140
# `@ipuprint` pretty directly maps to `@ipuprintf`; we should just support `write(::IO)`.
141
const ipuprint_conversions = Dict(
142
Float32 => (x->:(Float64($x)), Float64),
143
+ Float16 => (x->:(Float64($x)), Float64),
144
Ptr{<:Any} => (x->:(convert(Ptr{Cvoid}, $x)), Ptr{Cvoid}),
145
LLVMPtr{<:Any} => (x->:(reinterpret(Ptr{Cvoid}, $x)), Ptr{Cvoid}),
146
Bool => (x->:(Int32($x)), Int32),
0 commit comments