We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9cdef3 commit bed9a1dCopy full SHA for bed9a1d
.github/workflows/tests.yml
@@ -27,5 +27,5 @@ jobs:
27
configuration: tests/phpunit.xml
28
version: 10.5
29
php_version: ${{ matrix.php }}
30
- args: --filter ReleaseTest
+ filter: ReleaseTest
31
src/CLBlastFactory.php
@@ -67,7 +67,12 @@ protected function loadPlatformLib() : void
67
$filename = __DIR__ . "/../platforms/ubuntu/lib/librindowclblast.so";
68
//self::$ffipf = FFI::load($headerFile);
69
$code = file_get_contents($headerFile);
70
- $ffi = FFI::cdef($code,$filename);
+ $ffi = null;
71
+ try {
72
+ $ffi = FFI::cdef($code,$filename);
73
+ } catch(FFIException $e) {
74
75
+ }
76
self::$ffipf = $ffi;
77
}
78
0 commit comments