Julian Samaroo
Julian Samaroo
Seems from https://aur.archlinux.org/packages/hsa-amd-aqlprofile-bin/ that it's closed-source. Which sucks because I'm on a musl system, and no one builds for musl...
@xuhuisheng have you tried running `rocprof --stats ...`? It seems even with `CMAKE_LD_AQLPROFILE=0`, this doesn't work.
@simark could this potentially be the cause of #5 ?
Correct, you need ROCK since those ioctls are not yet upstream.
Correct, you should not be using Nagle's algorithm for interactive sockets - it's intended for high-bandwidth, high-latency TCP connections (such as data downloads).
As a quick overview of what I implemented: I use PortAudio.jl to provide the input stream in 4-second increments, and write it into a rotating buffer of 5 seconds of...
Hey, I had the same issue (Win 10 in VBox on OSX). I managed to get it flashed with these steps: 1. Plug in your rephone and ensure that two...
The bug is in https://github.com/invenia/Impute.jl/blob/d08c5069f71507e4fee5e49e90f97c9527586a69/src/imputors/interp.jl#L55, which assumes that `data` has an eltype of `Union{T,Missing}`, and not just `Missing`. The latter case will cause `T` to be undefined, and throw the...
Doesn't Julia already have an interpreter, namely the one invoked with `--compile=no`?
I think this is reasonable behavior, given that (to my knowledge) the initial goal for the C interpreter was to handle code which can't yet be compiled, which I suppose...