From ba120220158dcb0c0fcaa1b8ce4cd74fa482017b Mon Sep 17 00:00:00 2001 From: Matt Headley Date: Thu, 6 Jun 2024 16:34:04 -0400 Subject: [PATCH] Run correct file in sum example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 270dd7fd..76a12822 100644 --- a/README.md +++ b/README.md @@ -172,12 +172,12 @@ bend run parallel_sum.bend -s Or you can run it using C interpreter (Parallel) ```sh -bend run-c sequential_sum.bend -s +bend run-c parallel_sum.bend -s ``` If you have a NVIDIA GPU, you can also run in CUDA (Massively parallel) ```sh -bend run-cu sequential_sum.bend -s +bend run-cu parallel_sum.bend -s ``` In Bend, it can be parallelized by just changing the run command. If your code **can** run in parallel it **will** run in parallel.