Searched refs:matrix_size (Results 1 – 10 of 10) sorted by relevance
/external/libopus/tests/ |
D | test_opus_projection.c | 212 opus_int32 matrix_size; in test_creation_arguments() local 216 OPUS_PROJECTION_GET_DEMIXING_MATRIX_SIZE_REQUEST, &matrix_size); in test_creation_arguments() 217 if (ret != OPUS_OK || !matrix_size) in test_creation_arguments() 220 matrix = (unsigned char *)opus_alloc(matrix_size); in test_creation_arguments() 222 OPUS_PROJECTION_GET_DEMIXING_MATRIX_REQUEST, matrix, matrix_size); in test_creation_arguments() 227 coupled_streams, matrix, matrix_size, &dec_error); in test_creation_arguments() 301 opus_int32 matrix_size = 0; in test_encode_decode() local 326 OPUS_PROJECTION_GET_DEMIXING_MATRIX_SIZE_REQUEST, &matrix_size); in test_encode_decode() 327 if (error != OPUS_OK || !matrix_size) in test_encode_decode() 332 matrix = (unsigned char *)opus_alloc(matrix_size); in test_encode_decode() [all …]
|
/external/libopus/src/ |
D | opus_projection_decoder.c | 110 opus_int32 matrix_size; in opus_projection_decoder_get_size() local 113 matrix_size = in opus_projection_decoder_get_size() 115 if (!matrix_size) in opus_projection_decoder_get_size() 122 return align(sizeof(OpusProjectionDecoder)) + matrix_size + decoder_size; in opus_projection_decoder_get_size()
|
/external/tensorflow/tensorflow/contrib/memory_stats/python/kernel_tests/ |
D | memory_stats_ops_test.py | 58 matrix_size = 64 59 matrix_shape = tensor_shape.TensorShape([matrix_size, matrix_size])
|
/external/libtextclassifier/utils/tflite/ |
D | dist_diversification.cc | 32 const int matrix_size, in DiversifyByDistance() argument 38 while (result.size() < max_num_results && index < matrix_size) { in DiversifyByDistance() 39 for (; index < matrix_size; ++index) { in DiversifyByDistance()
|
/external/tensorflow/tensorflow/contrib/image/kernels/ |
D | adjust_hsv_in_yiq_op_gpu.cu.cc | 31 const int matrix_size) { in compute_tranformation_matrix_cuda() argument 32 if (matrix_size == kChannelSize * kChannelSize) { in compute_tranformation_matrix_cuda()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | tridiagonal_solve_op_test.py | 429 def _generateData(self, matrix_size, batch_size, num_rhs, seed=42): argument 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))
|
D | linalg_grad_test.py | 47 matrix_size = constant_op.constant(4) 50 array_ops.diag(array_ops.ones([matrix_size])), 0),
|
/external/tensorflow/tensorflow/core/kernels/ |
D | determinant_op_gpu.cu.cc | 92 const int matrix_size = n * n; in DeterminantFromPivotedLUKernel() local 103 int i_idx = matrix_size * o_idx; in DeterminantFromPivotedLUKernel()
|
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/ |
D | math_utils.py | 405 def transform_to_covariance_matrices(input_vectors, matrix_size): argument 416 input_vectors, matrix_size**2 + 2, activation_fn=None) 421 [matrix_size, matrix_size]
|
/external/webrtc/webrtc/modules/audio_processing/utility/ |
D | delay_estimator.c | 64 int matrix_size, in BitCountComparison() argument 69 for (; n < matrix_size; n++) { in BitCountComparison()
|