How to resolve the algorithm Filter step by step in the Futhark programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Filter step by step in the Futhark programming language

Table of Contents

Problem Statement

Select certain elements from an Array into a new Array in a generic way.

To demonstrate, select all even numbers from an Array. As an option, give a second solution which filters destructively, by modifying the original Array rather than creating a new Array.

Let's start with the solution: