kyonifer
01/19/2019, 9:41 PMMatrix
implementation in both of those languages just to make sure it wasn't some weird optimization done by the builtin libs that was cheating. My matrix wrapper used builtin arrays with the matrix algorithms i needed added in by me: on julia implemented using multiple dispatch, on swift using their generic specialization of protocols to eliminate virtual calls and protocol/value witness table lookups. In both cases i ended up with something that was fast, no codegen required, and generic. It was a discouraging result, because i prefer the language of kotlin much more but i have spent much more time trying to make it fast (via koma) than my weekend project in those twoaltavir
01/20/2019, 6:17 AM