-
if i have a kernel writen with julia, how can i invoke with golang code |
Beta Was this translation helpful? Give feedback.
Answered by
maleadt
Jun 18, 2024
Replies: 1 comment
-
Since there doesn't seem to be a Go<->Julia integration package, you can use the Julia C API, https://docs.julialang.org/en/v1/manual/embedding/, and call that using Go's C FFI. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
maleadt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since there doesn't seem to be a Go<->Julia integration package, you can use the Julia C API, https://docs.julialang.org/en/v1/manual/embedding/, and call that using Go's C FFI.