You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2022/04/08 12:32:16 UTC

[GitHub] [tvm] echuraev opened a new pull request, #10938: [OpenCL Textures] Fix memory management in texture pool

echuraev opened a new pull request, #10938:
URL: https://github.com/apache/tvm/pull/10938

   Previously, the size of the memory which should be allocated was
   calculated as multiplication width on height. It doesn't work well in
   case when one texture has big size in height and the next one big size
   in width. We tried to reuse the allocated memory and every time when
   the next texture with big size was used we reallocated the previous
   one. It has huge impact on the performance.
   Now we check two dimensions independently. So, in this case we will
   check both dimensions and it helps us to avoid the situation with
   cyclic memory reallocation.
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [tvm] jwfromm merged pull request #10938: [OpenCL Textures] Fix memory management in texture pool

Posted by GitBox <gi...@apache.org>.
jwfromm merged PR #10938:
URL: https://github.com/apache/tvm/pull/10938


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [tvm] echuraev commented on pull request #10938: [OpenCL Textures] Fix memory management in texture pool

Posted by GitBox <gi...@apache.org>.
echuraev commented on PR #10938:
URL: https://github.com/apache/tvm/pull/10938#issuecomment-1092812512

   @csullivan could you please review this PR?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org