forked from EnzymeAD/Reactant.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReactantPythonCallExt.jl
54 lines (47 loc) · 1.24 KB
/
ReactantPythonCallExt.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
module ReactantPythonCallExt
using PythonCall
using Reactant: Reactant, TracedRArray, AnyTracedRArray, MLIR, TracedRNumber
using ReactantCore: @trace
using PythonCall
const jaxptr = Ref{Py}()
const NUMPY_SIMPLE_TYPES = Dict(
Bool => :bool_,
Int8 => :int8,
Int16 => :int16,
Int32 => :int32,
Int64 => :int64,
UInt8 => :uint8,
UInt16 => :uint16,
UInt32 => :uint32,
UInt64 => :uint64,
Float16 => :float16,
Float32 => :float32,
Float64 => :float64,
ComplexF16 => :complex32,
ComplexF32 => :complex64,
ComplexF64 => :complex128,
)
function PythonCall.pycall(
f::Py, arg0::Reactant.TracedRArray, argNs::Reactant.TracedRArray...; kwargs...
)
jax = jaxptr[]
numpy = jax.numpy
inputs = map((arg0, argNs...)) do arg
numpy.zeros(
size(arg);
dtype=getproperty(numpy, NUMPY_SIMPLE_TYPES[Reactant.unwrapped_eltype(arg)]),
)
end
lowered = jax.jit(f).lower(inputs...)
txt = pyconvert(String, lowered.as_text())
res = Reactant.Ops.hlo_call(txt, arg0, argNs...)
if length(res) == 0
return nothing
else
return res[1]
end
end
function __init__()
return jaxptr[] = pyimport("jax")
end
end # module ReactantPythonCallExt