True if remote Adreno OpenCL testing is configured (RPC_TARGET set).
()
| 434 | |
| 435 | @functools.cache |
| 436 | def has_adreno_opencl() -> bool: |
| 437 | """True if remote Adreno OpenCL testing is configured (RPC_TARGET set).""" |
| 438 | return _build_flag_enabled("USE_OPENCL") and os.environ.get("RPC_TARGET") is not None |
| 439 | |
| 440 | |
| 441 | @functools.cache |
nothing calls this directly
no test coverage detected
searching dependent graphs…