[flang-commits] [flang] 308c007 - [flang][cuda][NFC] Fix format
Valentin Clement via flang-commits
flang-commits at lists.llvm.org
Fri Nov 1 12:42:19 PDT 2024
Author: Valentin Clement
Date: 2024-11-01T12:42:06-07:00
New Revision: 308c00749ddb76b2e77934e986001b7fd4ad5cdc
URL: https://github.com/llvm/llvm-project/commit/308c00749ddb76b2e77934e986001b7fd4ad5cdc
DIFF: https://github.com/llvm/llvm-project/commit/308c00749ddb76b2e77934e986001b7fd4ad5cdc.diff
LOG: [flang][cuda][NFC] Fix format
Added:
Modified:
flang/unittests/Runtime/CUDA/Memory.cpp
Removed:
################################################################################
diff --git a/flang/unittests/Runtime/CUDA/Memory.cpp b/flang/unittests/Runtime/CUDA/Memory.cpp
index 3492b72aac0919..7c8b7aa5a4d78b 100644
--- a/flang/unittests/Runtime/CUDA/Memory.cpp
+++ b/flang/unittests/Runtime/CUDA/Memory.cpp
@@ -57,7 +57,8 @@ TEST(MemoryCUFTest, CUFDataTransferDescDesc) {
// Create temp array to transfer to device.
auto x{MakeArray<TypeCategory::Integer, 4>(std::vector<int>{10},
std::vector<int32_t>{0, 1, 2, 3, 4, 5, 6, 7, 8, 9})};
- RTNAME(CUFDataTransferDescDesc)(dev.get(), x.get(), kHostToDevice, __FILE__, __LINE__);
+ RTNAME(CUFDataTransferDescDesc)
+ (dev.get(), x.get(), kHostToDevice, __FILE__, __LINE__);
// Retrieve data from device.
auto host{MakeArray<TypeCategory::Integer, 4>(std::vector<int>{10},
More information about the flang-commits
mailing list