hsail-x86: fix addr_range_map error 683f411dca introduced changes to the addr_range_map's "find" method. Nikos replaced the relevant code with a new "contains" method. Propagate the changes to the gpu-compute code. Change-Id: I8cfe3b15cbfb476685b0ed5ba423ea5a8f1000d8 Reviewed-on: https://gem5-review.googlesource.com/12107 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Reviewed-by: Anthony Gutierrez <anthony.gutierrez@amd.com> Maintainer: Anthony Gutierrez <anthony.gutierrez@amd.com>
diff --git a/src/gpu-compute/hsail_code.cc b/src/gpu-compute/hsail_code.cc index 99f4b38..a5b47b1 100644 --- a/src/gpu-compute/hsail_code.cc +++ b/src/gpu-compute/hsail_code.cc
@@ -333,7 +333,7 @@ { assert(elements_by_addr.size() > 0); - auto se = elements_by_addr.find(addr); + auto se = elements_by_addr.contains(addr); if (se == elements_by_addr.end()) { return nullptr;