Andy Gorman

Results 19 comments of Andy Gorman

@feinedsquirrel sorry for the late response. Looks like your changed did something but I'm still getting errors ~~~ # command-line-arguments /root/.gvm/gos/go1.15.6/pkg/tool/linux_amd64/link: running g++ failed: exit status 1 //usr/local/lib64/libcblas.a(cblas_sscal.c.o): In function...

This looks great, especially `recognizer.DetectFromMatCNN` which would be amazing! I'm looking forward to the merge.

@barasher I got a bit sidetracked with something else. Looking at all the options that will break things I'm not so sure it's a good idea. You can close this...

The problem is here https://github.com/xlab/pocketsphinx-go/blob/master/pocketsphinx/pocketsphinx.go#L143. It's not returning any elements from that *_Ctype_char. I got it to work by changing to `__v := C.GoString(__ret)` and returning a string but I...

Thanks, for the quick and detailed explanation. Here are the changes I made. ``` func (d *Decoder) LookupWord(word String) (string, bool) { phones := pocketsphinx.LookupWord(d.dec, word.S()) if phones != nil...

I'm running into this issue as well. It would be trivial to write middleware that could check if the context has been cancelled and return an `asynq.SkipRetry`. However, the context...

After more investigation my solution above will not work. Asynq returns context.Cancelled error right away and does not wait for the task to finish or read it's error message. This...

Is there a reasonable solution to this problem other than setting a low timeout and checking the value of context manually? Seems like we don't have a choice but to...

@leandroveronezi do you know if it's possible to pass these flags from the command line? When I try `CGO_CXXFLAGS="-std=c++1z -Wall -O3 -DNDEBUG -march=x86-64 -mtune=generic" go build ...` I'm still getting...