Re: [go-nuts] Go/Python interop

2023-11-27 Thread 'Michael Knyszek' via golang-nuts
On Thu, Nov 23, 2023 at 11:52 AM Sebastien Binet wrote: > On Thu Nov 23, 2023 at 15:23 CET, 'Michael Knyszek' via golang-nuts wrote: > > Also, I'd like to clarify: > > > > - [David]: is it a good idea to use cgo for Go-Python interop? > > - [Michael]: no. better with pipe or RPC > > > > I'm

Re: [go-nuts] Go/Python interop

2023-11-23 Thread Sebastien Binet
On Thu Nov 23, 2023 at 15:23 CET, 'Michael Knyszek' via golang-nuts wrote: > Also, I'd like to clarify: > > - [David]: is it a good idea to use cgo for Go-Python interop? > - [Michael]: no. better with pipe or RPC > > I'm wrong about this. A conversation after the meeting clarified a >

Re: [go-nuts] Go/Python interop

2023-11-23 Thread 'Michael Knyszek' via golang-nuts
Also, I'd like to clarify: - [David]: is it a good idea to use cgo for Go-Python interop? - [Michael]: no. better with pipe or RPC I'm wrong about this. A conversation after the meeting clarified a misunderstanding I had about Go->Python calls specifically. Both Go->Python and Python->Go with

Re: [go-nuts] Go/Python interop

2023-11-23 Thread Sebastien Binet
On Thu Nov 23, 2023 at 01:24 CET, Eli Bendersky wrote: > On Wed, Nov 22, 2023 at 11:31 AM Sebastien Binet > > wrote: > > > Hi there, > > > > In this week "compiler minutes" [1], one can read: > > > > """ > > - Go on future platforms (RAM efficiency. NUMA?) > > - (maybe) Go-Python interop for

Re: [go-nuts] Go/Python interop

2023-11-22 Thread Eli Bendersky
On Wed, Nov 22, 2023 at 11:31 AM Sebastien Binet wrote: > Hi there, > > In this week "compiler minutes" [1], one can read: > > """ > - Go on future platforms (RAM efficiency. NUMA?) > - (maybe) Go-Python interop for AI-powered applications > - [David]: is it a good idea to use cgo for Go-Python

[go-nuts] Go/Python interop

2023-11-22 Thread Sebastien Binet
Hi there, In this week "compiler minutes" [1], one can read: """ - Go on future platforms (RAM efficiency. NUMA?) - (maybe) Go-Python interop for AI-powered applications - [David]: is it a good idea to use cgo for Go-Python interop? - [Michael]: no. better with pipe or RPC """ Would it be