Peter Uhrig

Results 9 comments of Peter Uhrig

It is not that underscores in general cause the problem. The following sentence works fine: `P_P_P_t7P_P_ From Jennifer Convertibles, a Simmons microfiber sofabed, just $299, only at Jennifer.`

RTX 3080 is Ampere architecture (https://arnon.dk/matching-sm-architectures-arch-and-gencode-for-various-nvidia-cards/) and requires CUDA 11.x I'm also looking to find a solution that will work with Ampere cards.

Here is the solution: Use Ubuntu 20.04 with CUDA 11.3.1, e.g. with Nvidia's docker container: docker://nvidia/cuda:11.3.1-devel-ubuntu20.04 Install system tools and dependencies: ``` apt install -y --no-install-recommends \ wget \ nano...

> We develop DCPose using CUDA 10.0 and do not test in the environment of CUDA 11.0. Maybe you can try to run DCPose in the environment of CUDA 10.0....

@chenhaomingbob Compatibility with CUDA 11 and the corresponding Pytorch 1.11 (with CUDA 11 support) only requires minimal changes (use `torch_check` instead of `at_check`). See here: https://github.com/Pose-Group/DCPose/issues/34#issuecomment-1133448799

I have to add here that we SOMETIMES run into this problem: When processing a video with roughly 36,000 frames, only around 33,000 are actually processed. For the others, we...

I cloned your repo: ``` git clone https://github.com/jinfagang/AlphaPose.git ``` And then ran: ``` python3 setup.py build develop --user ``` And I get the same error message: ``` detector/nms/src/nms_kernel.cu:5:10: fatal error:...

And it turns out that this is a real show-stopper for A40 and A100 cards. They require CUDA 11.1 or higher, thus PyTorch 1.11 or higher, which does not contain...

I don't speak C/C++ well enough, but my understanding is that it is possible to replace the functions used with ones that are still supported, as discussed here: https://www.exxactcorp.com/blog/Deep-Learning/pytorch-1-11-0-now-available (scroll...