1fn f(a : i32, b : i32, c : i32) -> i32 { 2 return ((a * b) + c); 3} 4 5[[stage(compute), workgroup_size(1)]] 6fn main() { 7 _ = f(1, 2, 3); 8} 9