Skip to content

Commit 5d18785

Browse files
q10facebook-github-bot
authored andcommitted
Fix undefined symbol error (#3900)
Summary: X-link: facebookresearch/FBGEMM#994 - Fix undefined symbol error on CUDA 11.8 (`_ZN10fbgemm_gpu28bf16bf16bf16_grouped_stackedEN2at6TensorES1_S1_`) Pull Request resolved: #3900 Reviewed By: sryap Differential Revision: D72176761 Pulled By: q10 fbshipit-source-id: 96f82d5e861764a240f92b21431a3e86d15623fd
1 parent c8c9559 commit 5d18785

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

fbgemm_gpu/docs/src/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@
180180
"collapse_navigation": True,
181181
"display_version": True,
182182
"analytics_id": "UA-117752657-2",
183-
"collapse_navigation": False,
184183
}
185184

186185

fbgemm_gpu/experimental/gen_ai/src/quantize/cutlass_extensions/bf16bf16bf16_grouped.cu

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -623,17 +623,12 @@ at::Tensor bf16bf16bf16_grouped_cat(at::TensorList X, at::TensorList W) {
623623
at::Tensor bf16bf16bf16_grouped_dynamic(
624624
at::Tensor X,
625625
at::Tensor W,
626-
at::Tensor zero_start_index_M,
627-
bool zeroing_output_tensor = true) {
626+
at::Tensor zero_start_index_M) {
628627
throw std::runtime_error(
629628
"CUDA version is older than 12.0"); // requires CUDA>=12
630629
}
631630

632-
at::Tensor bf16bf16bf16_grouped_stacked(
633-
at::Tensor,
634-
at::Tensor,
635-
at::Tensor,
636-
std::optional<at::Tensor>) {
631+
at::Tensor bf16bf16bf16_grouped_stacked(at::Tensor, at::Tensor, at::Tensor) {
637632
throw std::runtime_error(
638633
"CUDA version is older than 12.0"); // requires CUDA>=12
639634
}

0 commit comments

Comments
 (0)