Home
last modified time | relevance | path

Searched refs:Partition (Results 1 – 25 of 131) sorted by relevance

123456

/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dshape_partition_test.cc96 typedef std::vector<std::pair<int64, int64>> Partition; typedef in xla::cpu::__anon89ccd20e0111::ShapePartitionIteratorTest
105 EXPECT_TRUE(absl::c_equal(Partition({{0, 5}}), iterator.GetPartition(0))); in TEST_F()
111 EXPECT_TRUE(absl::c_equal(Partition({{0, 2}}), iterator.GetPartition(0))); in TEST_F()
112 EXPECT_TRUE(absl::c_equal(Partition({{2, 3}}), iterator.GetPartition(1))); in TEST_F()
118 EXPECT_TRUE(absl::c_equal(Partition({{0, 1}}), iterator.GetPartition(0))); in TEST_F()
119 EXPECT_TRUE(absl::c_equal(Partition({{1, 1}}), iterator.GetPartition(1))); in TEST_F()
120 EXPECT_TRUE(absl::c_equal(Partition({{2, 3}}), iterator.GetPartition(2))); in TEST_F()
131 absl::c_equal(Partition({{0, 5}, {0, 3}}), iterator.GetPartition(0))); in TEST_F()
138 absl::c_equal(Partition({{0, 2}, {0, 1}}), iterator.GetPartition(0))); in TEST_F()
140 absl::c_equal(Partition({{0, 2}, {1, 2}}), iterator.GetPartition(1))); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/
DAArch64GenGICombiner.inc131 int Partition = -1;
132 Partition = -1;
134 case TargetOpcode::COPY: Partition = 0; break;
135 case TargetOpcode::G_PTR_ADD: Partition = 1; break;
136 case TargetOpcode::G_LOAD: Partition = 2; break;
137 case TargetOpcode::G_SEXTLOAD: Partition = 3; break;
138 case TargetOpcode::G_ZEXTLOAD: Partition = 4; break;
139 case TargetOpcode::G_STORE: Partition = 5; break;
140 case TargetOpcode::G_BR: Partition = 6; break;
143 if (Partition == -1) return false;
[all …]
/external/arm-trusted-firmware/docs/components/
Dsecure-partition-manager-mm.rst1 Secure Partition Manager (MM)
7 Two implementations of a Secure Partition Manager co-exist in the TF-A codebase:
9 - SPM based on the PSA FF-A specification (:ref:`Secure Partition Manager`).
15 This document describes the latter implementation where the Secure Partition Manager
50 A **Secure Partition** is a software execution environment instantiated in
52 Since S-EL0 is an unprivileged Exception Level, a Secure Partition relies on
64 Note that currently TF-A only supports handling one Secure Partition.
66 A Secure Partition enables TF-A to implement only the essential secure
71 The following diagram illustrates the place of a Secure Partition in a typical
78 The TF-A build system is responsible for including the Secure Partition image
[all …]
/external/tcpdump/tests/
Dkday6.out248 Partition DIS TLV #4, length: 4
249 Partition DIS TLV #4, length: 4
250 Partition DIS TLV #4, length: 4
251 Partition DIS TLV #4, length: 4
252 Partition DIS TLV #4, length: 4
253 Partition DIS TLV #4, length: 4
254 Partition DIS TLV #4, length: 4
257 Partition DIS TLV #4, length: 4
258 Partition DIS TLV #4, length: 4
259 Partition DIS TLV #4, length: 4
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DCompileOnDemandLayer.cpp120 void CompileOnDemandLayer::setPartitionFunction(PartitionFunction Partition) { in setPartitionFunction() argument
121 this->Partition = std::move(Partition); in setPartitionFunction()
210 void CompileOnDemandLayer::expandPartition(GlobalValueSet &Partition) { in expandPartition() argument
217 assert(!Partition.empty() && "Unexpected empty partition"); in expandPartition()
219 const Module &M = *(*Partition.begin())->getParent(); in expandPartition()
223 for (auto *GV : Partition) in expandPartition()
231 if (Partition.count(cast<GlobalValue>(A.getAliasee()))) in expandPartition()
239 Partition.insert(GV); in expandPartition()
261 TSM.withModuleDo([&](Module &M) { return Partition(RequestedGVs); }); in emitPartition()
/external/llvm-project/llvm/utils/TableGen/GlobalISel/
DGIMatchTree.cpp470 auto Partition = InstrToPartition.find(Expected); in repartition() local
471 if (Partition == InstrToPartition.end()) { in repartition()
473 Partition = InstrToPartition in repartition()
480 Partitions.find(Partition->second)->second.set(Leaf.index()); in repartition()
483 << " is in partition " << Partition->second << "\n"); in repartition()
501 for (auto &Partition : Partitions) in repartition() local
502 Partition.second.set(Leaf.index()); in repartition()
528 for (auto &Partition : Partitions) in repartition() local
529 Partition.second.set(Leaf.index()); in repartition()
599 for (const auto &Partition : InstrToPartition) { in emitPartitionResults() local
[all …]
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/
DCompileOnDemandLayer.cpp123 void CompileOnDemandLayer::setPartitionFunction(PartitionFunction Partition) { in setPartitionFunction() argument
124 this->Partition = std::move(Partition); in setPartitionFunction()
226 void CompileOnDemandLayer::expandPartition(GlobalValueSet &Partition) { in expandPartition() argument
233 assert(!Partition.empty() && "Unexpected empty partition"); in expandPartition()
235 const Module &M = *(*Partition.begin())->getParent(); in expandPartition()
239 for (auto *GV : Partition) in expandPartition()
247 if (Partition.count(cast<GlobalValue>(A.getAliasee()))) in expandPartition()
255 Partition.insert(GV); in expandPartition()
284 TSM.withModuleDo([&](Module &M) { return Partition(RequestedGVs); }); in emitPartition()
/external/llvm/lib/Transforms/Scalar/
DLoopDistribute.cpp275 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) { in mergeNonIfConvertible() argument
276 if (Partition->hasDepCycle()) in mergeNonIfConvertible()
282 for (auto *Inst : *Partition) in mergeNonIfConvertible()
371 for (const auto &Partition : PartitionContainer) { in setupPartitionIdOnInstructions() local
372 for (Instruction *Inst : Partition) { in setupPartitionIdOnInstructions()
441 for (auto &Partition : PartitionContainer) in removeUnusedInsts() local
442 Partition.removeUnusedInsts(); in removeUnusedInsts()
462 int &Partition = PtrToPartitions[I]; in computePartitionSetForPointers() local
464 Partition = -2; in computePartitionSetForPointers()
469 if (Partition == -2) in computePartitionSetForPointers()
[all …]
/external/libgav1/libgav1/src/tile/bitstream/
Dpartition.cc105 Partition* const partition) { in ReadPartition()
124 *partition = static_cast<Partition>( in ReadPartition()
127 *partition = static_cast<Partition>( in ReadPartition()
131 *partition = static_cast<Partition>( in ReadPartition()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopDistribute.cpp321 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) { in mergeNonIfConvertible() argument
322 if (Partition->hasDepCycle()) in mergeNonIfConvertible()
328 for (auto *Inst : *Partition) in mergeNonIfConvertible()
419 for (const auto &Partition : PartitionContainer) { in setupPartitionIdOnInstructions() local
420 for (Instruction *Inst : Partition) { in setupPartitionIdOnInstructions()
496 for (auto &Partition : PartitionContainer) in removeUnusedInsts() local
497 Partition.removeUnusedInsts(); in removeUnusedInsts()
517 int &Partition = PtrToPartitions[I]; in computePartitionSetForPointers() local
519 Partition = -2; in computePartitionSetForPointers()
524 if (Partition == -2) in computePartitionSetForPointers()
[all …]
/external/llvm-project/llvm/lib/Transforms/Scalar/
DLoopDistribute.cpp321 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) { in mergeNonIfConvertible() argument
322 if (Partition->hasDepCycle()) in mergeNonIfConvertible()
328 for (auto *Inst : *Partition) in mergeNonIfConvertible()
419 for (const auto &Partition : PartitionContainer) { in setupPartitionIdOnInstructions() local
420 for (Instruction *Inst : Partition) { in setupPartitionIdOnInstructions()
496 for (auto &Partition : PartitionContainer) in removeUnusedInsts() local
497 Partition.removeUnusedInsts(); in removeUnusedInsts()
517 int &Partition = PtrToPartitions[I]; in computePartitionSetForPointers() local
519 Partition = -2; in computePartitionSetForPointers()
524 if (Partition == -2) in computePartitionSetForPointers()
[all …]
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DCompileOnDemandLayer.h90 void setPartitionFunction(PartitionFunction Partition);
120 void expandPartition(GlobalValueSet &Partition);
132 PartitionFunction Partition = compileRequested; variable
/external/tensorflow/tensorflow/core/graph/
Dgraph_partition_test.cc76 void Partition(const GraphDef& graph_def, in Partition() function
97 Status s = Partition(popts, &g, partitions); in Partition()
112 Partition(graph_def, &partitions); in CheckLoopConstruction()
244 Partition(ToGraphDef(), &partitions_); in TEST_F()
257 Partition(ToGraphDef(), &partitions_); in TEST_F()
278 Partition(ToGraphDef(), &partitions_); in TEST_F()
302 Partition(ToGraphDef(), &partitions_); in TEST_F()
325 Partition(ToGraphDef(), &partitions_); in TEST_F()
350 Partition(ToGraphDef(), &partitions_); in TEST_F()
398 Partition(ToGraphDef(), &partitions); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DCompileOnDemandLayer.h93 void setPartitionFunction(PartitionFunction Partition);
121 void expandPartition(GlobalValueSet &Partition);
132 PartitionFunction Partition = compileRequested; variable
275 SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition,
287 SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition,
294 Partition(std::move(Partition)), CompileCallbackMgr(CallbackMgr), in ES()
593 auto Part = Partition(F); in extractAndCompile()
741 PartitioningFtor Partition; variable
755 SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition, in LegacyCompileOnDemandLayer() argument
762 Partition(std::move(Partition)), CompileCallbackMgr(CallbackMgr), in LegacyCompileOnDemandLayer()
/external/llvm/tools/lli/
DOrcLazyJIT.h138 std::set<Function*> Partition; in extractSingleFunction() local
139 Partition.insert(&F); in extractSingleFunction()
140 return Partition; in extractSingleFunction()
/external/llvm/include/llvm/Transforms/Scalar/
DSROA.h32 class Partition; variable
117 sroa::Partition &P);
/external/arm-trusted-firmware/plat/arm/board/fvp/fdts/
Doptee_sp_manifest.dts6 * This file is a Partition Manifest (PM) for a minimal Secure Partition (SP)
/external/swiftshader/src/Device/
DBC_Decoder.cpp636 Partition, enumerator
751 { Partition, None, 4, 0 } },
761 { Partition, None, 4, 0 } },
770 { Partition, None, 4, 0 } },
790 { Partition, None, 4, 0 } },
811 { Partition, None, 4, 0 } },
832 { Partition, None, 4, 0 } },
853 { Partition, None, 4, 0 } },
869 { Partition, None, 4, 0 } },
885 { Partition, None, 4, 0 } },
[all …]
/external/llvm-project/llvm/include/llvm/Transforms/Scalar/
DSROA.h41 class Partition; variable
127 sroa::Partition &P);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/
DSROA.h41 class Partition; variable
127 sroa::Partition &P);
/external/llvm-project/lld/ELF/
DWriter.cpp68 std::vector<PhdrEntry *> createPhdrs(Partition &part);
69 void addPhdrForSection(Partition &part, unsigned shType, unsigned pType,
73 void setPhdrs(Partition &part);
214 Partition &part = s->getPartition(); in combineEhSections()
400 for (Partition &part : partitions) { in createSyntheticSections()
610 for (Partition &part : partitions) in run()
618 for (Partition &part : partitions) in run()
1118 for (Partition &part : partitions) { in forEachRelSec()
1153 for (Partition &part : partitions) { in setReservedSymbolSections()
1709 for (Partition &part : partitions) in finalizeAddressDependentContent()
[all …]
/external/tensorflow/tensorflow/lite/delegates/
Dutils_test.cc190 EXPECT_EQ(kTfLiteOk, helper.Partition(nullptr)); in TEST()
223 EXPECT_EQ(kTfLiteError, helper.Partition(nullptr)); in TEST()
232 EXPECT_EQ(kTfLiteOk, helper.Partition(nullptr)); in TEST()
/external/tensorflow/tensorflow/lite/
Dgraph_info.cc52 void Partition() { in Partition() function in tflite::__anonac33a0ca0111::PartitionGraphIntoIndependentNodeSubsetsImpl
222 .Partition(); in PartitionGraphIntoIndependentNodeSubsets()
/external/llvm/include/llvm/ExecutionEngine/Orc/
DCompileOnDemandLayer.h172 CompileOnDemandLayer(BaseLayerT &BaseLayer, PartitioningFtor Partition,
176 : BaseLayer(BaseLayer), Partition(std::move(Partition)), in BaseLayer()
399 auto Part = Partition(F); in extractAndCompile()
504 PartitioningFtor Partition; variable
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTO.cpp495 unsigned Partition, bool InSummary) { in addModuleToGlobalRes() argument
532 (GlobalRes.Partition != GlobalResolution::Unknown && in addModuleToGlobalRes()
533 GlobalRes.Partition != Partition)) { in addModuleToGlobalRes()
534 GlobalRes.Partition = GlobalResolution::External; in addModuleToGlobalRes()
537 GlobalRes.Partition = Partition; in addModuleToGlobalRes()
993 if (R.second.Partition != 0 && in runRegularLTO()
994 R.second.Partition != GlobalResolution::External) in runRegularLTO()
1005 if (EnableLTOInternalization && R.second.Partition == 0) in runRegularLTO()
1320 if (Res.second.Partition != GlobalResolution::External || in runThinLTO()

123456