Sys::信息 - 问题
来自 Sys::Info::Device:如果DEVICE_ID的值为available,则返回可用设备的名称。
为什么$info->device('available');
不返回任何设备当至少有 cpu-device 时?
#!/usr/local/bin/perl
use warnings;
use 5.014;
use Sys::Info;
my $info = Sys::Info->new;
my @available = $info->device('available');
say 'Available devices: ', scalar @available;
my $cpu = $info->device( 'CPU' );
say 'Number of cores: ', $cpu->count;
输出:
可用设备:0
核心数量:2
From Sys::Info::Device:If DEVICE_ID has the value of available, then the names of the available devices will be returned.
Why does $info->device('available');
return no devices when there is at least the cpu-device?
#!/usr/local/bin/perl
use warnings;
use 5.014;
use Sys::Info;
my $info = Sys::Info->new;
my @available = $info->device('available');
say 'Available devices: ', scalar @available;
my $cpu = $info->device( 'CPU' );
say 'Number of cores: ', $cpu->count;
Output:
Available devices: 0
Number of cores: 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Mac OS X 机器上运行它得到相同的输出。您可以联系开发人员< /a>.
I get the same output running this on a Mac OS X box. You might contact the developer.