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

  /external/libopus/tests/
test_opus_projection.c 212 opus_int32 matrix_size; local
216 OPUS_PROJECTION_GET_DEMIXING_MATRIX_SIZE_REQUEST, &matrix_size);
217 if (ret != OPUS_OK || !matrix_size)
220 matrix = (unsigned char *)opus_alloc(matrix_size);
222 OPUS_PROJECTION_GET_DEMIXING_MATRIX_REQUEST, matrix, matrix_size);
227 coupled_streams, matrix, matrix_size, &dec_error);
301 opus_int32 matrix_size = 0; local
326 OPUS_PROJECTION_GET_DEMIXING_MATRIX_SIZE_REQUEST, &matrix_size);
327 if (error != OPUS_OK || !matrix_size)
332 matrix = (unsigned char *)opus_alloc(matrix_size);
    [all...]
  /external/tensorflow/tensorflow/contrib/memory_stats/python/kernel_tests/
memory_stats_ops_test.py 58 matrix_size = 64
59 matrix_shape = tensor_shape.TensorShape([matrix_size, matrix_size])
  /external/tensorflow/tensorflow/contrib/image/kernels/
adjust_hsv_in_yiq_op_gpu.cu.cc 31 const int matrix_size) {
32 if (matrix_size == kChannelSize * kChannelSize) {
  /external/libtextclassifier/utils/tflite/
dist_diversification.cc 32 const int matrix_size,
38 while (result.size() < max_num_results && index < matrix_size) {
39 for (; index < matrix_size; ++index) {
  /external/libopus/src/
opus_projection_decoder.c 110 opus_int32 matrix_size; local
113 matrix_size =
115 if (!matrix_size)
122 return align(sizeof(OpusProjectionDecoder)) + matrix_size + decoder_size;
  /external/tensorflow/tensorflow/core/kernels/
determinant_op_gpu.cu.cc 92 const int matrix_size = n * n; local
103 int i_idx = matrix_size * o_idx;
  /external/tensorflow/tensorflow/python/kernel_tests/
tridiagonal_solve_op_test.py 429 def _generateData(self, matrix_size, batch_size, num_rhs, seed=42):
431 shape=(batch_size, 3 + num_rhs, matrix_size),
439 for matrix_size, batch_size, num_rhs in self.sizes:
443 diags, rhs = self._generateData(matrix_size, batch_size, num_rhs)
452 "num_rhs_{}").format(matrix_size, batch_size, num_rhs))
linalg_grad_test.py 47 matrix_size = constant_op.constant(4)
50 array_ops.diag(array_ops.ones([matrix_size])), 0),
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
math_utils.py 405 def transform_to_covariance_matrices(input_vectors, matrix_size):
410 matrix_size: An integer indicating one dimension of the (square) output
413 A [batch size x matrix_size x matrix_size] batch of covariance matrices.
416 input_vectors, matrix_size**2 + 2, activation_fn=None)
421 [matrix_size, matrix_size]
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator.c 55 // - matrix_size : size of binary "matrix"
64 int matrix_size,
69 for (; n < matrix_size; n++) {

Completed in 423 milliseconds