Dominique

Results 406 comments of Dominique

I'm really not sure what could be wrong. `Pkg.build()` works fine and I'm quite sure I used `BinDeps.debug()` quite a bit while writing the `build.jl`. Any idea what could cause...

Ok thanks. I'll investigate. Based on your comment, I'm guessing [this line](https://github.com/JuliaSmoothOptimizers/HSL.jl/blob/ma57/deps/build.jl#L48) could be the culprit.

Does this really work? ``` JULIA julia> using CUDArt julia> using CUBLAS julia> x = rand(10); y = rand(10); julia> d_x = CudaArray(x); d_y = CudaArray(y); julia> dot(d_x, d_y) ERROR:...

I probably misunderstand how this all works, but isn't the only transfer occurring when I say `d_x = CudaArray(x)`? Isn't all of `cublasdots()` taking place on the GPU?

Well, ok, it starts paying off at arrays of size 2^20: ``` array size: 2^20 0.892670 seconds 0.647335 seconds (3.00 k allocations: 109.375 KB) array size: 2^21 1.891142 seconds 0.839174...

Just tested this with `master` and the problem is still there. Also `README.md` should say `Markdown.parse_file` instead of `Markdown.parse`.

See #19 for the fix to `README.md`.

I'm very interested in working out a good common API as well. I'm currently quite happy with the API in `Krylov.jl` but I'm of course open to discussing it. It's...

Sorry; `brew install pdf2svg`.

I got confused. The `@eval` trick doesn't work; it displays something else. How does one display an expression stored in a variable? Just call `tree_walk(myexpr)`?