Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
TransformerEngine
Commits
d2c0a538
Commit
d2c0a538
authored
Mar 09, 2026
by
wenjh
Browse files
Fix undeclare use_int8 error
Signed-off-by:
wenjh
<
wenjh@sugon.com
>
parent
1b15c746
Pipeline
#3436
failed with stages
in 0 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
transformer_engine/common/gemm/cublaslt_gemm.cu
transformer_engine/common/gemm/cublaslt_gemm.cu
+3
-0
No files found.
transformer_engine/common/gemm/cublaslt_gemm.cu
View file @
d2c0a538
...
@@ -1242,6 +1242,9 @@ void nvte_cublas_atomic_gemm(const NVTETensor A, const NVTETensor B, NVTETensor
...
@@ -1242,6 +1242,9 @@ void nvte_cublas_atomic_gemm(const NVTETensor A, const NVTETensor B, NVTETensor
const
bool
use_int8
=
is_int8_dtype
(
inputA
->
data
.
dtype
)
||
const
bool
use_int8
=
is_int8_dtype
(
inputA
->
data
.
dtype
)
||
is_int8_dtype
(
inputB
->
data
.
dtype
);
is_int8_dtype
(
inputB
->
data
.
dtype
);
const
bool
use_int8
=
is_int8_dtype
(
inputA
->
data
.
dtype
)
||
is_int8_dtype
(
inputB
->
data
.
dtype
);
const
char
*
NVTE_FORCE_ROCM_GEMM
=
std
::
getenv
(
"NVTE_FORCE_ROCM_GEMM"
);
const
char
*
NVTE_FORCE_ROCM_GEMM
=
std
::
getenv
(
"NVTE_FORCE_ROCM_GEMM"
);
const
bool
use_fp8
=
is_fp8_dtype
(
inputA
->
data
.
dtype
)
||
const
bool
use_fp8
=
is_fp8_dtype
(
inputA
->
data
.
dtype
)
||
is_fp8_dtype
(
inputB
->
data
.
dtype
);
is_fp8_dtype
(
inputB
->
data
.
dtype
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment