gramineproject / examples

Sample applications configs for Gramine
BSD 3-Clause "New" or "Revised" License
28 stars 22 forks source link

Add distro and torchvision version used to test PyTorch example #55

Closed jkr0103 closed 1 year ago

jkr0103 commented 1 year ago

Commit 2e41bcd broke pytorch example in ubuntu 18.04. Changes in above commit works with torchvision version 0.13.0 or above which is available with python 3.7 and above. But ubuntu 18.04 comes with python3.6.9 where torchvision 0.13.0 cannot be installed.

More info about torchvision versions compatibility with python version https://pypi.org/project/torchvision/

Changes in this PR inform user about the torchvison version and dostro used for testing this example. We don't necessarility have to make it work with ubuntu 18.04 as it's reaching EOF in 1 month.


This change is Reviewable