-
I want to know how can I use rg to search all files and subfolders' files within a directory where we have an underline in the item I am searching? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
(base) mona@mona: neural_renderer/cuda/create_texture_image_cuda.cpp neural_renderer/cuda/rasterize_cuda.cpp I realized it was case sensitive. I am all set. |
Beta Was this translation helpful? Give feedback.
(base) mona@mona:
/research/phosa/external/multiperson/neural_renderer$ rg at_check/research/phosa/external/multiperson/neural_renderer$ rg AT_CHECK(base) mona@mona:
neural_renderer/cuda/load_textures_cuda.cpp
15:#define CHECK_CUDA(x) AT_CHECK(x.type().is_cuda(), #x " must be a CUDA tensor")
16:#define CHECK_CONTIGUOUS(x) AT_CHECK(x.is_contiguous(), #x " must be contiguous")
neural_renderer/cuda/create_texture_image_cuda.cpp
13:#define CHECK_CUDA(x) AT_CHECK(x.type().is_cuda(), #x " must be a CUDA tensor")
14:#define CHECK_CONTIGUOUS(x) AT_CHECK(x.is_contiguous(), #x " must be contiguous")
neural_renderer/cuda/rasterize_cuda.cpp
69:#define CHECK_CUDA(x) AT_CHECK(x.type().is_cuda(), #x " m…