Some precisions.

This commit is contained in:
Nicolas Patry 2023-05-01 15:44:38 +02:00
parent 3bf04aea3f
commit 15756ba1d4
No known key found for this signature in database
GPG Key ID: 6AE76ACC68FFBAF9
2 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,7 @@ body:
attributes: attributes:
label: System Info label: System Info
description: | description: |
Please share your system info with us. Please share your system info with us (`text-generation-launcher --env` if installed locally).
The full command line used that causes issues: The full command line used that causes issues:
OS version: OS version:
Rust version (if self-compiling, `cargo version`): Rust version (if self-compiling, `cargo version`):

View File

@ -40,4 +40,6 @@ pub fn print_env() {
); );
let nvidia_smi = nvidia_smi().unwrap_or("N/A".to_string()); let nvidia_smi = nvidia_smi().unwrap_or("N/A".to_string());
println!("Nvidia-smi:\n {}", nvidia_smi); println!("Nvidia-smi:\n {}", nvidia_smi);
println!("Command line used: <FILL IN>");
println!("OS: <FILL IN>");
} }