QuantumBFS / YaoLang.jl

YaoLang: The next DSL for Yao and quantum programs.
https://yaoquantum.org/YaoLang.jl/dev/
Apache License 2.0
31 stars 6 forks source link

support callables #22

Closed Roger-luo closed 4 years ago

Roger-luo commented 4 years ago
struct Foo
     a::Int
     b::Int
end

@device function (m::Foo)(theta)
     @ctrl m.a m.b=>shift(theta)
end