Alexandre Eichenberger

Results 261 comments of Alexandre Eichenberger

Your observations are correct, we do not have to do anything during loading/initialization because all of the constants, for example, are loaded directly from the binary. We currently don't optimize...

@chentong319 is the person on our end that did a lot of the sequences. I really would like him to review it, he is currently away for another 2 weeks,...

To my understanding, Resize Op shape inference is implemented for some modes. Which one are you missing?

We don't seem to support these mode at this time ```C++ if (isFromNone(scales()) == isFromNone(sizes())) { return emitError("scales() and sizes() can not both None/not None"); } if (isFromNone(scales())) { return...

@chentong319 would you be able to see if it is difficult to implement this additional mode? Tx

Technically, if we had `transpose(binary-op(transpose(a, X), transpose(b, X), Y)` where type of a and b are identical and binary op is an element-wise operation, then we can also do the...

@negiyas Can you comment on whether you will generalize to all the element ops with one input, or two? Just so that we know at a high level what you...