-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathTensorGetNumThreadsOptimizer.php
65 lines (53 loc) · 1.68 KB
/
TensorGetNumThreadsOptimizer.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
namespace Zephir\Optimizers\FunctionCall;
use Zephir\Call;
use Zephir\CompilationContext;
use Zephir\CompiledExpression;
use Zephir\HeadersManager;
use Zephir\Exception\CompilerException;
use Zephir\Optimizers\OptimizerAbstract;
class TensorGetNumThreadsOptimizer extends OptimizerAbstract
{
/**
* @param mixed[] $expression
* @param Call $call
* @param CompilationContext $context
* @throws CompilerException
* @return CompiledExpression|bool
*/
public function optimize(array $expression, Call $call, CompilationContext $context)
{
$call->processExpectedReturn($context);
$symbolVariable = $call->getSymbolVariable();
if (empty($symbolVariable)) {
throw new CompilerException('Missing symbol variable.');
}
if ($symbolVariable->getType() !== 'variable') {
throw new CompilerException(
'Return value must only be assigned to a dynamic variable.',
$expression
);
}
if ($call->mustInitSymbolVariable()) {
$symbolVariable->initVariant($context);
}
$context->headersManager->add(
'include/settings',
HeadersManager::POSITION_LAST
);
$resolvedParams = $call->getResolvedParams(
[],
$context,
$expression
);
$symbol = $context->backend->getVariableCode($symbolVariable);
$context->codePrinter->output(
"tensor_get_num_threads($symbol);"
);
return new CompiledExpression(
'variable',
$symbolVariable->getRealName(),
$expression
);
}
}