Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Exercise: Put Things Together

Note

Exercise: Create a self contained Conda environment that would allow a user to run a python file that uses PyTorch and Pandas.

The environment should be created within a location that can be shared with other users within a project.

Note

Using the the following pytorch_gpu_test.py script, create a bash script to submit a job to the cluster that allows this to be run, using the created Conda environment, that utilizes a two H100 NVidia GPU devices on a single compute node, 8 cores and 16G of memory.

Expand
titlepytorch_gpu_test.py
Code Block
TBC

Note

Ignoring any cached packages, how much storage space does this Conda environment use?

...

Exercise Extend with Pandas

Note

Exercise: I want to also use the Python Pandas package to assist with some further analysis.

Can I extend my existing Conda environment?

If so how?

...

...