├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── check_if_user_expired.sh ├── create_admin_user.sh ├── create_faculty_admin_sudo_group.sh ├── create_users.sh ├── create_users_no_sync.sh ├── delete_users.sh └── demo_files ├── test.job ├── tf1_load_test.py ├── tf1_test.py ├── tf2_load_test.py └── tf2_test.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.hdf5 2 | Class_List_MSDS684_FW1_2019.csv 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/README.md -------------------------------------------------------------------------------- /check_if_user_expired.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/check_if_user_expired.sh -------------------------------------------------------------------------------- /create_admin_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/create_admin_user.sh -------------------------------------------------------------------------------- /create_faculty_admin_sudo_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/create_faculty_admin_sudo_group.sh -------------------------------------------------------------------------------- /create_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/create_users.sh -------------------------------------------------------------------------------- /create_users_no_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/create_users_no_sync.sh -------------------------------------------------------------------------------- /delete_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/delete_users.sh -------------------------------------------------------------------------------- /demo_files/test.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/demo_files/test.job -------------------------------------------------------------------------------- /demo_files/tf1_load_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/demo_files/tf1_load_test.py -------------------------------------------------------------------------------- /demo_files/tf1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/demo_files/tf1_test.py -------------------------------------------------------------------------------- /demo_files/tf2_load_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/demo_files/tf2_load_test.py -------------------------------------------------------------------------------- /demo_files/tf2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateGeorge/slurm_gpu_ubuntu/HEAD/demo_files/tf2_test.py --------------------------------------------------------------------------------