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
cd798c97
Unverified
Commit
cd798c97
authored
Jan 02, 2024
by
Przemyslaw Tredak
Committed by
GitHub
Jan 02, 2024
Browse files
Change the copyright to include 2024 (#583)
Signed-off-by:
Przemek Tredak
<
ptredak@nvidia.com
>
parent
fad3044b
Changes
267
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
tests/jax/test_sanity_import.py
tests/jax/test_sanity_import.py
+1
-1
tests/jax/test_sharding.py
tests/jax/test_sharding.py
+1
-1
tests/jax/utils.py
tests/jax/utils.py
+1
-1
tests/paddle/dist_launcher.py
tests/paddle/dist_launcher.py
+1
-1
tests/paddle/parallel_tests/amax_reduction.py
tests/paddle/parallel_tests/amax_reduction.py
+1
-1
tests/paddle/parallel_tests/group_sharding.py
tests/paddle/parallel_tests/group_sharding.py
+1
-1
tests/paddle/parallel_tests/layernorm_linear_tp.py
tests/paddle/parallel_tests/layernorm_linear_tp.py
+1
-1
tests/paddle/parallel_tests/layernorm_mlp_tp.py
tests/paddle/parallel_tests/layernorm_mlp_tp.py
+1
-1
tests/paddle/parallel_tests/linear_pp.py
tests/paddle/parallel_tests/linear_pp.py
+1
-1
tests/paddle/parallel_tests/linear_tp.py
tests/paddle/parallel_tests/linear_tp.py
+1
-1
tests/paddle/parallel_tests/transformer_tp.py
tests/paddle/parallel_tests/transformer_tp.py
+1
-1
tests/paddle/recompute_tests/recompute_transformer_encoder.py
...s/paddle/recompute_tests/recompute_transformer_encoder.py
+1
-1
tests/paddle/test_install.py
tests/paddle/test_install.py
+1
-1
tests/paddle/test_layers.py
tests/paddle/test_layers.py
+1
-1
tests/paddle/test_operators.py
tests/paddle/test_operators.py
+1
-1
tests/paddle/test_parallel.py
tests/paddle/test_parallel.py
+1
-1
tests/paddle/test_recompute.py
tests/paddle/test_recompute.py
+1
-1
tests/paddle/utils.py
tests/paddle/utils.py
+1
-1
tests/pytorch/distributed/print_logs.py
tests/pytorch/distributed/print_logs.py
+1
-1
tests/pytorch/distributed/run_megatron_lm_gpt.sh
tests/pytorch/distributed/run_megatron_lm_gpt.sh
+1
-1
No files found.
tests/jax/test_sanity_import.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
...
...
tests/jax/test_sharding.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
...
...
tests/jax/utils.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
...
...
tests/paddle/dist_launcher.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Helper functions to launch distributed tests"""
"""Helper functions to launch distributed tests"""
...
...
tests/paddle/parallel_tests/amax_reduction.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Unittest for Linear layer in tensor parallel"""
"""Unittest for Linear layer in tensor parallel"""
...
...
tests/paddle/parallel_tests/group_sharding.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Unittest for group sharding"""
"""Unittest for group sharding"""
...
...
tests/paddle/parallel_tests/layernorm_linear_tp.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Unittest for LayerNormLinear layer in tensor parallel"""
"""Unittest for LayerNormLinear layer in tensor parallel"""
...
...
tests/paddle/parallel_tests/layernorm_mlp_tp.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Unittest for LayerNormMLP layer in tensor parallel"""
"""Unittest for LayerNormMLP layer in tensor parallel"""
...
...
tests/paddle/parallel_tests/linear_pp.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Unittest for Linear layer in pipeline parallel"""
"""Unittest for Linear layer in pipeline parallel"""
...
...
tests/paddle/parallel_tests/linear_tp.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Unittest for Linear layer in tensor parallel"""
"""Unittest for Linear layer in tensor parallel"""
...
...
tests/paddle/parallel_tests/transformer_tp.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Unittest for Transformer layer in tensor parallel"""
"""Unittest for Transformer layer in tensor parallel"""
...
...
tests/paddle/recompute_tests/recompute_transformer_encoder.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Test TransformerLayer encoder recompute"""
"""Test TransformerLayer encoder recompute"""
...
...
tests/paddle/test_install.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Test basic installation of Paddle extensions"""
"""Test basic installation of Paddle extensions"""
...
...
tests/paddle/test_layers.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Test TE Paddle Layer-level APIs"""
"""Test TE Paddle Layer-level APIs"""
...
...
tests/paddle/test_operators.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Test TE operators"""
"""Test TE operators"""
...
...
tests/paddle/test_parallel.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Test TE Paddle Parallel"""
"""Test TE Paddle Parallel"""
...
...
tests/paddle/test_recompute.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Test TE Paddle Recompute"""
"""Test TE Paddle Recompute"""
...
...
tests/paddle/utils.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
"""Utils for testing"""
"""Utils for testing"""
...
...
tests/pytorch/distributed/print_logs.py
View file @
cd798c97
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
...
...
tests/pytorch/distributed/run_megatron_lm_gpt.sh
View file @
cd798c97
#!/bin/bash
#!/bin/bash
# Copyright (c) 2022-202
3
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (c) 2022-202
4
, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
#
# See LICENSE for license information.
# See LICENSE for license information.
...
...
Prev
1
2
3
4
5
6
7
8
9
…
14
Next
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