HomeSort by relevance Sort by last modified time
    Searched refs:Cluster (Results 101 - 125 of 152) sorted by null

1 2 3 45 6 7

  /external/tensorflow/tensorflow/core/grappler/optimizers/
memory_optimizer.cc 492 bool SchedulingPass(Cluster* cluster, GrapplerItem* item) {
520 cluster->GetDevices();
    [all...]
dependency_optimizer.cc 548 Status DependencyOptimizer::Optimize(Cluster* cluster, const GrapplerItem& item,
582 void DependencyOptimizer::Feedback(Cluster* /*cluster*/,
constant_folding.cc 29 #include "tensorflow/core/grappler/clusters/cluster.h"
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
st32_64.asm 36 SectorsPerCluster db 0 ; Sector Per Cluster - 1 byte
58 RootCluster dd 0 ; 1st Cluster Number of Root Dir - 4 bytes
72 ; ds = 1000, es = 2000 + x (size of first cluster >> 4)
73 ; cx = Start Cluster of EfiLdr
74 ; dx = Start Cluster of Efivar.bin
120 ; cx = Start Cluster of Efildr -> BS.com has filled already
121 ; ES:DI = 2000:0, first cluster will be read again
155 ; CX = Start Cluster of File
171 push cx ; Push Start Cluster onto stack
176 cmp ax,0fff8h ; See if this is the last cluster
    [all...]
start32.asm 36 SectorsPerCluster db 0 ; Sector Per Cluster - 1 byte
58 RootCluster dd 0 ; 1st Cluster Number of Root Dir - 4 bytes
72 ; ds = 1000, es = 2000 + x (size of first cluster >> 4)
73 ; cx = Start Cluster of EfiLdr
74 ; dx = Start Cluster of Efivar.bin
120 ; cx = Start Cluster of Efildr -> BS.com has filled already
121 ; ES:DI = 2000:0, first cluster will be read again
142 ; CX = Start Cluster of File
158 push cx ; Push Start Cluster onto stack
163 cmp ax,0fff8h ; See if this is the last cluster
    [all...]
st16_64.asm 37 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits
58 ; ds = 1000, es = 2000 + x (size of first cluster >> 4)
59 ; cx = Start Cluster of EfiLdr
60 ; dx = Start Cluster of Efivar.bin
105 ; cx = Start Cluster of Efildr -> BS.com has filled already
106 ; ES:DI = 2000:0, first cluster will be read again
139 ; CX = Start Cluster of File
155 push cx ; Push Start Cluster onto stack
160 cmp ax,0fff8h ; See if this is the last cluster
161 je FoundLastCluster ; Jump if last cluster found
    [all...]
start.asm 37 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits
58 ; ds = 1000, es = 2000 + x (size of first cluster >> 4)
59 ; cx = Start Cluster of EfiLdr
60 ; dx = Start Cluster of Efivar.bin
105 ; cx = Start Cluster of Efildr -> BS.com has filled already
106 ; ES:DI = 2000:0, first cluster will be read again
127 ; CX = Start Cluster of File
143 push cx ; Push Start Cluster onto stack
148 cmp ax,0ff8h ; See if this is the last cluster
149 je FoundLastCluster ; Jump if last cluster found
    [all...]
start16.asm 37 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits
58 ; ds = 1000, es = 2000 + x (size of first cluster >> 4)
59 ; cx = Start Cluster of EfiLdr
60 ; dx = Start Cluster of Efivar.bin
105 ; cx = Start Cluster of Efildr -> BS.com has filled already
106 ; ES:DI = 2000:0, first cluster will be read again
127 ; CX = Start Cluster of File
143 push cx ; Push Start Cluster onto stack
148 cmp ax,0fff8h ; See if this is the last cluster
149 je FoundLastCluster ; Jump if last cluster found
    [all...]
start64.asm 37 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits
58 ; ds = 1000, es = 2000 + x (size of first cluster >> 4)
59 ; cx = Start Cluster of EfiLdr
60 ; dx = Start Cluster of Efivar.bin
105 ; cx = Start Cluster of Efildr -> BS.com has filled already
106 ; ES:DI = 2000:0, first cluster will be read again
139 ; CX = Start Cluster of File
155 push cx ; Push Start Cluster onto stack
160 cmp ax,0ff8h ; See if this is the last cluster
161 je FoundLastCluster ; Jump if last cluster found
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 70 Cluster ///< Weak DAG edge linking a chain of clustered instrs.
204 /// as "cluster", meaning it is artificial and wants to be adjacent.
206 return getKind() == Order && Contents.OrdKind == Cluster;
MachineScheduler.h 245 /// Record the next node in a scheduled cluster.
765 NoCand, Only1, PhysRegCopy, RegExcess, RegCritical, Stall, Cluster, Weak,
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/tensorflow_graph_matching/
resolve_svdf.cc 26 #include "tensorflow/contrib/lite/toco/tensorflow_graph_matching/cluster.h"
45 // Receives a vector of cluster nodes and returns only those which are array
253 std::unique_ptr<Cluster> SvdfClusterFactory::CreateCluster(
261 std::unique_ptr<SvdfCluster> cluster = nullptr; local
267 // CELLNAME as the cluster name.
271 cluster = std::unique_ptr<SvdfCluster>(new SvdfCluster);
272 cluster->SetName(cell_name);
273 cluster->SetDevice(node.device());
274 cluster->SetGraphDefInfo(&graph_def);
275 CHECK(cluster->FindClusterInputsAndOutputs())
    [all...]
  /external/tensorflow/tensorflow/contrib/tensorrt/convert/
convert_graph.cc 210 tensorflow::grappler::Cluster* cluster; local
212 // Virtual cluster
216 cluster =
219 TF_RETURN_IF_ERROR(optimizer.Optimize(cluster, item, &gdef));
  /external/tensorflow/tensorflow/core/grappler/clusters/
single_machine.cc 40 : Cluster(timeout_s), expected_init_time_s_(0), closing_(false) {
73 // at a time. This check detects when more that one cluster is provisioned.
76 "Can't provision more than one single cluster at a time");
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_memory.cc 34 VirtualCluster cluster(devices);
35 TF_RETURN_IF_ERROR(cluster.Provision());
36 TF_RETURN_IF_ERROR(cluster.Initialize(item_));
38 Status s = cluster.Run(item_.graph, item_.feed, item_.fetch, &metadata);
39 // The virtual cluster returns the RESOURCE_EXHAUSTED error when it detects
49 Status GraphMemory::InferDynamically(Cluster* cluster) {
50 if (!cluster->DetailedStatsEnabled()) {
54 TF_RETURN_IF_ERROR(cluster->Initialize(item_));
57 cluster->Run(item_.graph, item_.feed, item_.fetch, &metadata))
    [all...]
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer.cc 26 CostAnalyzer::CostAnalyzer(const GrapplerItem& item, Cluster* cluster,
29 measure_estimator_(cluster, 10, 0),
30 analytical_estimator_(cluster, false),
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 215 bool Cluster = false;
237 Cluster = true;
242 if (!Cluster)
266 // Cluster loads by adding MVT::Glue outputs and inputs. This also
289 /// ClusterNodes - Cluster certain nodes which should be scheduled together.
300 // Cluster loads from "near" addresses into combined SUnits.
515 // Cluster certain nodes which should be scheduled together.
    [all...]
  /external/skia/src/pdf/
SkPDFDevice.cpp 1130 uint32_t cluster = fClusters[0]; local
    [all...]
  /external/skqp/src/pdf/
SkPDFDevice.cpp 1130 uint32_t cluster = fClusters[0]; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 184 bool Cluster = false;
203 Cluster = true;
206 if (!Cluster)
230 // Cluster loads by adding MVT::Glue outputs and inputs. This also
249 /// ClusterNodes - Cluster certain nodes which should be scheduled together.
261 // Cluster loads from "near" addresses into combined SUnits.
476 // Cluster certain nodes which should be scheduled together.
  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
Fat.h 70 // Max sectors per cluster is 128
328 UINT64 FirstClusterPos; // Disk pos of first cluster
330 UINTN MaxCluster; // Max cluster number
331 UINTN ClusterSize; // Cluster size of fat partition
341 FAT_INFO_SECTOR FatInfoSector; // Free cluster info
342 UINTN FreeInfoPos; // Pos with the free cluster info
343 BOOLEAN FreeInfoValid; // If free cluster info is valid
349 UINTN RootCluster; // >= FAT32, root cluster chain head
907 @param Cluster - The Starting cluster.
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvmuxerutil.cc 552 Cluster* cluster) {
553 if (!writer || !frame || !frame->IsValid() || !cluster ||
554 !cluster->timecode_scale())
558 // timecode for the cluster itself (remember that block timecode
560 // only permit non-negative cluster-relative timecodes for blocks.
561 const int64 relative_timecode = cluster->GetRelativeTimecode(
562 frame->timestamp() / cluster->timecode_scale());
569 cluster->timecode_scale());
  /external/tensorflow/tensorflow/core/grappler/
grappler_item_builder.cc 75 // of the cluster type (E.g: single cpu, multiple gpu, etc) being simulated in
149 Cluster* cluster = nullptr; // ModelPruner doesn't check cluster. local
150 TF_RETURN_IF_ERROR(pruner.Optimize(cluster, *item, &pruned_graph));
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineScheduler.h 263 /// Record the next node in a scheduled cluster.
766 NoCand, Only1, PhysRegCopy, RegExcess, RegCritical, Stall, Cluster, Weak,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
MachineScheduler.h 268 /// Record the next node in a scheduled cluster.
771 NoCand, Only1, PhysRegCopy, RegExcess, RegCritical, Stall, Cluster, Weak,
    [all...]

Completed in 1358 milliseconds

1 2 3 45 6 7