Hello! As you may be aware Burla is still a very new project, and we really don't want anyone to have a bad experience. We REALLY recommend you , or , so we can provice as much help as possible!
This currently assumes you have a google cloud account and are setup with the gcloud CLI
Run pip install Burla
Run burla install
Follow the link to your cluster dashboard and start the cluster
Run the following code, or something similar!
from burla import remote_parallel_map
my_arguments = [1, 2, 3, 4]
def my_function(my_argument: int):
print(f"Running on remote computer #{my_argument} in the cloud!")
return my_argument * 2
results = remote_parallel_map(my_function, my_arguments)
print(f"return values: {list(results)}")
Other Examples:
Questions?
, or email jake@burla.dev. We're always happy to talk.