Skip to content

Commit

Permalink
[flang][cuda][NFC] Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
clementval committed Nov 1, 2024
1 parent 3247386 commit 308c007
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flang/unittests/Runtime/CUDA/Memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down

0 comments on commit 308c007

Please sign in to comment.