Open
Description
System information.
TensorFlow version (you are using): TF2.12
Are you willing to contribute it (Yes/No) : Yes
Describe the feature and the current behavior/state.
https://github.com/keras-team/keras/blob/master/keras/layers/convolutional/base_conv.py#L285
use jit_compile as WA for CPU device, but pluggable device did not support XLA, that cause pluggable device cannot use keras group convolution
Will this change the current api? How?
No, just want to limit internal WA.
Who will benefit from this feature?
pluggable device user.
- Do you want to contribute a PR? (yes/no): yes
- If yes, please read this page for instructions
- Briefly describe your candidate solution(if contributing):
Add limit in https://github.com/keras-team/keras/blob/master/keras/layers/convolutional/base_conv.py#L285 that only for CPU.
Just working on how to limit this in CPU.