File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
jax/_src/pallas/mosaic_gpu Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -181,17 +181,6 @@ def emit_pipeline(
181181 delay_release = 0 # No need to delay anything.
182182
183183 def pipeline (* gmem_refs : pallas_core .AbstractMemoryRef ):
184- for gmem_ref , spec in zip (gmem_refs , it .chain (in_specs , out_specs )):
185- if any (
186- spec .block_shape [- idx ] * grid [- idx ] != gmem_ref .shape [- idx ] # type: ignore
187- for idx in range (1 , len (grid ) + 1 )
188- if spec .block_shape is not None
189- ):
190- raise NotImplementedError (
191- f"Cannot emit a pipeline over the { grid = } for { gmem_ref } with block"
192- f" shape { spec .block_shape } ."
193- )
194-
195184 in_gmem_refs , out_gmem_refs = util .split_list (gmem_refs , [len (in_specs )])
196185 in_smem_refs , out_smem_refs = util .split_list (
197186 [
You can’t perform that action at this time.
0 commit comments