cloudhan

Results 188 comments of cloudhan
trafficstars

Windows bites! thoes ``` blahblah ir.DenseIntElementsAttr.get(np.arange(num_bd, -1, -1), ``` is simply caused by np.arange(num_bd, -1, -1) default to int32 on windows... If you add `, dtype=np.int64` to all thoes np...

@hawkinsp currently suffer from ``` external/org_tensorflow/tensorflow/core/tpu/tpu_initializer_helper.cc(18): fatal error C1083: Cannot open include file: 'dirent.h': No such file or directory ``` during building of jaxlib. If I use `pip install -e...

No, there is no plan to add support for older version of cudnn. Since it will double the storage requirement. If you want the support, build yourself locally is the...

+1 for CMake It's pain in the ass when you want to integrate a makefile project with a CMake one. With cmake, you can use [vcpkg](https://github.com/Microsoft/vcpkg) to handle your dependencies...

What about websocket?I'm not a network guy so I am not very sure if I understand it correctly. V2Ray supports it. Perfectly example of **actually using a widely used protocol**....

You should add a `.clangd` file ```yaml CompileFlags: Add: - -std=c++11 - --cuda-path=/usr/local/cuda - --cuda-gpu-arch=sm_61 - -L/usr/local/cuda/lib64 - -I/usr/local/cuda/include ``` clangd seems to not working on windows though...

Also, clangd 11.0+ is needed.