Home
last modified time | relevance | path

Searched refs:split_list (Results 1 – 10 of 10) sorted by relevance

/third_party/mindspore/mindspore/profiler/parser/
Dcontainer.py27 def __init__(self, split_list): argument
30 self._status = split_list[0]
31 self._task_id = split_list[6]
32 self._cycle_counter = float(split_list[7])
33 self._stream_id = split_list[8]
84 def __init__(self, split_list): argument
85 self._op_name = split_list[0]
86 self._stream_id = str(split_list[1])
87 self._start_time = float(split_list[2])
88 self._duration = float(split_list[3])
[all …]
/third_party/mindspore/tests/ut/python/parallel/
Dtest_loop_two_matmul.py54 split_list = [num]
57 split_list.append(num)
59 for a in split_list:
60 for b in split_list:
/third_party/benchmark/test/
DAssemblyTests.cmake2 include(split_list)
20 split_list(ASM_TEST_FLAGS)
/third_party/benchmark/cmake/
Dsplit_list.cmake1 macro(split_list listname) macro
/third_party/json/benchmarks/thirdparty/benchmark/cmake/
Dsplit_list.cmake1 macro(split_list listname) macro
DHandleGTest.cmake2 include(split_list)
31 split_list(GTEST_FLAGS)
/third_party/jerryscript/tools/
Dgen-unicode.py162 def split_list(category_list): function
193 letter_tables = split_list(list(group_ranges(letters)))
194 non_letter_tables = split_list(list(group_ranges(non_letters)))
195 separator_tables = split_list(list(group_ranges(separators)))
/third_party/gn/misc/vim/syntax/
Dgn.vim40 syn keyword gnFunctions split_list string_join string_split template tool
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/ir_fission/
Ddynamic_gru_v2_grad_fission.cc227 std::vector<int64_t> split_list = {SizeToLong(t_size - 1), 1}; in AddHSplitNode() local
233 AnfAlgo::SetNodeAttr(kAttrSizeSplits, MakeValue(split_list), split_v); in AddHSplitNode()
/third_party/gn/docs/
Dreference.md61 * [split_list: Splits a list into N different sub-lists.](#func_split_list)
3121 ### <a name="func_split_list"></a>**split_list**: Splits a list into N different sub-lists.
3124 result = split_list(input, n)
3139 print(split_list(mylist, 3))