Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
kanaffa12345
searching PlanetScale…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
by
kanaffa12345
10mo ago
That wasn't an implied claim because we're not discussing metrics for judging quality.
2.
▲
by
kanaffa12345
1y ago
> That CoreML models are prolific on Apple platforms? That Apple devices are prolific? correct and non-controversial > An enormous number of people and products [use CoreML on Apple platforms] non-sequitur EDIT: i see people are not a
3.
▲
by
kanaffa12345
5y ago
if you're interested in this you might be interested in https://github.com/jbush001/NyuziProcessor
4.
▲
by
kanaffa12345
5y ago
how ironic that her blog post on how to access paywalled articles is currently "Access Denied" https://holly.witteman.ca/index.php/2017/12/11/getting-acces...
5.
▲
by
kanaffa12345
5y ago
you don't transpose it before the matmul, you always have it transposed (i.e., when you print the weights of a linear layer in pytorch, you're actually seeing (A^t)^t and what's stored is A^t.
6.
▲
by
kanaffa12345
5y ago
a polyhedral compiler wouldn't find this either - polyhedral compilation is for finding optimal schedules for loop nests i.e., the order in which independent (wrt dataflow) iterations run. as far as i know you, a transpose can't b
7.
▲
by
kanaffa12345
5y ago
there is no way a general purpose compiler will figure this out. op is probably talking about something like halide or tvm or torchscript jit.
8.
▲
by
kanaffa12345
5y ago
>You miss my point no you miss my point >making slow Python code run faster there is not a single org anywhere in the world that uses pure python to do numerics. kids do that during their first linear algebra or ml class. that's
9.
▲
by
kanaffa12345
5y ago
since this post might attract people that are mathematica powerusers: how good are mathematicas optimization routines vs commercial solvers like gurobi or cplex? reason i ask is i'm spinning up project that'll require a good bit o
10.
▲
by
kanaffa12345
5y ago
>jit compile Python given who you are (googling your name) i'm surprised that you would say this. jax does not jit compile python in any sense of the word `Python`. jax is a tracing mechanism for a very particular set of "progr
11.
▲
by
kanaffa12345
5y ago
>missing the point facts 1. this is a thread about cpython. jax is as relevant to users of cpython as CUDA or OpenCL or whatever. jax cannot do absolutely anything with e.g. django. 2. for all intents and purposes all numerical code alwa
12.
▲
by
kanaffa12345
5y ago
these two things have nothing to do with each other. jax doesn't compile numpy, it reimplemnts the api using `ufunc`. in general, every single numerical kernel is always mapped to kind of compiled code.