Hi, I'm able to run a certain model on an instance...
# ask-the-community
k
Hi, I'm able to run a certain model on an instance with 32 GiB RAM, but the same model when run with flyte is throwing OOM Error on the same instance type and for the same input parameters. Any thoughts on why this might be happening ?
s
Have you allocated resources to the task? If so, how much?
k
Yes, I have allocated the maximum allocatable resource. In this case 27Gi. This is how I've mentioned it for tasks:
@task(cache_version="1.0", cache=True, requests = Resources(cpu = "10" , mem = "27Gi"), limits=Resources(cpu = "10" , mem = "27Gi"))
s
Can you try setting
ephemeral_storage
to say,
1Gi
? I’m not sure if this will solve the problem, but no harm in giving it a try.
You can also try giving
storage
.
k
Ok, will check
154 Views