Add bug for TODO in conv and depthwise conv range check.
PiperOrigin-RevId: 344377636 Change-Id: Ic955e569f9848417c643f9bc4b43cefd63fa8503
This commit is contained in:
parent
1d5f98460a
commit
62c7ae1301
@ -101,7 +101,7 @@ inline void ConvPerChannel(
|
||||
// long as the filter size (filter_y * filter_x * in_channel)
|
||||
// does not exceed 2^16, which is the case in all the models
|
||||
// we have seen so far.
|
||||
// TODO(jianlijianli): Add a check to make sure the
|
||||
// TODO(b/174275578): Add a check to make sure the
|
||||
// accumulator depth is smaller than 2^16.
|
||||
acc += filter_val * (input_val + input_offset);
|
||||
}
|
||||
|
@ -95,7 +95,7 @@ inline void DepthwiseConvPerChannel(
|
||||
// long as the filter size (filter_y * filter_x * in_channel)
|
||||
// does not exceed 2^16, which is the case in all the models
|
||||
// we have seen so far.
|
||||
// TODO(jianlijianli): Add a check to make sure the
|
||||
// TODO(b/174275578): Add a check to make sure the
|
||||
// accumulator depth is smaller than 2^16.
|
||||
acc += filter_val * (input_val + input_offset);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user