Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump LLVM #941

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build_tools/llvm_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ca7dc895cea44c80263c969302fa2f202751aa9c
1846523bb77275de954ac573110171bd39bfa930
6 changes: 3 additions & 3 deletions test/GPU/gpu-data-transfer.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -358,15 +358,15 @@ module attributes {gpu.container_module} {

%0 = memref.alloc() : memref<32x32xf32>
%cast = memref.cast %0 : memref<32x32xf32> to memref<?x?xf32>
%subview = memref.subview %cast[0, 0] [8, 8] [1, 1] : memref<?x?xf32> to memref<8x8xf32, strided<[?, 1], offset: ?>>
%subview = memref.subview %cast[0, 0] [8, 8] [1, 1] : memref<?x?xf32> to memref<8x8xf32, strided<[?, 1]>>
gpu.launch_func @entry_kernel::@entry_kernel blocks in (%c1, %c1, %c1) threads in (%c1, %c1, %c1)
args(%subview : memref<8x8xf32, strided<[?, 1], offset: ?>>)
args(%subview : memref<8x8xf32, strided<[?, 1]>>)
memref.dealloc %0 : memref<32x32xf32>

return
}
gpu.module @entry_kernel {
gpu.func @entry_kernel(%arg0: memref<8x8xf32, strided<[?, 1], offset: ?>>) kernel attributes {known_block_size = array<i32: 1, 1, 1>, known_grid_size = array<i32: 1, 1, 1>} {
gpu.func @entry_kernel(%arg0: memref<8x8xf32, strided<[?, 1]>>) kernel attributes {known_block_size = array<i32: 1, 1, 1>, known_grid_size = array<i32: 1, 1, 1>} {
gpu.return
}
}
Expand Down