[bot] Update Python packages (#36184)

* Update Python packages

* not available anymore

* also this

* also this

* maybe?

* version

* try

* Revert "version"

This reverts commit 9ac4401b9c.

* revert

* cffi

* issue

* comment

---------

Co-authored-by: Vehicle Researcher <user@comma.ai>
Co-authored-by: Maxime Desroches <desroches.maxime@gmail.com>
pull/36186/head
commaci-public 3 days ago committed by GitHub
parent c7a37c06d8
commit b6e0d4807a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      panda
  2. 2
      pyproject.toml
  3. 4
      selfdrive/modeld/SConscript
  4. 2
      selfdrive/modeld/dmonitoringmodeld.py
  5. 2
      selfdrive/modeld/modeld.py
  6. 2
      tinygrad_repo
  7. 807
      uv.lock

@ -1 +1 @@
Subproject commit a2064b86f3c9908883033a953503f150cedacbc7
Subproject commit 1289337ceb6205ad985a5469baa950b319329327

@ -119,7 +119,7 @@ dev = [
"tabulate",
"types-requests",
"types-tabulate",
"raylib",
"raylib < 5.5.0.3", # TODO: unpin when they fix https://github.com/electronstudio/raylib-python-cffi/issues/186
]
tools = [

@ -51,8 +51,8 @@ def tg_compile(flags, model_name):
for model_name in ['driving_vision', 'driving_policy', 'dmonitoring_model']:
flags = {
'larch64': 'DEV=QCOM',
'Darwin': 'DEV=CPU IMAGE=0',
}.get(arch, 'DEV=LLVM IMAGE=0')
'Darwin': f'DEV=CPU HOME={os.path.expanduser("~")} IMAGE=0', # tinygrad calls brew which needs a $HOME in the env
}.get(arch, 'DEV=CPU CPU_LLVM=1 IMAGE=0')
tg_compile(flags, model_name)
# Compile BIG model if USB GPU is available

@ -1,7 +1,7 @@
#!/usr/bin/env python3
import os
from openpilot.system.hardware import TICI
os.environ['DEV'] = 'QCOM' if TICI else 'LLVM'
os.environ['DEV'] = 'QCOM' if TICI else 'CPU'
from tinygrad.tensor import Tensor
from tinygrad.dtype import dtypes
import math

@ -1,7 +1,7 @@
#!/usr/bin/env python3
import os
from openpilot.system.hardware import TICI
os.environ['DEV'] = 'QCOM' if TICI else 'LLVM'
os.environ['DEV'] = 'QCOM' if TICI else 'CPU'
USBGPU = "USBGPU" in os.environ
if USBGPU:
os.environ['DEV'] = 'AMD'

@ -1 +1 @@
Subproject commit 965ea59b16679793b8f48368ac24c4a0ef587e71
Subproject commit 73c8dae60d0eaa3a27a252f7967d2dab8378109e

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save