bpserlet
bpserlet
### Bug description Let's take the population count (ctpop). The documentation describes the batch function that takes an simd_width. You can use that with the .to_int() to compute a population...
### Bug description Take math.inf. It's defined as: ``` inf[type: DType]() -> SIMD[type, 1] ``` why not just: ``` inf[type: DType]() -> type ``` ? ### Steps to reproduce *...
### Bug description The following code works: ``` fn is_zero(a: Int, /) -> Bool: return a == 0 fn calls_callback1(x: Int, callback: fn(Int) -> Bool) -> Bool: return callback(x) var...