Live data from Hacker News

Viewing profile — kmaehashi

kmaehashi

HN member
Joined
Thu, Jan 30, 2020, 2:11 AM UTC
HN karma
21
Public activity
11 items

About kmaehashi

https://github.com/kmaehashi

https://x.com/kmaehashi

Recent public activity

  1. comment
    Comment #49169157

    Preferred Networks | Tokyo or Remote in Japan | Full-time | https://www.preferred.jp/en Preferred Networks is an AI company based in Tokyo working across the stack, from AI chips a…

  2. comment
    Comment #48761162

    Preferred Networks | Tokyo or Remote in Japan | Full-time | https://www.preferred.jp/en Preferred Networks is an AI company based in Tokyo working across the stack, from AI chips a…

  3. comment
    Comment #47982988

    Preferred Networks | Tokyo or Remote in Japan | Full-time | https://www.preferred.jp/en Preferred Networks is an AI company based in Tokyo working across the stack, from AI chips a…

  4. comment
    Comment #41606938

    CuPy isn't semi-abandoned as well, obviously :)

  5. comment
    Comment #41604084

    As a maintainer of CuPy and also as a user of several GPU-powered Python libraries, I empathize with the frustrations and difficulties here. Indeed, one thing CuPy values is to mak…

  6. comment
    Comment #41603885

    NumPy has a mechanism to dispatch execution to CuPy: https://numpy.org/neps/nep-0018-array-function-protocol.html Just prepare the input on NumPy or CuPy, and then you can just fee…

  7. comment
    Comment #41603736

    cuDF is a CuPy-based library providing drop-in replacement for Pandas: https://rapids.ai/

  8. comment
    Comment #41603674

    Actually all CUDA Toolkit libs are already available through the conda-forge channel: https://anaconda.org/conda-forge/cuda-cudart , https://anaconda.org/conda-forge/libcublas , et…

  9. comment
    Comment #41603482

    CuPy tensors (or `ndarray`) provide the same semantics as NumPy. In-place operations are permitted.

  10. comment
    Comment #41603432

    For those interested in the NumPy/SciPy API coverage in CuPy, here is the comparison table: https://docs.cupy.dev/en/latest/reference/comparison.html

  11. comment
    Comment #41603381

    An excellent example of Array API usage can be found in scikit-learn. Estimators written in NumPy are now operable on various backends courtesy of Array API compatible libraries su…