Without specifying Graphene metadata size this pytorch sample application
was not able to run because of "Out-of-memory in PAL" error.
Specifying "loader.pal_internal_mem_size" in manifest fix that issue.
Changes to be committed:
modified: Examples/pytorch/pytorch.manifest.template
Description of the changes
Added loader.pal_internal_mem_size = "128M" to pytorch manifest.template
Signed-off-by: Przystawski sebastian.przystawski@intel.com
Without specifying Graphene metadata size this pytorch sample application was not able to run because of "Out-of-memory in PAL" error. Specifying "loader.pal_internal_mem_size" in manifest fix that issue.
Changes to be committed: modified: Examples/pytorch/pytorch.manifest.template
Description of the changes
Added loader.pal_internal_mem_size = "128M" to pytorch manifest.template
How to test this PR?
Buld and run pytorch example according to the instructions in https://github.com/sprzysta/graphene/blob/master/Examples/pytorch/README.md. Example application should run without error
This change is