(symbol: str, hint: str)
| 46 | |
| 47 | |
| 48 | def _warn_deprecated(symbol: str, hint: str) -> None: |
| 49 | warnings.warn( |
| 50 | f"{symbol} is deprecated; {hint}", |
| 51 | DeprecationWarning, |
| 52 | stacklevel=2, |
| 53 | ) |
| 54 | |
| 55 | |
| 56 | # from ggml.h |
no outgoing calls
no test coverage detected
searching dependent graphs…