Viewing profile — kmaehashi
kmaehashi
HN member- Joined
- Thu, Jan 30, 2020, 2:11 AM UTC
- HN karma
- 21
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About kmaehashi
https://x.com/kmaehashi
Recent public activity
-
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…
-
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…
-
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…
-
comment
Comment #41606938
CuPy isn't semi-abandoned as well, obviously :)
-
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…
-
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…
-
comment
Comment #41603736
cuDF is a CuPy-based library providing drop-in replacement for Pandas: https://rapids.ai/
-
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…
-
comment
Comment #41603482
CuPy tensors (or `ndarray`) provide the same semantics as NumPy. In-place operations are permitted.
-
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
-
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…