Go - float


  • float 
  • float32, max value: math.MaxFloat32
  • float64, max value: math.MaxFloat64
  • float can be printed by fmt package
    • %e: exponent
    • %f: no exponent
    • %g: most compact 
  • positive & negative infinities (divide by zero): +Inf & -Inf
  • 0/0: NaN
  • math.Sqrt(-1): NaN
  • math.isNaN(value): Check is a variable NaN
  • math.NaN(): Return a NaN
  • NaN == any value return false



沒有留言:

張貼留言

Lessons Learned While Benchmarking vLLM with GPU

Recently, I benchmarked vLLM on a GPU to better understand how much throughput can realistically be expected in an LLM serving setup. One ...