From 465ad983a824dc17dd57e7157ff5b9d868f79137 Mon Sep 17 00:00:00 2001 From: Boris Fomitchev Date: Wed, 24 May 2023 14:51:45 -0700 Subject: [PATCH] Relaxing glob pattern for CUDA12 Signed-off-by: Boris Fomitchev --- third_party/cuda/BUILD | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/third_party/cuda/BUILD b/third_party/cuda/BUILD index 8d61f25397..6f8b017777 100644 --- a/third_party/cuda/BUILD +++ b/third_party/cuda/BUILD @@ -20,9 +20,7 @@ cc_library( ], }), hdrs = glob([ - "include/**/*.h", - "include/**/*.hpp", - "include/**/*.inl", + "include/**/*", ]), includes = ["include/"], ) @@ -50,9 +48,7 @@ cc_library( ]), }), hdrs = glob([ - "include/**/*.h", - "include/**/*.hpp", - "include/**/*.inl", + "include/**/*", ]), includes = ["include/"], linkopts = ["-Wl,-rpath,lib/"], @@ -69,9 +65,7 @@ cc_library( ]), }), hdrs = glob([ - "include/**/*cublas*.h", - "include/**/*.hpp", - "include/**/*.inl", + "include/**/*", ]), includes = ["include/"], linkopts = ["-Wl,-rpath,lib/"],