Skip to content

Commit fc77c64

Browse files
committed
decrement tps limit to 15
1 parent e43dac6 commit fc77c64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use std::{env, time::Duration};
1515
const CHECK_TIMEOUT_DURATION: Duration = Duration::from_secs(80);
1616

1717
/// Minimum tokens per second (TPS) for checking model performance during a generation.
18-
const CHECK_TPS: f64 = 20.0;
18+
const CHECK_TPS: f64 = 15.0;
1919

2020
#[derive(Debug, Clone)]
2121
pub struct DriaComputeNodeConfig {

0 commit comments

Comments
 (0)