MikeInnes / Charlotte.jl

Charlotte's Web Scale
Other
113 stars 13 forks source link

Update to new SSAIR #18

Closed sjorn3 closed 6 years ago

sjorn3 commented 6 years ago

Currently have relu(x) = x < 0 ? 0 : x working. Although locals aren't added automatically, but that should be simple enough to add.

For the time being the simplest solution to register allocation (give every line a register) is being used, and seems to be working okay. Obviously such a system is useless for any sizeable program, but a simple method helps whilst ironing out bugs elsewhere.

tshort commented 6 years ago

Nice job!

sjorn3 commented 6 years ago

Contained in #27