Andrew Owens

Results 11 issues of Andrew Owens

From Slack, I was looking for a good way to replicate something like ``` inds = (alldata.year .

I don't have a MWE, but I hit this error on 0.6.2, not master. ``` ERROR: Cannot determine ordering of Dual tags ForwardDiff.Tag{#nLLp#38,Float64} and ForwardDiff.Tag{Base.Serializer.__deserialized_types__.#nLLp#38,Float64} Stacktrace: [1] extract_gradient_chunk!(::Type{ForwardDiff.Tag{#nLLp#38,Float64}}, ::Array{Float64,1}, ::ForwardDiff.Dual{ForwardDiff.Tag{Base.Serializer.__deserialized_types__.#nLLp#38,Float64},Float64,8},...

The following jmd file fails to weave https://gist.github.com/aaowens/30528f61528104988a53e15c5402a86f . If I try to run it with ``` weave("Parallel-VFI-examples.jmd") ``` I get errors like ``` ERROR: UndefVarError: DM not defined ```...

This works ``` using IndexedTables cs = Columns(x=[1.2, 3.4], y=[3,4]) t = table(cs, copy=false, pkey=:x) ts = ndsparse(t) ts[1.3] = (y = 5,) ``` However, if you first accidentally try...

Traceur is substantially more useful for me when I use the `modules` keyword from #24 , otherwise I'm flooded with warnings from Base and other modules I didn't develop. For...

``` using LowRankModels, DataFrames, Random import RDatasets # pick a data set df = RDatasets.dataset("psych", "msq") # we'll just fit four of the columns, to try out all four datatypes...

Why does it allocate the first time? `@btime` is not supposed to need a warm up. ``` julia> @btime soptimize(rosenbrock, $sx) 2.234 μs (2 allocations: 160 bytes) Results of Static...

It would be great if this ran on the GPU. It seems we might be most of the way there since this has no allocations, which I believe is a...

1. Test more, increasing code coverage. Might need to generate some fake data. 2. Change the Dict key type to String so I can update JSON3 (edit: Done)