-
Notifications
You must be signed in to change notification settings - Fork 1
/
preload.php
31 lines (30 loc) · 1.2 KB
/
preload.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
FFI::load(__DIR__ . '/src/core/blas.h');
FFI::load(__DIR__ . '/src/core/lapack.h');
if (!opcache_is_script_cached(__DIR__ . '/src/core/nd.php')) {
opcache_compile_file(__DIR__ . '/src/core/nd.php');
}
if (!opcache_is_script_cached(__DIR__ . '/src/core/blas.php')) {
opcache_compile_file(__DIR__ . '/src/core/blas.php');
}
if (!opcache_is_script_cached(__DIR__ . '/src/core/lapack.php')) {
opcache_compile_file(__DIR__ . '/src/core/lapack.php');
}
if (!opcache_is_script_cached(__DIR__ . '/src/ops.php')) {
opcache_compile_file(__DIR__ . '/src/ops.php');
}
if (!opcache_is_script_cached(__DIR__ . '/src/linAlgb/linAlg.php')) {
opcache_compile_file(__DIR__ . '/src/linAlgb/linAlg.php');
}
if (!opcache_is_script_cached(__DIR__ . '/src/matrix.php')) {
opcache_compile_file(__DIR__ . '/src/matrix.php');
}
if (!opcache_is_script_cached(__DIR__ . '/src/vector.php')) {
opcache_compile_file(__DIR__ . '/src/vector.php');
}
if (!opcache_is_script_cached(__DIR__ . '/src/linAlgb/reductions/rref.php')) {
opcache_compile_file(__DIR__ . '/src/linAlgb/reductions/rref.php');
}
if (!opcache_is_script_cached(__DIR__ . '/src/convolve.php')) {
opcache_compile_file(__DIR__ . '/src/convolve.php');
}