Files
wgpu/examples/hello-compute
Paul Kernfeld 1172a186b1 Add Buffer.slice fn for #199
This fn is used for set_index_buffer, set_vertex_buffer, and
BindingResource
2020-05-10 17:37:19 -04:00
..
2020-05-10 17:37:19 -04:00
2020-04-26 18:59:48 -02:30

hello-compute

Runs a compute shader to determine the number of iterations of the rules from Collatz Conjecture

  • If n is even, n = n/2
  • If n is odd, n = 3n+1

that it will take to finish and reach the number 1.

To Run

# Pass in any 4 numbers as arguments
RUST_LOG=hello_compute cargo run --example hello-compute 1 4 3 295

Example Output

[2020-04-25T11:15:33Z INFO  hello_compute] Times: [0, 2, 7, 55]