New Parallel Compute Framework

Hi
If you are lookinh for easy, hardware based CPU/GPU compute framework for HPC, devops, data science etc please check out my new package Entangle.

What makes Entangle special?

  • Small & Simple
  • Easy to Understand
  • API-less
  • Plain Old Python
  • True Parallelism
  • Pluggable & Flexible
  • Composition Based
  • Shared-Nothing
  • Serverless & Threadless
  • True Dataflow Support
  • CPU/GPU Scheduling

With Entangle you can run simple, hardware parallelized code with conditional logic that looks like this.

result = add(
add(
num(6),
two() if False else one()
),
subtract(
five(),
two()
)
)
print(result())

1 Like

Hi Darren,

interesting! Thanks for sharing!

Cheers, Dominik