일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 코드업
- ros2 foxy docker
- humble development guides
- first-time robot setup guide
- CodeUp
- ros2 configuring environment
- CODEUP 6073
- Python
- Nav2 document
- Foxy tutorial
- foxy nav2
- ros2 튜토리얼 환경설정
- nav2 tutorial
- nav2 first-time robot setup guide
- nav2 getting started
- ros2 환경설정
- nav2 development guides
- error
- humble 환경설정
- nav2 설치
- nav2 튜토리얼
- docker foxy
- development guides
- ROS FOXY 튜토리얼
- nav2 development guides
- nav2 dev contatiner
- ros2 foxy tutorial
- ros2 remapping
- ros2 development guides
- ros2 튜토리얼
Archives
- Today
- Total
BAN2ARU
cuda(async=True)에서 async가 SyntaxError: invalid syntax 오류 본문
반응형
Python 3.7에서부터 생기는 오류로, cuda()에서 async 옵션을 작성하면 syntax 오류가 발생함
async 옵션을 non-blocking으로 수정해주면 됨!
cuda(async=True)
#--> 수정하기
cuda(non_blocking=True)
728x90
'Language > Python' 카테고리의 다른 글
[Python/ Pytorch] torch.nn.BatchNorm2d() (0) | 2022.04.21 |
---|---|
[Python/pytorch] torch.nn.Conv2d() (0) | 2022.04.21 |
CMD에서 'tensorboard'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. 오류 (0) | 2022.04.19 |
[Python] Multiprocessing (0) | 2022.04.10 |
PIL.UnidentifiedImageError: cannot identify image file (0) | 2022.03.02 |
Comments