Re: [go-nuts] Calling Julia from Go

2017-12-10 Thread Jason E. Aten
Julia ships as a set of libraries and a thin repl prompt executable that loads them. Here is a simple example of calling Julia from Go. https://github.com/glycerine/golang-embed-julia On Tuesday, August 22, 2017 at 3:21:25 AM UTC-5, mrec...@gmail.com wrote: > > Unfortunately, Julia cannot be co

Re: [go-nuts] Calling Julia from Go

2017-08-22 Thread mrecht . m
Unfortunately, Julia cannot be compiled to a library. At least not that I am aware of. What could be done is linking/loading the Julia runtime libraries. That is what the author of the linked article tried. Here he hit some road blocks due to how Julia and Go manipulate the stack - if I underst

Re: [go-nuts] Calling Julia from Go

2017-08-22 Thread mrecht . m
I would like to implement a pricing server. The pricings will be delivered by quants and should be changeable (scripted) without affecting the server architecture/ On Friday, August 18, 2017 at 1:17:43 AM UTC+2, kortschak wrote: > > What is it that you want to do in Julia? > > On Wed, 2017-08-

Re: [go-nuts] Calling Julia from Go

2017-08-18 Thread Konstantin Khomoutov
On Wed, Aug 16, 2017 at 11:57:51PM -0700, mrech...@gmail.com wrote: > I would like to implement a valuation server. For the whole server > infrastructure I would like to use Go, because it feels more natural than > any other language for it. For the implementation of the valuations I would > li

Re: [go-nuts] Calling Julia from Go

2017-08-17 Thread Dan Kortschak
What is it that you want to do in Julia? On Wed, 2017-08-16 at 23:57 -0700, mrech...@gmail.com wrote: > I would like to implement a valuation server. For the whole serverĀ  > infrastructure I would like to use Go, because it feels more natural > thanĀ  > any other language for it. For the implementa

[go-nuts] Calling Julia from Go

2017-08-17 Thread mrecht . m
Hi, I would like to implement a valuation server. For the whole server infrastructure I would like to use Go, because it feels more natural than any other language for it. For the implementation of the valuations I would like to use Julia. Thus, using the aforementioned languages where (IMHO)