migraphx-benchmark / AMDMIGraphX

AMD's graph optimization engine.
https://rocmsoftwareplatform.github.io/AMDMIGraphX/doc/html/
MIT License
0 stars 1 forks source link

Limit max iteration in loop #144

Closed attila-dusnoki-htec closed 8 months ago

attila-dusnoki-htec commented 8 months ago

During the reshape issue, we encountered a problem, where: At loop with trip_count__47 = 9223372036854775807 (uint64_max). This will become the max_loop_iterations, which will be the batch size, and the whole thing explodes.

We should limit the max with e.g. 64k.