tpuproxy/pkg/sbf/cu/cu.go

11 lines
200 B
Go
Raw Normal View History

2022-09-04 15:28:39 -07:00
package cu
// This file contains helper routines for the calculation of compute units.
func ConsumeLowerBound(cu int, lower int, x int) int {
if x < lower {
return cu - lower
}
return cu - x
}