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

  /external/u-boot/test/
compression.c 128 void *out, unsigned long out_max,
132 unsigned long inout_size = out_max;
143 void *out, unsigned long out_max,
149 ret = gunzip(out, out_max, in, &inout_size);
158 void *out, unsigned long out_max,
165 if (bzip2_compressed_size > out_max)
177 void *out, unsigned long out_max,
181 unsigned int inout_size = out_max;
193 void *out, unsigned long out_max,
200 if (lzma_compressed_size > out_max)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
quantized_instance_norm_test.cc 113 float out_max = outputs[2].flat<float>()(0); local
114 float out_scale = (out_max - out_min) / 255.0f;
quantization_utils_test.cc 162 const float out_max = 23.1234; local
167 qint32 high = FloatToQuantized<qint32>(out_max, in_min, in_max);
171 TestRequantizeMany(eigen_device, in_min, in_max, out_min, out_max, vals);
    [all...]
quantized_resize_bilinear_op.cc 724 Tensor* out_max = nullptr; variable
725 OP_REQUIRES_OK(context, context->allocate_output(2, {}, &out_max));
726 out_max->flat<float>()(0) = in_max;
quantized_resize_bilinear_op_test.cc 215 {qrb.resized_images, qrb.out_min, qrb.out_max},
  /external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
convert_nodes.h 538 float* out_max) const;
convert_nodes_test.cc 553 float* out_max) const {
554 return converter_->GetWeightRange(weights, out_min, out_max);
811 float out_max = 0.0f; local
812 TF_EXPECT_OK(test->GetWeightRange(weights, &out_min, &out_max));
814 EXPECT_EQ(6.0f, out_max);
    [all...]
convert_nodes.cc     [all...]
  /external/xz-embedded/linux/lib/xz/
xz_dec_lzma2.c 300 static void dict_limit(struct dictionary *dict, size_t out_max)
302 if (dict->end - dict->pos <= out_max)
305 dict->limit = dict->pos + out_max;
  /external/tensorflow/tensorflow/contrib/learn/python/learn/learn_io/
data_feeder.py 914 out_max = self._y.max().compute().values[0]
915 encoded_out = np.zeros((out.size, out_max + 1), dtype=self._output_dtype)
  /external/toybox/toys/pending/
xzcat.c     [all...]

Completed in 4195 milliseconds