MCPcopy Index your code
hub / github.com/numpy/numpy / _is_armhf

Function _is_armhf

numpy/_core/tests/test_function_base.py:32–35  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30
31
32def _is_armhf():
33 # Check if the current platform is ARMHF (32-bit ARM architecture)
34 architecture = platform.architecture()
35 return platform.machine().startswith('arm') and architecture[0] == '32bit'
36
37class PhysicalQuantity(float):
38 def __new__(cls, value):

Callers

nothing calls this directly

Calls 1

startswithMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…