mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 00:42:11 +01:00
11 lines
174 B
PHP
11 lines
174 B
PHP
<?php
|
|
function main()
|
|
{
|
|
// DEVICE = 'cuda' if torch.cuda.is_available() else 'cpu'
|
|
$torch = PyCore::import("torch");
|
|
var_dump($torch->cuda->is_available());
|
|
|
|
|
|
}
|
|
|