Live data from Hacker News

Viewing profile — kanaffa12345

kanaffa12345

HN member
Joined
Sun, Jan 23, 2022, 6:03 PM UTC
HN karma
13
Public activity
15 items

About kanaffa12345

No profile information was provided.

Recent public activity

  1. comment
    Comment #46162807

    That wasn't an implied claim because we're not discussing metrics for judging quality.

  2. 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…

  3. comment
    Comment #45595192

    [flagged]

  4. comment
    Comment #30110235

    if you're interested in this you might be interested in https://github.com/jbush001/NyuziProcessor

  5. comment
  6. 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...

  7. 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…

  8. 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…

  9. 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.

  10. comment
  11. 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…

  12. 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'…

  13. 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…

  14. 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…

  15. 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 …