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

1 2 3 4 5 6 7

  /external/tensorflow/tensorflow/core/grappler/optimizers/
graph_optimizer.h 25 class Cluster;
29 // optimization of a GrapplerItem for running on a cluster.
38 // on "cluster".
40 virtual Status Optimize(Cluster* cluster, const GrapplerItem& item,
46 virtual void Feedback(Cluster* cluster, const GrapplerItem& item,
loop_optimizer.cc 32 Status LoopOptimizer::Optimize(Cluster* cluster, const GrapplerItem& item,
39 void LoopOptimizer::Feedback(Cluster* /*cluster*/, const GrapplerItem& /*item*/,
model_pruner.h 34 Status Optimize(Cluster* cluster, const GrapplerItem& item,
37 void Feedback(Cluster* cluster, const GrapplerItem& item,
static_schedule.h 22 #include "tensorflow/core/grappler/clusters/cluster.h"
35 const GrapplerItem& item, const Cluster* cluster,
42 const GrapplerItem& item, const Cluster* cluster,
meta_optimizer.h 37 Status Optimize(Cluster* cluster, const GrapplerItem& item,
42 void Feedback(Cluster* cluster, const GrapplerItem& item,
61 DeviceBase* cpu_device, Cluster* cluster,
layout_optimizer.h 44 Status Optimize(Cluster* cluster, const GrapplerItem& item,
47 void Feedback(Cluster* cluster, const GrapplerItem& item,
loop_optimizer.h 36 Status Optimize(Cluster* cluster, const GrapplerItem& item,
39 void Feedback(Cluster* cluster, const GrapplerItem& item,
memory_optimizer.h 42 Status Optimize(Cluster* cluster, const GrapplerItem& item,
45 void Feedback(Cluster* cluster, const GrapplerItem& item,
dependency_optimizer.h 39 Status Optimize(Cluster* cluster, const GrapplerItem& item,
42 void Feedback(Cluster* cluster, const GrapplerItem& item,
  /external/tensorflow/tensorflow/core/grappler/costs/
analytical_cost_estimator.h 33 class Cluster;
40 // Does not take ownership of cluster.
41 AnalyticalCostEstimator(Cluster* cluster, bool use_static_shapes);
42 // Does not take ownership of the cluster, but takes ownership of the
44 AnalyticalCostEstimator(Cluster* cluster,
61 Cluster* cluster_; // Not owned.
measuring_cost_estimator.h 37 class Cluster;
41 // corresponding TensorFlow graph on the specified cluster and measuring the
48 // take ownership of cluster.
49 explicit MeasuringCostEstimator(Cluster* cluster, int measurement_steps,
57 // Runs the optimized version of the graph on the cluster, measure
65 Cluster* cluster_; // Not owned.
virtual_placer.h 27 class Cluster;
32 VirtualPlacer(const Cluster* cluster);
36 // Returns device name from cluster, which best matches the node.device()
47 // Map based on the cluster info: cluster device name -> device properties.
50 // Maps LFQN to original device name as it was declared in cluster.
  /external/tensorflow/tensorflow/core/grappler/clusters/
cluster.cc 16 #include "tensorflow/core/grappler/clusters/cluster.h"
22 Cluster::Cluster(int timeout_s) : timeout_s_(timeout_s) {
26 Cluster::~Cluster() {}
28 void Cluster::AllowSoftPlacement(bool soft_placement_state) {
32 void Cluster::SetNumWarmupSteps(int num_steps) {
37 int Cluster::NumWarmupSteps() const {
41 void Cluster::DisableDetailedStats(bool disable) {
51 bool Cluster::DetailedStatsEnabled() const
    [all...]
cluster.h 34 // A cluster represents of collection of hardware resources available to run
36 // A process can only create a single cluster at a time.
37 class Cluster {
39 explicit Cluster(int timeout_s);
40 virtual ~Cluster();
42 // Returns a string that represent the type of cluster that was instantiated.
47 // The actual resources that are leveraged depend on the type of cluster
55 // Attempts to shutdown the cluster.
57 // resources used by the cluster could be released. Returns an error
107 "GetPeakMemoryUsage is not implemented for this type of cluster.")
    [all...]
  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
FileSpace.c 232 Free the cluster clain.
235 @param Cluster - The first cluster of cluster chain.
237 @retval EFI_SUCCESS - The cluster chain is freed successfully.
245 IN UINTN Cluster
250 while (!FAT_END_OF_FAT_CHAIN (Cluster)) {
251 if (Cluster == FAT_CLUSTER_FREE || Cluster >= FAT_CLUSTER_SPECIAL) {
253 DEBUG ((EFI_D_INIT | EFI_D_ERROR, "FatShrinkEof: cluster chain corrupt\n"));
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
KMeansPlusPlusClusterer.java 31 * @param <T> type of the points to cluster
38 /** Strategies to use for replacing an empty cluster. */
41 /** Split the cluster with largest distance variance. */
44 /** Split the cluster with largest number of points. */
47 /** Create a cluster around the point farthest from its centroid. */
64 * algorithm iterations is to split the cluster with largest distance variance.
86 * @param points the points to cluster
92 public List<Cluster<T>> cluster(final Collection<T> points, method in class:KMeansPlusPlusClusterer
95 List<Cluster<T>> clusters = chooseInitialCenters(points, k, random)
147 Cluster<T> cluster = getNearestCluster(clusters, p); local
    [all...]
Cluster.java 25 * Cluster holding a set of {@link Clusterable} points.
30 public class Cluster<T extends Clusterable<T>> implements Serializable {
35 /** The points contained in this cluster. */
38 /** Center of the cluster. */
42 * Build a cluster centered at a specified point.
43 * @param center the point which is to be the center of this cluster
45 public Cluster(final T center) {
51 * Add a point to this cluster.
59 * Get the points contained in the cluster.
60 * @return points contained in the cluster
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/tensorflow_graph_matching/
cluster.h 32 // The base class for Cluster. A cluster is group of nodes all related to each
34 // to a composite op supported in TFLite. The nodes in a cluster will be
36 // holding the input parameters to that node. The nodes in a cluster are assumed
38 // subclasses of the base Cluster class.
39 class Cluster {
41 virtual ~Cluster() {}
45 // Save the following info from the original GraphDef this cluster is from:
47 // 2- All the nodes in GraphDef which belong to this cluster.
62 // Find the input(s) and output(s) of this Cluster
    [all...]
resolve_svdf.h 22 #include "tensorflow/contrib/lite/toco/tensorflow_graph_matching/cluster.h"
31 class SvdfCluster : public Cluster {
33 // For this cluster, it collapses all the nodes in nodes_ into a composite op
46 // The main function which is used to create Const nodes for this cluster.
48 // cluster.
69 // Creates a cluster of nodes using a name-based pattern matching approach. It
71 // builds the cluster around that node.
75 std::unique_ptr<Cluster> CreateCluster(
cluster.cc 15 #include "tensorflow/contrib/lite/toco/tensorflow_graph_matching/cluster.h"
19 void Cluster::SetGraphDefInfo(const tensorflow::GraphDef* graph_def) {
28 bool Cluster::FindClusterInputsAndOutputs() {
30 // If N belongs to this cluster C, then each of N's inputs that are not part
32 // If N does not belong to cluster C, then each of N's inputs that belong to C
  /external/tensorflow/tensorflow/core/grappler/inputs/
trivial_test_graph_input_yielder.h 26 class Cluster;
  /external/libvpx/libvpx/third_party/libwebm/mkvparser/
mkvparser.h 69 class Cluster;
82 long Parse(const Cluster*);
85 long long GetTimeCode(const Cluster*) const; // absolute, but not scaled
86 long long GetTime(const Cluster*) const; // absolute, and scaled (ns)
109 short m_timecode; // relative to cluster
124 BlockEntry(Cluster*, long index);
130 const Cluster* GetCluster() const;
138 Cluster* const m_pCluster;
147 SimpleBlock(Cluster*, long index, long long start, long long size);
162 BlockGroup(Cluster*, long index
    [all...]
  /external/libvpx/libwebm/mkvparser/
mkvparser.h 69 class Cluster;
82 long Parse(const Cluster*);
85 long long GetTimeCode(const Cluster*) const; // absolute, but not scaled
86 long long GetTime(const Cluster*) const; // absolute, and scaled (ns)
109 short m_timecode; // relative to cluster
124 BlockEntry(Cluster*, long index);
130 const Cluster* GetCluster() const;
138 Cluster* const m_pCluster;
147 SimpleBlock(Cluster*, long index, long long start, long long size);
162 BlockGroup(Cluster*, long index
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_abs_send_time.h 40 struct Cluster {
41 Cluster()
96 const Cluster& cluster_aggregate);
98 static void AddCluster(std::list<Cluster>* clusters, Cluster* cluster);
118 void ComputeClusters(std::list<Cluster>* clusters) const;
120 std::list<Cluster>::const_iterator FindBestProbe(
121 const std::list<Cluster>& clusters) const
  /device/linaro/bootloader/edk2/FatPkg/FatPei/
FatLiteFmt.h 39 #define FAT_CLUSTER_FUNCTIONAL(Cluster) (((Cluster) == 0) || ((Cluster) >= FAT_CLUSTER_SPECIAL))
40 #define FAT_CLUSTER_END_OF_CHAIN(Cluster) ((Cluster) > (FAT_CLUSTER_SPECIAL))

Completed in 2531 milliseconds

1 2 3 4 5 6 7