Home
last modified time | relevance | path

Searched refs:list_of_lists (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/
Dgen_common.py35 def ConcatLists(list_of_lists): argument
37 for l in list_of_lists: output += l
/external/tensorflow/tensorflow/python/kernel_tests/
Dctc_decoder_ops_test.py41 def flatten(list_of_lists): argument
43 return itertools.chain.from_iterable(list_of_lists)
Dparse_single_example_op_test.py57 def flatten(list_of_lists): argument
59 return itertools.chain.from_iterable(list_of_lists)
Dparsing_ops_test.py61 def flatten(list_of_lists): argument
63 return itertools.chain.from_iterable(list_of_lists)
/external/tensorflow/tensorflow/python/framework/
Dtensor_util.py220 def _GetDenseDimensions(list_of_lists): argument
222 if not isinstance(list_of_lists, (list, tuple)):
224 elif not list_of_lists:
227 return [len(list_of_lists)] + _GetDenseDimensions(list_of_lists[0])
/external/llvm-project/llvm/docs/
DCMakePrimer.rst140 set(list_of_lists a b c)
150 foreach(list_name IN LISTS list_of_lists)
/external/llvm/docs/
DCMakePrimer.rst167 set(list_of_lists a b c)
177 foreach(list_name IN LISTS list_of_lists)
/external/python/cpython3/Doc/library/
Ditertools.rst772 def flatten(list_of_lists):
774 return chain.from_iterable(list_of_lists)