Files
clang-p2996/flang/lib/Optimizer/Transforms/CUFOpConversion.cpp
Valentin Clement (バレンタイン クレメン) 4d7df40c08 [flang][cuda] Materialize constant src in memory (#116851)
When the src of the data transfer is a constant, it needs to be
materialized in memory to be able to perform a data transfer.

```
subroutine sub1()
  real, device :: a(10)
  integer :: I

  do i = 5, 10
    a(i) = -4.0
  end do
end
```
2024-11-19 14:11:20 -08:00

32 KiB