Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/common_runtime/
Dpartitioning_utils_test.cc96 gtl::ArraySlice<int> arg_indices, in SubGraph() argument
100 CHECK_EQ(arg_indices.size(), ret_indices.size()); in SubGraph()
101 for (size_t i = 0; i < arg_indices.size(); ++i) { in SubGraph()
102 auto x = ops::_Arg(s1.WithOpName("x"), dtype, arg_indices[i]); in SubGraph()
197 std::vector<FunctionArgIndex> arg_indices; in TEST_F() local
205 graph.get(), device_type, &arg_indices, &ret_indices, &arg_alloc_attrs, in TEST_F()
209 CheckArgIndices({{3, -1}}, arg_indices); in TEST_F()
236 std::vector<FunctionArgIndex> arg_indices; in TEST_F() local
244 graph.get(), device_type, &arg_indices, &ret_indices, &arg_alloc_attrs, in TEST_F()
248 CheckArgIndices({{1, 0}, {3, 1}, {5, 2}, {7, 2}, {9, 0}}, arg_indices); in TEST_F()
Dpartitioning_utils.cc78 std::vector<FunctionArgIndex>* arg_indices, std::vector<int>* ret_indices, in UpdateArgAndRetvalMetadata() argument
118 arg_indices->reserve(arg_nodes.size()); in UpdateArgAndRetvalMetadata()
119 for (const auto& pair : arg_nodes) arg_indices->push_back(pair.second); in UpdateArgAndRetvalMetadata()
Dpartitioning_utils.h65 std::vector<FunctionArgIndex>* arg_indices, std::vector<int>* ret_indices,
Dprocess_function_library_runtime.h246 std::vector<FunctionArgIndex> arg_indices; member
Dprocess_function_library_runtime.cc940 subgraph, device_type, &comp_data->arg_indices, in InstantiateMultiDevice()
1437 for (const auto& it : comp_data.arg_indices) { in Run()
1681 for (int i = 0; i < comp_data.arg_indices.size(); ++i) { in Run()
1682 const FunctionArgIndex index = comp_data.arg_indices.at(i); in Run()
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DPdbAstBuilder.cpp1137 llvm::ArrayRef<TypeIndex> arg_indices = llvm::makeArrayRef(args.ArgIndices); in CreateFunctionType() local
1138 bool is_variadic = IsCVarArgsFunction(arg_indices); in CreateFunctionType()
1140 arg_indices = arg_indices.drop_back(); in CreateFunctionType()
1143 arg_types.reserve(arg_indices.size()); in CreateFunctionType()
1145 for (TypeIndex arg_index : arg_indices) { in CreateFunctionType()
/external/clang/tools/c-index-test/
Dc-index-test.c152 int arg_indices[20]; in parse_remapped_files_with_opt() local
161 assert(*num_unsaved_files < (int)(sizeof(arg_indices)/sizeof(int))); in parse_remapped_files_with_opt()
162 arg_indices[*num_unsaved_files] = arg; in parse_remapped_files_with_opt()
174 const char *arg_string = argv[arg_indices[i]] + prefix_len; in parse_remapped_files_with_opt()
/external/llvm-project/clang/tools/c-index-test/
Dc-index-test.c223 int arg_indices[20]; in parse_remapped_files_with_opt() local
232 assert(*num_unsaved_files < (int)(sizeof(arg_indices)/sizeof(int))); in parse_remapped_files_with_opt()
233 arg_indices[*num_unsaved_files] = arg; in parse_remapped_files_with_opt()
246 const char *arg_string = argv[arg_indices[i]] + prefix_len; in parse_remapped_files_with_opt()