Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
camenduru
/
thrust
like
0
Model card
Files
Files and versions
xet
Community
main
thrust
/
dependencies
/
libcudacxx
/
libcxx
/
test
/
support
/
filesystem_include.h
camenduru
thanks to nvidia ❤
8ae5fc5
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
278 Bytes
#
ifndef
TEST_SUPPORT_FILESYSTEM_INCLUDE_H
#
define
TEST_SUPPORT_FILESYSTEM_INCLUDE_H
#
include
<filesystem>
#
include
"test_macros.h"
#
if
defined(_LIBCUDACXX_VERSION) && TEST_STD_VER < 17
namespace fs =
std
::__fs::filesystem;
#
else
namespace fs =
std
::filesystem;
#
endif
#
endif