-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: Lightning-2.2.1-foss-2023a.eb
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
easybuild/easyconfigs/l/Lightning/Lightning-2.2.1-foss-2023a.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
easyblock = 'PythonPackage' | ||
|
||
name = 'Lightning' | ||
version = '2.2.1' | ||
|
||
homepage = 'https://github.com/Lightning-AI/pytorch-lightning' | ||
description = """ | ||
The deep learning framework to pretrain, finetune and deploy AI models. | ||
Lightning has 4 core packages: | ||
PyTorch Lightning: Train and deploy PyTorch at scale. | ||
Lightning Fabric: Expert control. | ||
Lightning Data: Blazing fast, distributed streaming of training data from cloud storage. | ||
Lightning Apps: Build AI products and ML workflows. | ||
""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2023a'} | ||
|
||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['b3e46d596b32cafd1fb9b21fdba1b1767df97b1af5cc702693d1c51df60b19aa'] | ||
|
||
dependencies = [ | ||
('Python', '3.11.3'), | ||
('PyTorch', '2.1.2'), | ||
('PyTorch-Lightning', version), | ||
] | ||
|
||
download_dep_fail = True | ||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
moduleclass = 'tools' |