This is my first try to run a code on AWS.
I have a job that executes locally is the following code:
deviceS=Flatten@ParallelTable[dection@deviceS[[i]], {i, 1, Length@deviceS}];
I rewrite it in the following way, hoping to execute it on AWS:
deviceS=RemoteBatchMapSubmit[env,
Flatten@ParallelTable[dection@deviceS[[i]], {i, 1, Length@deviceS}],
RemoteProviderSettings -> <|"VCPUCount" -> 8,
"Memory" -> Quantity[32, "Gibibytes"]|>,
LicensingSettings -> <|Method -> "OnDemand"|>];
No response for a long time. Can you help me see what is wrong?
Besides, my original data (deviceS) is a huge file (I save it as mx file). Should it be better to upload to AWS first?