Replies: 1 comment 7 replies
-
Hi, fork+exec should work out-of-the box in Gramine, but it's quite complex and slow, so ideally you'd want to use threads instead. They are also supported out of the box. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi there, I have a problem about parallelize some python computation using Gramine. We have some encrypted algorithm (based on python) inside some SGX enclave, and another party has some encrypted data to be computed by the algo. The problem consists of N similar subproblems and would greatly benefit from parallel computation. However, it seems like anything using fork & exec (multiprocessing, Ray, etc) would be forbidden, and we are looking for an alternative way to complete the task without breaking any data or algo privacy.
I wonder if there exists some good solution to the problem. Many thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions