Skip to content

fix build that excludes a bunch of features #4019

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fbgemm_gpu/experimental/gen_ai/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ endif()
# Set the source file for FB only CPP
if(USE_FB_ONLY AND (FBGEMM_BUILD_VARIANT STREQUAL BUILD_VARIANT_CUDA))
file(GLOB fb_only_sources_cpu
fb/src/trt_llm/*.cpp)
fb/src/*/*.cpp)

file(GLOB fb_only_sources_gpu
fb/src/trt_llm/*.cu)
fb/src/*/*.cu)

list(APPEND experimental_gen_ai_cpp_source_files_cpu ${fb_only_sources_cpu})
list(APPEND experimental_gen_ai_cpp_source_files_gpu ${fb_only_sources_gpu})
Expand Down
Loading