[llvm] [Offload][NFC] Rename `src/` -> `libomptarget/` (PR #126573)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 10 10:56:30 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-offload
Author: Joseph Huber (jhuber6)
<details>
<summary>Changes</summary>
Summary:
The name `src` is confusing when combined with the plugins and the newly
added `liboffload`.
---
Full diff: https://github.com/llvm/llvm-project/pull/126573.diff
16 Files Affected:
- (modified) offload/CMakeLists.txt (+1-1)
- (renamed) offload/libomptarget/CMakeLists.txt ()
- (renamed) offload/libomptarget/DeviceImage.cpp ()
- (renamed) offload/libomptarget/KernelLanguage/API.cpp ()
- (renamed) offload/libomptarget/LegacyAPI.cpp ()
- (renamed) offload/libomptarget/OffloadRTL.cpp ()
- (renamed) offload/libomptarget/OpenMP/API.cpp ()
- (renamed) offload/libomptarget/OpenMP/InteropAPI.cpp ()
- (renamed) offload/libomptarget/OpenMP/Mapping.cpp ()
- (renamed) offload/libomptarget/OpenMP/OMPT/Callback.cpp ()
- (renamed) offload/libomptarget/PluginManager.cpp ()
- (renamed) offload/libomptarget/device.cpp ()
- (renamed) offload/libomptarget/exports ()
- (renamed) offload/libomptarget/interface.cpp ()
- (renamed) offload/libomptarget/omptarget.cpp ()
- (renamed) offload/libomptarget/private.h ()
``````````diff
diff --git a/offload/CMakeLists.txt b/offload/CMakeLists.txt
index f6e894d39968590..25c879710645c7a 100644
--- a/offload/CMakeLists.txt
+++ b/offload/CMakeLists.txt
@@ -377,7 +377,7 @@ add_subdirectory(DeviceRTL)
add_subdirectory(tools)
# Build target agnostic offloading library.
-add_subdirectory(src)
+add_subdirectory(libomptarget)
add_subdirectory(tools/offload-tblgen)
add_subdirectory(liboffload)
diff --git a/offload/src/CMakeLists.txt b/offload/libomptarget/CMakeLists.txt
similarity index 100%
rename from offload/src/CMakeLists.txt
rename to offload/libomptarget/CMakeLists.txt
diff --git a/offload/src/DeviceImage.cpp b/offload/libomptarget/DeviceImage.cpp
similarity index 100%
rename from offload/src/DeviceImage.cpp
rename to offload/libomptarget/DeviceImage.cpp
diff --git a/offload/src/KernelLanguage/API.cpp b/offload/libomptarget/KernelLanguage/API.cpp
similarity index 100%
rename from offload/src/KernelLanguage/API.cpp
rename to offload/libomptarget/KernelLanguage/API.cpp
diff --git a/offload/src/LegacyAPI.cpp b/offload/libomptarget/LegacyAPI.cpp
similarity index 100%
rename from offload/src/LegacyAPI.cpp
rename to offload/libomptarget/LegacyAPI.cpp
diff --git a/offload/src/OffloadRTL.cpp b/offload/libomptarget/OffloadRTL.cpp
similarity index 100%
rename from offload/src/OffloadRTL.cpp
rename to offload/libomptarget/OffloadRTL.cpp
diff --git a/offload/src/OpenMP/API.cpp b/offload/libomptarget/OpenMP/API.cpp
similarity index 100%
rename from offload/src/OpenMP/API.cpp
rename to offload/libomptarget/OpenMP/API.cpp
diff --git a/offload/src/OpenMP/InteropAPI.cpp b/offload/libomptarget/OpenMP/InteropAPI.cpp
similarity index 100%
rename from offload/src/OpenMP/InteropAPI.cpp
rename to offload/libomptarget/OpenMP/InteropAPI.cpp
diff --git a/offload/src/OpenMP/Mapping.cpp b/offload/libomptarget/OpenMP/Mapping.cpp
similarity index 100%
rename from offload/src/OpenMP/Mapping.cpp
rename to offload/libomptarget/OpenMP/Mapping.cpp
diff --git a/offload/src/OpenMP/OMPT/Callback.cpp b/offload/libomptarget/OpenMP/OMPT/Callback.cpp
similarity index 100%
rename from offload/src/OpenMP/OMPT/Callback.cpp
rename to offload/libomptarget/OpenMP/OMPT/Callback.cpp
diff --git a/offload/src/PluginManager.cpp b/offload/libomptarget/PluginManager.cpp
similarity index 100%
rename from offload/src/PluginManager.cpp
rename to offload/libomptarget/PluginManager.cpp
diff --git a/offload/src/device.cpp b/offload/libomptarget/device.cpp
similarity index 100%
rename from offload/src/device.cpp
rename to offload/libomptarget/device.cpp
diff --git a/offload/src/exports b/offload/libomptarget/exports
similarity index 100%
rename from offload/src/exports
rename to offload/libomptarget/exports
diff --git a/offload/src/interface.cpp b/offload/libomptarget/interface.cpp
similarity index 100%
rename from offload/src/interface.cpp
rename to offload/libomptarget/interface.cpp
diff --git a/offload/src/omptarget.cpp b/offload/libomptarget/omptarget.cpp
similarity index 100%
rename from offload/src/omptarget.cpp
rename to offload/libomptarget/omptarget.cpp
diff --git a/offload/src/private.h b/offload/libomptarget/private.h
similarity index 100%
rename from offload/src/private.h
rename to offload/libomptarget/private.h
``````````
</details>
https://github.com/llvm/llvm-project/pull/126573
More information about the llvm-commits
mailing list