Line 25... |
Line 25... |
25 |
* fill the private array
|
25 |
* fill the private array
|
26 |
*/
|
26 |
*/
|
27 |
public function __construct()
|
27 |
public function __construct()
|
28 |
{
|
28 |
{
|
29 |
parent::__construct();
|
29 |
parent::__construct();
|
30 |
if (!defined('PSI_EMU_HOSTNAME')) switch (defined('PSI_SENSOR_NVIDIASMI_ACCESS')?strtolower(PSI_SENSOR_NVIDIASMI_ACCESS):'command') {
|
30 |
if (!defined('PSI_EMU_HOSTNAME') || defined('PSI_EMU_PORT')) switch (defined('PSI_SENSOR_NVIDIASMI_ACCESS')?strtolower(PSI_SENSOR_NVIDIASMI_ACCESS):'command') {
|
31 |
case 'command':
|
31 |
case 'command':
|
32 |
if (PSI_OS == 'WINNT') {
|
32 |
if (PSI_OS == 'WINNT') {
|
33 |
$winnt_exe = (defined('PSI_SENSOR_NVIDIASMI_EXE_PATH') && is_string(PSI_SENSOR_NVIDIASMI_EXE_PATH))?strtolower(PSI_SENSOR_NVIDIASMI_EXE_PATH):"c:\\Program Files\\NVIDIA Corporation\\NVSMI\\nvidia-smi.exe";
|
33 |
$winnt_exe = (defined('PSI_SENSOR_NVIDIASMI_EXE_PATH') && is_string(PSI_SENSOR_NVIDIASMI_EXE_PATH))?strtolower(PSI_SENSOR_NVIDIASMI_EXE_PATH):"c:\\Program Files\\NVIDIA Corporation\\NVSMI\\nvidia-smi.exe";
|
34 |
if (($_exe=realpath(trim($winnt_exe))) && preg_match("/^([a-zA-Z]:\\\\[^\\\\]+)/", $_exe, $out)) {
|
34 |
if (($_exe=realpath(trim($winnt_exe))) && preg_match("/^([a-zA-Z]:\\\\[^\\\\]+)/", $_exe, $out)) {
|
35 |
CommonFunctions::executeProgram('cmd', "/c set ProgramFiles=".$out[1]."^&\"".$_exe."\" -q", $lines);
|
35 |
CommonFunctions::executeProgram('cmd', "/c set ProgramFiles=".$out[1]."^&\"".$_exe."\" -q", $lines);
|
Line 41... |
Line 41... |
41 |
}
|
41 |
}
|
42 |
|
42 |
|
43 |
$this->_gpus = preg_split("/^(?=GPU )/m", $lines, -1, PREG_SPLIT_NO_EMPTY);
|
43 |
$this->_gpus = preg_split("/^(?=GPU )/m", $lines, -1, PREG_SPLIT_NO_EMPTY);
|
44 |
break;
|
44 |
break;
|
45 |
case 'data':
|
45 |
case 'data':
|
46 |
if (CommonFunctions::rftsdata('nvidiasmi.tmp', $lines)) {
|
46 |
if (!defined('PSI_EMU_PORT') && CommonFunctions::rftsdata('nvidiasmi.tmp', $lines)) {
|
47 |
$this->_gpus = preg_split("/^(?=GPU )/m", $lines, -1, PREG_SPLIT_NO_EMPTY);
|
47 |
$this->_gpus = preg_split("/^(?=GPU )/m", $lines, -1, PREG_SPLIT_NO_EMPTY);
|
48 |
}
|
48 |
}
|
49 |
break;
|
49 |
break;
|
50 |
default:
|
50 |
default:
|
51 |
$this->error->addConfigError('__construct()', '[sensor_nvidiasmi] ACCESS');
|
51 |
$this->error->addConfigError('__construct()', '[sensor_nvidiasmi] ACCESS');
|