package_info.py 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. # coding=utf-8
  2. # Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. MAJOR = 1
  16. MINOR = 1.5
  17. # Use the following formatting: (major, minor)
  18. VERSION = (MAJOR, MINOR)
  19. __version__ = '.'.join(map(str, VERSION))
  20. __package_name__ = 'megatron-lm'
  21. __contact_names__ = 'NVIDIA INC'
  22. __url__ = 'https://github.com/NVIDIA/Megatron-LM'
  23. __download_url__ = 'https://github.com/NVIDIA/Megatron-LM/releases'
  24. __description__ = 'Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Parallelism.'
  25. __license__ = 'See https://github.com/NVIDIA/Megatron-LM/blob/master/LICENSE'
  26. __keywords__ = 'deep learning, Megatron, gpu, NLP, nvidia, pytorch, torch, language'