8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d5fd1d commit ae370f7Copy full SHA for ae370f7
tensorflow/compiler/tf2xla/kernels/fake_quantize_ops.cc
@@ -325,7 +325,7 @@ class FakeQuantWithMinMaxVarsPerChannelGradOp : public XlaOpKernel {
325
absl::Span<const int64_t> input_dimensions = input_shape.dimensions();
326
327
std::vector<int64_t> reduce_axes;
328
- for (int64_t i = 0; i + 1 < input_shape.dimensions_size(); ++i) {
+ for (int64_t i = 0; i + 1 < input_shape.dimensions().size(); ++i) {
329
reduce_axes.push_back(i);
330
}
331
0 commit comments