aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/utils/filesystem.py
diff options
context:
space:
mode:
authorBenedetta Delfino <benni.delfino@arm.com>2024-02-28 17:38:42 +0000
committerBenedetta Delfino <benedetta.delfino@arm.com>2024-03-11 17:31:30 +0000
commit2ba39623502551ec073fbc67b59e0458af084c7e (patch)
tree7fd8093fef683d846664d0e139eb5edb6853d8cc /src/mlia/utils/filesystem.py
parent2e9dc4cf750a7ae18f87abd174aa7b5be40a7d37 (diff)
downloadmlia-2ba39623502551ec073fbc67b59e0458af084c7e.tar.gz
feat: Add support for Arm Corstone-300 and Corstone-310 on AArch64
- Add support for Corstone-300 download on AArch64 - Add support for Corstone-310 download on AArch64 - Add support for Corstone-310 download on x86 - Add e2e tests and unit tests - Edited README.md to reflect updates Resolves: MLIA-1017 Signed-off-by: Benedetta Delfino <benedetta.delfino@arm.com> Change-Id: I8d54a721f91d67123f65c076313cef12b7df92bd
Diffstat (limited to 'src/mlia/utils/filesystem.py')
-rw-r--r--src/mlia/utils/filesystem.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mlia/utils/filesystem.py b/src/mlia/utils/filesystem.py
index f8e8962..e3ef7db 100644
--- a/src/mlia/utils/filesystem.py
+++ b/src/mlia/utils/filesystem.py
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates.
+# SPDX-FileCopyrightText: Copyright 2022-2024, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""Utils related to file management."""
from __future__ import annotations
@@ -77,7 +77,7 @@ def sha256(filepath: Path) -> str:
def all_files_exist(paths: Iterable[Path]) -> bool:
- """Check if all files are exist."""
+ """Check if all files exist."""
return all(item.is_file() for item in paths)