Reduce runtime through multi-device parallelism
Provide your input set, a function to run each element of that input, and distribute it worldwide with 4 lines of code
1 const inputSet = [a, b, c];
2 function workFn(letter) {
3 return letter.toUppercase();
4 }
5 const job = compute.for(inputSet, workFn);
6 let results = await job.exec();