You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mistralrs-core/src/lib.rs
-52Lines changed: 0 additions & 52 deletions
Original file line number
Diff line number
Diff line change
@@ -187,7 +187,6 @@ pub struct MistralRsBuilder {
187
187
no_prefix_cache:Option<bool>,
188
188
prefix_cache_n:Option<usize>,
189
189
disable_eos_stop:Option<bool>,
190
-
gemm_full_precision_f16:Option<bool>,
191
190
throughput_logging_enabled:Option<()>,
192
191
}
193
192
@@ -202,7 +201,6 @@ impl MistralRsBuilder {
202
201
no_prefix_cache:None,
203
202
prefix_cache_n:None,
204
203
disable_eos_stop:None,
205
-
gemm_full_precision_f16:None,
206
204
throughput_logging_enabled:None,
207
205
}
208
206
}
@@ -234,11 +232,6 @@ impl MistralRsBuilder {
234
232
self.disable_eos_stop = Some(disable_eos_stop);
235
233
self
236
234
}
237
-
/// This setting is only applicable on CUDA. If set to false or not specified, this setting enables f16/bf16 reduced precision matmul for GPUs which support it. If set to true, this setting has no effect.
0 commit comments