Sumant Hanumante
Sumant Hanumante
@yejw5 yep, we are seeing it on other devices as well. One thing I noticed is that the code creates a copy of the command queue instead of taking by...
After reading through the code a bit more, it looks like throwing exception would not work since that call is made from the destructor. However, I think we should still...
@llhe Thanks for providing additional context! Although MACE isn't meant to be user-facing code, I would argue that in the mobile app setting, applications using this library would want to...
@lu229 Thanks for the response! My question was more around enqueuing multiple compilation jobs in parallel (as opposed to waiting for each compilation to finish before launching the next one)....
@lydoc I was trying to flatten the input to a 4D tensor such that all dims except the channel are 1, which is why I was expecting `[1,1,1,-1]` instead of...
I see, does it fallback to CPU automatically and run the other supported layers on the GPU? I tried using reshape with `[1,1,1,-1]`as the shape tensor, and now I am...
I see.. and in case of cpu+gpu mode, would the full inference be run on CPU or just the reshape part?
Just tried with latest master, I now get an error at https://github.com/XiaoMi/mace/blob/master/mace/core/tensor.h#L251 I am still trying to run my model (which has a reshape layer) in GPU mode. If I...