[go-nuts] Re: golang for AI

2017-12-22 Thread Lin Hao
In this case, I just saw one library of scientific computing: gonum . Therefore, I also put forward this suggestion here and hope to make positive progress. 在 2017年12月22日星期五 UTC+8下午2:33:04,Lee Rick写道: > > hi, >Artificial intelligence is a big trend, and i want

Re: [go-nuts] About runtime.globrunqput/globrunqputhead

2016-08-31 Thread Lin Hao
Sorry, I haven't expressed clearly. I didn't suggest anything, just wondering, so I want to ask about it. I mean, sched.midle is a single linked list, but its mode of operation is different from sched.runqhead/runqtail, why? (or, Why they used different structure?) -- You received this message b

[go-nuts] About runtime.globrunqput/globrunqputhead

2016-08-31 Thread Lin Hao
Hi, all: I'm reading the runtime code, and there are some questions, as shown below: func globrunqput(gp *g) { gp.schedlink = 0 if sched.runqtail != 0 { sched.runqtail.ptr().schedlink.set(gp)// My question: why? /