allow bench to handle larger numbers (#15162)

# Description

This PR allows `bench` to handle larger numbers by using `into float`
This commit is contained in:
Darren Schroeder 2025-02-25 08:02:42 -06:00 committed by GitHub
parent f51a79181a
commit 9521b209d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ export def main [
mean: ($times | math avg)
min: ($times | math min)
max: ($times | math max)
std: ($times | into int | math stddev | into int | into duration)
std: ($times | into int | into float | math stddev | into int | into duration)
times: ($times)
}