Re: [go-nuts] Suffix Array access

2023-02-14 Thread Piotr Wyderski
Hello Ian, Thank you for your answer. This statement settles it down. I'll do what you suggest. Best regards, Piotr poniedziałek, 13 lutego 2023 o 20:46:22 UTC+1 Ian Lance Taylor napisał(a): > On Mon, Feb 13, 2023 at 6:52 AM Piotr Wyderski > wrote: > > > >

[go-nuts] Suffix Array access

2023-02-13 Thread Piotr Wyderski
Hello, The "index/suffixarray" does a great job of providing users with a decent implementation of the SAIS algorithm. But why does the package hide the *ints *suffix array from its users and forces them to use the Lookup method? In my application, I build a suffix array to get, well, the suffi

[go-nuts] Re: Go 1.20 release date

2022-11-24 Thread Piotr Wyderski
Thank you Ben and Amnon! wtorek, 22 listopada 2022 o 22:50:02 UTC+1 ben...@gmail.com napisał(a): > You can also use the "gotip" command ( > https://pkg.go.dev/golang.org/dl/gotip) to pull the latest, unreleased > version from the Go development tree. > > -Ben > > On Wednesday, November 23, 2022

[go-nuts] Go 1.20 release date

2022-11-22 Thread Piotr Wyderski
Hi, is the date of the 1.20 release roughly known? I need some goodies it promises to provide. Best regards, Piotr -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an e

Re: [go-nuts] Goroutine to thread mapping

2022-11-10 Thread Piotr Wyderski
;> napisał(a): >> >>> Do you mean Go assembly or an assembly function called via CGo? >>> >>> On Nov 7, 2022, at 11:28 AM, Piotr Wyderski >>> wrote: >>> >>>  >>> >>> Hello, >>> >>> A goroutine needs ult

Re: [go-nuts] Goroutine to thread mapping

2022-11-08 Thread Piotr Wyderski
day, 7 November 2022 at 17:46:42 UTC ren...@ix.netcom.com wrote: > >> Do you mean Go assembly or an assembly function called via CGo? >> >> On Nov 7, 2022, at 11:28 AM, Piotr Wyderski wrote: >> >>  >> >> Hello, >> >> A goroutine needs ultimat

Re: [go-nuts] Goroutine to thread mapping

2022-11-08 Thread Piotr Wyderski
listopada 2022 o 18:46:42 UTC+1 ren...@ix.netcom.com napisał(a): > Do you mean Go assembly or an assembly function called via CGo? > > On Nov 7, 2022, at 11:28 AM, Piotr Wyderski wrote: > >  > > Hello, > > A goroutine needs ultimately to be assigned to an OS thread.

[go-nuts] Goroutine to thread mapping

2022-11-07 Thread Piotr Wyderski
Hello, A goroutine needs ultimately to be assigned to an OS thread. If a goroutine calls an assembly function F, can the thread assignment change during the execution of F? In other words, is F guaranteed to return on the same thread it was called? Best regards, Piotr -- You received th