HomeSort by relevance Sort by last modified time
    Searched refs:min_fixed (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
quantize_and_dequantize_op.cc 67 // Next, we choose our fixed-point quantization buckets, [min_fixed,
70 // [min_fixed, max_fixed ] = [-((1 << (num_bits - 1)) - 1),
75 // [min_fixed, max_fixed] = [0, (1 << num_bits) - 1].
76 int64 min_fixed, max_fixed; variable
78 min_fixed = -((1LL << (num_bits_ - 1)) - 1);
81 min_fixed = 0;
87 // s = (max_fixed - min_fixed) / (2 * m).
89 b->Div(XlaHelpers::FloatLiteral(b, data_type, max_fixed - min_fixed),
  /external/tensorflow/tensorflow/go/op/
wrappers.go     [all...]

Completed in 432 milliseconds