Home
last modified time | relevance | path

Searched refs:time_step (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/python/keras/layers/
Drecurrent_test.py283 time_step = 5
288 x = keras.Input((time_step, embedding_dim))
294 layer.compute_output_shape((time_step, None,
296 [time_step, None, units])
298 self.assertEqual(layer.output_shape, (time_step, None, units))
308 np.zeros((batch, time_step, embedding_dim)),
309 np.zeros((batch, time_step, units)))
312 x = keras.Input((time_step, embedding_dim))
319 self.assertEqual(layer.output_shape, (time_step, None, cell_units[-1]))
328 np.zeros((batch, time_step, embedding_dim)),
[all …]
Drecurrent.py440 time_step = input_shape[1]
442 batch, time_step = time_step, batch
453 output_shape = tensor_shape.as_shape([time_step, batch] + output_dim)
455 output_shape = tensor_shape.as_shape([batch, time_step] + output_dim)
/external/aac/libSBRenc/src/
Denv_est.h140 int time_step; member
169 int time_slots, int time_step,
Denv_est.cpp751 INT timeStep = h_sbr->sbrExtractEnvelope.time_step; in calculateSbrEnvelope()
1093 sbrExtrEnv->time_step, hEnvChan->SbrEnvFrame.frameMiddleSlot); in FDKsbrEnc_extractSbrEnvelope1()
1108 sbrExtrEnv->YBufferSzShift, h_con->nSfb[1], sbrExtrEnv->time_step, in FDKsbrEnc_extractSbrEnvelope1()
1897 int time_slots, int time_step, in FDKsbrEnc_InitExtractSbrEnvelope() argument
1906 hSbrCut->YBufferWriteOffset = (no_cols >> 1) + off * time_step; in FDKsbrEnc_InitExtractSbrEnvelope()
1908 hSbrCut->YBufferWriteOffset = tran_off * time_step; in FDKsbrEnc_InitExtractSbrEnvelope()
1923 hSbrCut->time_step = time_step; in FDKsbrEnc_InitExtractSbrEnvelope()
1928 if (time_step >= 2) in FDKsbrEnc_InitExtractSbrEnvelope()
/external/libxaac/decoder/
Dixheaacd_env_extr_part.h56 WORD16 time_step; member
Dixheaacd_lpp_tran.h74 WORD time_step, WORD first_slot_offset,
Dixheaacd_sbrdec_initfuncs.c460 if (audio_obj_type == AOT_ER_AAC_ELD) ptr_header_data->time_step -= 1; in ixheaacd_init_headerdata()
472 tmp = ptr_header_data->time_step + 4; in ixheaacd_init_headerdata()
481 ptr_header_data->time_step = 1; in ixheaacd_init_headerdata()
484 (samp_per_frame / 32 >> (ptr_header_data->time_step - 1)); in ixheaacd_init_headerdata()
1098 no_bins = (WORD16)(time_slots * ptr_header_data->time_step); in ixheaacd_create_sbrdec()
Dixheaacd_sbr_dec.c610 no_bins = (ptr_header_data->num_time_slots * ptr_header_data->time_step); in ixheaacd_sbr_dec()
892 border_vec[0] * ptr_header_data->time_step, in ixheaacd_sbr_dec()
893 ptr_header_data->time_step * in ixheaacd_sbr_dec()
911 p_arr_qmf_buf_real, p_arr_qmf_buf_imag, ptr_header_data->time_step, in ixheaacd_sbr_dec()
Dixheaacd_sbrdec_lpfuncs.c443 (ptr_header_data->time_step * in ixheaacd_rescale_x_overlap()
Dixheaacd_env_calc.c930 num_cols = (ptr_header_data->num_time_slots * ptr_header_data->time_step); in ixheaacd_calc_sbrenvelope()
/external/tensorflow/tensorflow/python/kernel_tests/
Drnn_cell_test.py3282 for time_step in output_mask:
3284 self.assertAllClose(output_mask[0], time_step)
3285 for batch_entry in time_step:
3287 self.assertAllClose(batch_entry, time_step[0])
3330 for time_step in output_mask:
3332 self.assertAllClose(output_mask[0], time_step)
3333 for batch_entry in time_step:
3335 self.assertAllClose(batch_entry, time_step[0])
/external/tensorflow/tensorflow/python/profiler/
Dmodel_analyzer_test.py589 def _trainLoop(self, train_op, train_steps, time_dir, time_step, argument
596 if i in time_step: