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
ea5cc27a
Commit
ea5cc27a
authored
Dec 31, 2025
by
wenjh
Browse files
Update version to das1.8
Signed-off-by:
wenjh
<
wenjh@sugon.com
>
parent
c1a1c04e
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
2 deletions
+4
-2
build_tools/te_version.py
build_tools/te_version.py
+1
-1
qa/L0_pytorch_unittest/test.sh
qa/L0_pytorch_unittest/test.sh
+1
-0
tests/cpp/test_common.h
tests/cpp/test_common.h
+0
-1
tests/pytorch/test_multi_tensor.py
tests/pytorch/test_multi_tensor.py
+2
-0
No files found.
build_tools/te_version.py
View file @
ea5cc27a
...
...
@@ -7,7 +7,7 @@ import os
from
pathlib
import
Path
import
subprocess
DAS_VERSION
=
"1.
6
"
DAS_VERSION
=
"1.
8
"
def
abi_value
():
try
:
...
...
qa/L0_pytorch_unittest/test.sh
View file @
ea5cc27a
...
...
@@ -52,6 +52,7 @@ python3 -m pytest --tb=auto --junitxml=$XML_LOG_DIR/pytest_test_kv_cache.xml $TE
python3
-m
pytest
--tb
=
auto
--junitxml
=
$XML_LOG_DIR
/pytest_test_hf_integration.xml
$TE_PATH
/tests/pytorch/test_hf_integration.py
||
test_fail
"test_hf_integration.py"
mkdir
-p
$TE_PATH
/artifacts/tests/pytorch/test_checkpoint
&&
python
$TE_PATH
/tests/pytorch/test_checkpoint.py
--save-checkpoint
all
--checkpoint-dir
$TE_PATH
/artifacts/tests/pytorch/test_checkpoint/
NVTE_TEST_CHECKPOINT_ARTIFACT_PATH
=
$TE_PATH
/artifacts/tests/pytorch/test_checkpoint python3
-m
pytest
--tb
=
auto
--junitxml
=
$XML_LOG_DIR
/pytest_test_checkpoint.xml
$TE_PATH
/tests/pytorch/test_checkpoint.py
||
test_fail
"test_checkpoint.py"
python3
-m
pytest
--tb
=
auto
--junitxml
=
$XML_LOG_DIR
/pytest_test_batched_linear.xml
$TE_PATH
/tests/pytorch/test_batched_linear.py
||
test_fail
"test_batched_linear.py"
python3
-m
pytest
--tb
=
auto
--junitxml
=
$XML_LOG_DIR
/pytest_test_fused_router.xml
$TE_PATH
/tests/pytorch/test_fused_router.py
||
test_fail
"test_fused_router.py"
if
[
"
$RET
"
-ne
0
]
;
then
...
...
tests/cpp/test_common.h
View file @
ea5cc27a
...
...
@@ -17,7 +17,6 @@
#include <cuda_runtime_api.h>
#include <cuda_bf16.h>
#include <cuda_fp8.h>
#include <cuda_fp16.h>
#include <cuda_fp8.h>
#if FP4_TYPE_SUPPORTED
...
...
tests/pytorch/test_multi_tensor.py
View file @
ea5cc27a
...
...
@@ -257,4 +257,6 @@ def test_multi_tensor_compute_scale_and_scale_inv(
scale_ref
,
scale_inv_ref
,
_
=
scale_from_amax_tensor
(
torch
.
float32
,
amax
,
fp8_dtype
,
eps
=
epsilon
,
pow_2_scales
=
pow_2_scales
)
torch
.
testing
.
assert_close
(
scale
,
scale_ref
,
rtol
=
0
,
atol
=
0
)
torch
.
testing
.
assert_close
(
scale_inv
,
scale_inv_ref
,
rtol
=
0
,
atol
=
0
)
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