Joel Mason
Joel Mason
Not sure if you're aware but there is an existing CUBLAS package for Julia - https://github.com/nwh/CUBLAS.jl/tree/master/src If there are more CUBLAS methods that need to be implemented then it might...
Is this a bug in IterTools? ```julia julia> using IterTools julia> collect(subsets((0,2,6), 2)) ERROR: MethodError: Cannot `convert` an object of type Tuple{Int64,Int64} to an object of type Array{Int64,1} ... Stacktrace:...
Uses `unsafe_gettpl!` from https://github.com/JuliaPy/PyCall.jl/pull/486 to get faster access to the elements from the `s, r, done, info` tuple returned by gym `env.step` functions in Python. This is two extra commits...
Just straight up copied gremlin.groovy from rexster/gremlin.groovy to neo4jserver/ - it seems to work. Cheers.
```julia img = rand(RGB{N0f8}, 100, 100) canny(img, (Percentile(80), Percentile(20))) ``` Gives a ``` ERROR: MethodError: no method matching canny(::Array{Gray{Normed{UInt8,8}},2}) Stacktrace: [1] canny(::Array{RGB{Normed{UInt8,8}},2}, ::Tuple{Percentile{Int64},Percentile{Int64}}) at Images/7FSUM/src/edge.jl:410 ``` Seems this code just...
This is going to be hastily reported, sorry in advance, let me know if you need more details. In my routes: ``` this.render("toptemplate",{data:{info1: "hi", info2: 7}}) ``` Template: ``` {{#dynamicTabs...
Great package! This is just an FYI for others. This package doesn't work in IJulia, but will if https://github.com/JuliaLang/IJulia.jl/pull/641 gets merged. The call that triggers the error is in ClobberingReload...
On today's julia 0.7, `using Lazy` throws the error: ``` The form `Expr(:let, ex, binds...)` is deprecated. Use `Expr(:let, Expr(:block, binds...), ex)` instead. ERROR: LoadError: LoadError: syntax: invalid let syntax...