[Mosaic] Allow users to opt out of window prefetching

PiperOrigin-RevId: 552797922
This commit is contained in:
Adam Paszke 2023-08-01 07:36:23 -07:00 committed by jax authors
parent b8019dcc9e
commit 716f4f8119

View File

@ -111,8 +111,9 @@ def TPU_TiledLayoutAttr
}
def TPU_MemorySpace : I32EnumAttr<"MemorySpace", "Memory space", [
I32EnumAttrCase<"vmem", 0>,
I32EnumAttrCase<"smem", 1>
I32EnumAttrCase<"kAny", 4294967295, "any">,
I32EnumAttrCase<"vmem", 0, "vmem">,
I32EnumAttrCase<"smem", 1, "smem">
]> {
let genSpecializedAttr = 0;
let cppNamespace = "::mlir::tpu";