Skip to content
Open
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
1 change: 1 addition & 0 deletions test/TLX/print-ttgir-to-tlx.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
// CHECK-DAG: tlx.tmem_store(
// CHECK-DAG: tlx.local_trans(
// CHECK-DAG: tlx.subslice(
// CHECK-DAG: tlx.local_view(

// Verify warp specialization uses Python-like async_tasks syntax
// CHECK-DAG: with tlx.async_tasks():
Expand Down
2 changes: 1 addition & 1 deletion third_party/tlx/dialect/lib/Transforms/PrintTTGIRToTLX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ static const TTGIRToTLXMapping opMappings[] = {
{"ttg.memdesc_reinterpret", "tlx.local_reinterpret",
"Reinterpret buffer dtype/shape"},
{"ttng.tmem_subslice", "tlx.subslice", "TMEM subslice (Blackwell)"},
{"ttg.memdesc_index", "tlx.memdesc_index", "Index into memdesc"},
{"ttg.memdesc_index", "tlx.local_view", "Index into memdesc (buffer view)"},

// Async copy operations (cp.async)
{"ttg.async_load", "tlx.async_load",
Expand Down
Loading