Home
last modified time | relevance | path

Searched refs:end_step (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/contrib/model_pruning/python/
Dpruning.py306 end_step = self._spec.sparsity_function_end_step
318 end_step - begin_step)))
/external/pdfium/core/fxcodec/codec/
Dfx_codec_progress.cpp219 int end_step = (int)step; in Calc() local
220 if (end_step >= dest_len) { in Calc()
221 end_step = dest_len; in Calc()
222 for (int des_row = start_step; des_row < end_step; des_row++) { in Calc()
231 int length = end_step - start_step; in Calc()
239 for (int des_row = start_step + 1; des_row < end_step; des_row++) { in Calc()
242 pWeight->m_SrcEnd = end_step; in Calc()
244 FXSYS_round((float)(end_step - des_row) / (float)length * 65536); in Calc()
/external/u-boot/drivers/mtd/nand/
Dnand_base.c1329 int start_step, end_step, num_steps; in nand_read_subpage() local
1340 end_step = (data_offs + readlen - 1) / chip->ecc.size; in nand_read_subpage()
1341 num_steps = end_step - start_step + 1; in nand_read_subpage()
2318 uint32_t end_step = (offset + data_len - 1) / ecc_size; in nand_write_subpage_hwecc() local
2330 if ((step < start_step) || (step > end_step)) in nand_write_subpage_hwecc()
2337 if (!oob_required || (step < start_step) || (step > end_step)) in nand_write_subpage_hwecc()
/external/tensorflow/tensorflow/python/eager/
Dbackprop.py799 context.context().end_step()
Dcontext.py879 def end_step(self): member in Context