numat / RASPA2

NO LONGER UPDATED. Use the official repository.
https://github.com/iraspa/RASPA2
Other
73 stars 72 forks source link

Results verification #41

Open mplebanski opened 5 years ago

mplebanski commented 5 years ago

Hello,

I would like to verify computation results programatically, e.g. given the example workflow:

...
# Distribute the jobs on the amazon cloud cores. Wait for the jobs to finish.
import cloud
jids = cloud.map(f, mofs)
uptakes = cloud.result(mofs)
# Verify the results:
for input, output in zip(mofs, uptakes):
    RASPA.verify(input, output)
...

Is there a trivial (computationally non-intensive) way to verify the results against given input?