Mike J Innes
Mike J Innes
```julia julia> D(f, x) = ForwardDiff2.D(f)(x)*1 D (generic function with 1 method) julia> function test() x = 2 D(1) do y x = y*x end D(1) do y x =...
I can make the dual type leak out into a global variable: ```julia julia> function f(x) global y = sin(x) end f (generic function with 1 method) julia> ForwardDiff2.D(f)(1)*1 0.5403023058681398...
You may have noticed that I [recently overhauled Flux's AD](http://fluxml.ai/Flux.jl/latest/models/basics.html) to emphasise a more functional API. My not-so-secret goal here is that Flux's current AD will be forwards-compatible with the...
OhMyREPL
OhMyREPL's syntax highlighting is really nice. I'm thinking we should bundle it with Juno; it would be as simple as doing `using OhMyREPL` in this package.
I thought we used to do something about this; either way it seems that stack overflows currently just crash the editor.
It's currently possible to get a wasm binary through [WABT](https://github.com/WebAssembly/wabt), but it'd be good to have a simple writer in the package to make this easy.
We need something basic here for testing and debugging output, optimisation passes and so on.