Viewing profile — kanaffa12345
kanaffa12345
HN member- Joined
- Sun, Jan 23, 2022, 6:03 PM UTC
- HN karma
- 13
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About kanaffa12345
No profile information was provided.
Recent public activity
-
comment
Comment #46162807
That wasn't an implied claim because we're not discussing metrics for judging quality.
-
comment
Comment #45595550
> 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 Appl…
-
comment
Comment #45595192
[flagged]
-
comment
Comment #30110235
if you're interested in this you might be interested in https://github.com/jbush001/NyuziProcessor
- comment
-
comment
Comment #30081665
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...
-
comment
Comment #30081553
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 st…
-
comment
Comment #30081075
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) iterati…
-
comment
Comment #30076887
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.
- comment
-
comment
Comment #30053080
>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 durin…
-
comment
Comment #30053024
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'…
-
comment
Comment #30050524
>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 tracin…
-
comment
Comment #30049270
>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…
-
comment
Comment #30048531
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 …