You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the one hand, it's more efficient for the CPU to generate NCHW input features.
On the other, TensorFlow supports NHWC convolutions on a wider variety of platforms.
When I added support for NHWC, I coupled the conv data format to the input feature layout.
We should add another option to support different tensor layouts for input features and convolutions, inserting transpose operations as necessary.
On the one hand, it's more efficient for the CPU to generate NCHW input features.
On the other, TensorFlow supports NHWC convolutions on a wider variety of platforms.
When I added support for NHWC, I coupled the conv data format to the input feature layout.
We should add another option to support different tensor layouts for input features and convolutions, inserting transpose operations as necessary.