Sys::信息 - 问题

发布于 2024-11-24 02:12:16 字数 608 浏览 3 评论 0原文

来自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁许谁一生繁华 2024-12-01 02:12:16

我在 Mac OS X 机器上运行它得到相同的输出。您可以联系开发人员< /a>.

I get the same output running this on a Mac OS X box. You might contact the developer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文