We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210fa8a commit abdb2faCopy full SHA for abdb2fa
pkg/common/config.go
@@ -338,6 +338,9 @@ func (c *Configuration) validate() error {
338
if c.PrefillTimeStdDev < 0 {
339
return errors.New("prefill time standard deviation cannot be negative")
340
}
341
+ if float32(c.PrefillTimeStdDev) > 0.3*float32(c.PrefillTimePerToken) {
342
+ return errors.New("prefill time standard deviation cannot be more than 30% of prefill time per token")
343
+ }
344
345
if c.KVCacheTransferTimePerToken < 0 {
346
return errors.New("kv-cache tranfer time per token cannot be negative")
0 commit comments