Home
last modified time | relevance | path

Searched refs:IndexList (Results 1 – 13 of 13) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorIndexList.h300 struct IndexList : internal::IndexTuple<FirstType, OtherTypes...> {
311 …EIGEN_DEVICE_FUNC constexpr IndexList(const internal::IndexTuple<FirstType, OtherTypes...>& other)…
312 …EIGEN_DEVICE_FUNC constexpr IndexList(FirstType& first, OtherTypes... other) : internal::IndexTupl…
313 EIGEN_DEVICE_FUNC constexpr IndexList() : internal::IndexTuple<FirstType, OtherTypes...>() { }
329 constexpr IndexList<FirstType, OtherTypes...> make_index_list(FirstType val1, OtherTypes... other_v…
330 return IndexList<FirstType, OtherTypes...>(val1, other_vals...);
353 template<typename FirstType, typename... OtherTypes> size_t array_prod(const IndexList<FirstType, O…
355 for (int i = 0; i < array_size<IndexList<FirstType, OtherTypes...> >::value; ++i) {
361 template<typename FirstType, typename... OtherTypes> struct array_size<IndexList<FirstType, OtherTy…
364 template<typename FirstType, typename... OtherTypes> struct array_size<const IndexList<FirstType, O…
[all …]
DTensorSyclTuple.h139 struct IndexList {};
156 typedef IndexList<Is...> type;
184 Tuple<Args..., T> append_base(Tuple<Args...> t, T a,IndexList<I...>) {
215 … Args2...> append_base(Tuple<Args1...> t1, Tuple<Args2...> t2, IndexList<I1...>, IndexList<I2...>)…
DREADME.md1750 * The IndexList class requires a cxx11 compliant compiler. You can use an
/external/llvm/lib/CodeGen/
DSlotIndexes.cpp113 for (IndexList::iterator I = indexList.begin(), E = indexList.end(); in renumberIndexes()
122 void SlotIndexes::renumberIndexes(IndexList::iterator curItr) { in renumberIndexes()
127 IndexList::iterator startItr = std::prev(curItr); in renumberIndexes()
170 IndexList::iterator ListB = startIdx.listEntry()->getIterator(); in repairIndexesInRange()
171 IndexList::iterator ListI = endIdx.listEntry()->getIterator(); in repairIndexesInRange()
213 for (IndexList::const_iterator itr = indexList.begin(); in dump()
/external/llvm/include/llvm/CodeGen/
DSlotIndexes.h343 typedef ilist<IndexListEntry> IndexList;
344 IndexList indexList;
347 IndexList graveyardList;
374 void renumberIndexes(IndexList::iterator curItr);
438 IndexList::iterator I = Index.listEntry()->getIterator();
439 IndexList::iterator E = indexList.end();
591 IndexList::iterator prevItr, nextItr;
608 IndexList::iterator newItr =
656 IndexList::iterator newItr;
/external/eigen/unsupported/test/
Dcxx11_tensor_index_list.cpp54 typedef Eigen::IndexList<Eigen::type2index<0>> Dims0; in test_type2index_list()
55 typedef Eigen::IndexList<Eigen::type2index<0>, Eigen::type2index<1>> Dims1; in test_type2index_list()
56 typedef Eigen::IndexList<Eigen::type2index<0>, Eigen::type2index<1>, Eigen::type2index<2>> Dims2; in test_type2index_list()
57 …typedef Eigen::IndexList<Eigen::type2index<0>, Eigen::type2index<1>, Eigen::type2index<2>, Eigen::… in test_type2index_list()
58 …typedef Eigen::IndexList<Eigen::type2index<0>, Eigen::type2index<1>, Eigen::type2index<2>, Eigen::… in test_type2index_list()
318 typedef IndexList<type2index<0>, int, type2index<2>, int> ReductionIndices; in test_mixed_index_list()
333 typedef IndexList<type2index<0>, type2index<1>, type2index<2>, type2index<3>> ReductionList; in test_mixed_index_list()
366 Eigen::IndexList<Eigen::type2index<1>, int> dim1; in test_dim_check()
368 Eigen::IndexList<Eigen::type2index<1>, int> dim2; in test_dim_check()
Dcxx11_tensor_reduction.cpp376 Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<3> > reduction_axis; in test_static_dims()
407 Eigen::IndexList<Eigen::type2index<0>, Eigen::type2index<1> > reduction_axis; in test_innermost_last_dims()
438 Eigen::IndexList<Eigen::type2index<2>, Eigen::type2index<3>> reduction_axis; in test_innermost_first_dims()
469 Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<2>> reduction_axis; in test_reduce_middle_dims()
Dcxx11_tensor_broadcasting.cpp119 Eigen::IndexList<Eigen::type2index<2>, Eigen::type2index<3>, Eigen::type2index<4>> broadcasts; in test_static_broadcasting()
/external/swiftshader/third_party/LLVM/utils/
Dllvm.grm244 | getelementptr OptInBounds "(" ^ ConstVal IndexList ^ ")"
381 IndexList ::= _ | IndexList ^ "," ResolvedVal ;
418 | getelementptr OptInBounds Types ValueRef IndexList
/external/llvm/utils/
Dllvm.grm245 | getelementptr OptInBounds "(" ^ ConstVal IndexList ^ ")"
382 IndexList ::= _ | IndexList ^ "," ResolvedVal ;
419 | getelementptr OptInBounds Types ValueRef IndexList
/external/eigen/bench/tensors/
Dtensor_benchmarks.h216 Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<2> > strides; in striding()
244 Eigen::IndexList<Eigen::type2index<1>, int> broadcast; in broadcasting()
326 Eigen::IndexList<Eigen::type2index<0>> sum_along_dim; in rowReduction()
356 Eigen::IndexList<Eigen::type2index<1>> sum_along_dim; in colReduction()
/external/llvm/tools/llvm-readobj/
DARMAttributeParser.h115 SmallVectorImpl<uint8_t> &IndexList);
DARMAttributeParser.cpp561 SmallVectorImpl<uint8_t> &IndexList) { in ParseIndexList() argument
568 IndexList.push_back(Value); in ParseIndexList()