MCPcopy Create free account
hub / github.com/ROCm/rocm-systems / run

Method run

projects/rocshmem/python/setup.py:23–29  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

21
22class CMakeBuild(build_ext):
23 def run(self):
24 try:
25 subprocess.check_output(["cmake", "--version"])
26 except OSError:
27 raise RuntimeError("CMake must be installed to build the extension")
28 for ext in self.extensions:
29 self.build_extension(ext)
30
31 def build_extension(self, ext):
32 extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))

Callers 15

run_clinfoFunction · 0.45
test_sanity.pyFile · 0.45
test_rccl_unittestsMethod · 0.45
test_aqlprofile.pyFile · 0.45
cmake_configFunction · 0.45
cmake_buildFunction · 0.45
execute_testsFunction · 0.45
test_amdsmi.pyFile · 0.45
test_rocrtst.pyFile · 0.45
execute_testsFunction · 0.45
execute_testsFunction · 0.45

Calls 2

build_extensionMethod · 0.95
RuntimeErrorClass · 0.85