summaryrefslogtreecommitdiff
path: root/build_default.py
diff options
context:
space:
mode:
authorKshitij Sisodia <kshitij.sisodia@arm.com>2022-05-20 14:30:02 +0100
committerKshitij Sisodia <kshitij.sisodia@arm.com>2022-05-23 16:11:45 +0100
commit9c6f9f8afcb003fd72944918d6b6e200d68c0918 (patch)
treeb1237909970ac74232f4ed81a26edc0847204269 /build_default.py
parent6f6df0934f991b64fef494b86643b3f5074fca0e (diff)
downloadml-embedded-evaluation-kit-9c6f9f8afcb003fd72944918d6b6e200d68c0918.tar.gz
MLECO-3225: Using official support for Arm Cortex-M85 CPU.
* CMake version requirement bumped up to 3.21.0 * CMake 3.22.4 installed in the local Python virtualenv * CPU flags updated in toolchain files. * Using __ARM_FEATURE_DSP instead of potentially defining ARM_MATH_DSP wrongly. * CMake project version bumped up to 22.05.0 Changes also made for MLECO-3107 (pack generation): * TensorFlow Lite Micro CMSIS-pack version updated to 1.22.02. * Change to using __ARM_FEATURE_DSP will also help the generated pack. Partial changes for MLECO-3095: * CMSIS updated to version post 5.9.0 * TensorFlow Lite Micro updated to latest available * Ethos-U driver and core-platform repositories updated to 20.05_rc2 tags. Change-Id: I012c9e65897aed8ce589cff9bfe3a19efc3edeb9 Signed-off-by: Kshitij Sisodia <kshitij.sisodia@arm.com>
Diffstat (limited to 'build_default.py')
-rwxr-xr-xbuild_default.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/build_default.py b/build_default.py
index e37a9ad..3a308a9 100755
--- a/build_default.py
+++ b/build_default.py
@@ -86,7 +86,7 @@ def run(
# 2. Download models if specified
if download_resources is True:
logging.info("Downloading resources.")
- set_up_resources(
+ (download_dir, env_path) = set_up_resources(
run_vela_on_models=run_vela_on_models,
additional_npu_config_names=[npu_config_name],
additional_requirements_file=current_file_dir / "scripts" / "py" / "requirements.txt"
@@ -114,26 +114,25 @@ def run(
logpipe = PipeLogging(logging.INFO)
- os.chdir(build_dir)
cmake_toolchain_file = current_file_dir / "scripts" / "cmake" / "toolchains" / toolchain_file_name
-
+ cmake_path = env_path / "bin" / "cmake"
cmake_command = (
- f"cmake .. -DTARGET_PLATFORM={target_platform}"
+ f"{cmake_path} -B {build_dir} -DTARGET_PLATFORM={target_platform}"
+ f" -DTARGET_SUBSYSTEM={target_subsystem}"
+ f" -DCMAKE_TOOLCHAIN_FILE={cmake_toolchain_file}"
+ f" -DETHOS_U_NPU_ID={ethos_u_cfg.ethos_u_npu_id}"
+ f" -DETHOS_U_NPU_CONFIG_ID={ethos_u_cfg.ethos_u_config_id}"
)
- logging.info(cmake_command)
+ logging.info(f"\n\n\n{cmake_command}\n\n\n")
state = subprocess.run(
cmake_command, shell=True, stdout=logpipe, stderr=subprocess.STDOUT
)
- make_command = f"make -j{make_jobs}"
+ make_command = f"{cmake_path} --build {build_dir} -j{make_jobs}"
if make_verbose:
- make_command += " VERBOSE=1"
- logging.info(make_command)
+ make_command += "--verbose"
+ logging.info(f"\n\n\n{make_command}\n\n\n")
state = subprocess.run(
make_command, shell=True, stdout=logpipe, stderr=subprocess.STDOUT
)