[llvm] [DTLTO][LLVM] Integrated Distributed ThinLTO (DTLTO) (PR #127749)

via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 00:53:01 PDT 2025


================
@@ -0,0 +1,42 @@
+"""
+DTLTO Mock Distributor.
+
+This script acts as a mock distributor for Distributed ThinLTO (DTLTO). It is
+used for testing DTLTO when a Clang binary is not be available to invoke to
+perform the backend compilation jobs.
+
+Usage:
+    python mock.py <input_file1> <input_file2> ... <json_file>
+
+Arguments:
+    - <input_file1>, <input_file2>, ...  : Input files to be copied.
+    - <json_file>                        : JSON file describing the DTLTO jobs.
+
+The script performs the following:
+    1. Reads the JSON file containing job descriptions.
+    2. For each job copies the corresponding input file to the output location
+       specified for that job.
+    3. Validates the JSON format using the `validate` module.
+"""
+
+import sys
+import json
+import shutil
+from pathlib import Path
+import validate
+
+if __name__ == "__main__":
+    json_arg = sys.argv[-1]
+    distributor_args = sys.argv[1:-1]
----------------
bd1976bris wrote:

Thanks. Done now.

https://github.com/llvm/llvm-project/pull/127749


More information about the llvm-commits mailing list