Re: [go-nuts] Is there a Go native approch to MPI (Message passing interface) ?

2020-09-14 Thread Samuel Lampa
tps://github.com/jsgilmore/ib > • https://github.com/Mellanox/libvma > Some discussion: > https://groups.google.com/forum/#!topic/golang-nuts/t7Vjpfu0sjQ > > - Randy > > > On Sep 14, 2020, at 3:25 AM, Samuel Lampa wrote: > > > > On Thursday, June 11, 2015 at 2:53:36

[go-nuts] Re: Is there a Go native approch to MPI (Message passing interface) ?

2020-09-14 Thread Samuel Lampa
On Thursday, June 11, 2015 at 2:53:36 PM UTC+2 Egon wrote: > 1. In which cases a cluster of say 4 (or 10 or 100 for instance) Raspberry >> Pi mini computers can be more cost-effective than a single computer with >> the same amount of cores (does the cost of communicating the data between >>

[go-nuts] Re: Is there a workflow engine written in GO

2017-10-25 Thread Samuel Lampa
You might want to check out http://scipipe.org We developed it and are currently using it to run cheminformatics pipelines (data mangling, machine learning etc) on a HPC cluster, at http://pharmb.io at Uppsala University. Cheers // Samuel On Friday, May 8, 2015 at 2:30:20 PM UTC+2, Sriram

Re: [go-nuts] Re: Any way to somehow include readable source code into compiled binaries?

2017-10-19 Thread Samuel Lampa
Hi Seb! :) On Thursday, October 19, 2017 at 9:00:46 PM UTC+2, Sebastien Binet wrote: > > On Thu, Oct 19, 2017 at 8:51 PM, Alex Buchanan > wrote: > >> But, maybe a better solution is to faithfully record the current git (or >> other VCS) details you'd need to find the code

Re: [go-nuts] Re: Any way to somehow include readable source code into compiled binaries?

2017-10-19 Thread Samuel Lampa
We use go-bindata to bundle text files (html, js, css, yaml) into our binary. I bet you could use it to bundle Go source. https://github.com/jteeuwen/go-bindata Ah, this is great, Thanks! On 2017-10-19 20:51, Alex Buchanan wrote: But, maybe a

[go-nuts] Any way to somehow include readable source code into compiled binaries?

2017-10-19 Thread Samuel Lampa
Hi Gophers, *Question:* Is there any way to include a readable verison of the source code of my program into the compiled Go binary, either in plain text, or the ability extract it somehow, with some go tooling or 3rd party tools? *Background:* The reason for asking is that we are using Go to