/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/ |
H A D | SwitchLoweringUtils.cpp | 23 uint64_t SwitchCG::getJumpTableRange(const CaseClusterVector &Clusters, in getJumpTableRange() argument 26 const APInt &LowCase = Clusters[First].Low->getValue(); in getJumpTableRange() 27 const APInt &HighCase = Clusters[Last].High->getValue(); in getJumpTableRange() 46 void SwitchCG::SwitchLowering::findJumpTables(CaseClusterVector &Clusters, in findJumpTables() argument 52 // Clusters must be non-empty, sorted, and only contain Range clusters. in findJumpTables() 53 assert(!Clusters.empty()); in findJumpTables() 54 for (CaseCluster &C : Clusters) in findJumpTables() 56 for (unsigned i = 1, e = Clusters.size(); i < e; ++i) in findJumpTables() 57 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue())); in findJumpTables() 68 const int64_t N = Clusters.size(); in findJumpTables() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | SwitchLoweringUtils.cpp | 20 uint64_t SwitchCG::getJumpTableRange(const CaseClusterVector &Clusters, in getJumpTableRange() argument 23 const APInt &LowCase = Clusters[First].Low->getValue(); in getJumpTableRange() 24 const APInt &HighCase = Clusters[Last].High->getValue(); in getJumpTableRange() 43 void SwitchCG::SwitchLowering::findJumpTables(CaseClusterVector &Clusters, in findJumpTables() argument 49 // Clusters must be non-empty, sorted, and only contain Range clusters. in findJumpTables() 50 assert(!Clusters.empty()); in findJumpTables() 51 for (CaseCluster &C : Clusters) in findJumpTables() 53 for (unsigned i = 1, e = Clusters.size(); i < e; ++i) in findJumpTables() 54 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue())); in findJumpTables() 65 const int64_t N = Clusters.size(); in findJumpTables() [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/jit/ |
H A D | mark_for_compilation_pass_test.cc | 75 VLOG(2) << "Clusters:"; in GetClusters() 130 auto clusters = GetClusters(*graph); in TEST() local 131 EXPECT_EQ(4, clusters.size()); in TEST() 132 EXPECT_EQ(clusters["B"], clusters["C"]); in TEST() 133 EXPECT_EQ(clusters["E"], clusters["F"]); in TEST() 134 EXPECT_NE(clusters["B"], clusters["E"]); in TEST() 135 EXPECT_TRUE(clusters.find("A") == clusters.cend()); in TEST() 136 EXPECT_TRUE(clusters.find("D") == clusters.cend()); in TEST() 154 auto clusters = GetClusters(*graph); in TEST() local 156 EXPECT_TRUE(clusters.empty()); in TEST() [all …]
|
/aosp_15_r20/external/cpuinfo/src/arm/linux/ |
H A D | midr.c | 25 /* Description of core clusters configuration in a chipset (identified by series and model number) … 33 /* Number of heterogenous clusters in the CPU package */ 34 uint8_t clusters; member 82 .clusters = 1, 98 .clusters = 2, 114 .clusters = 2, 129 .clusters = 2, 144 .clusters = 2, 159 .clusters = 2, 175 .clusters = 2, [all …]
|
H A D | clusters.c | 22 …* Assigns logical processors to clusters of cores using heuristic based on the typical configurati… 24 * - 5 cores (ARM32 Android only): 2 clusters of 4+1 cores 25 * - 6 cores: 2 clusters of 4+2 cores 26 * - 8 cores: 2 clusters of 4+4 cores 27 * - 10 cores: 3 clusters of 4+4+2 cores 29 * The function must be called after parsing OS-provided information on core clusters. 30 …* Its purpose is to detect clusters of cores when OS-provided information is lacking or incomplete… 33 …* - Exynos 8890 has 8 cores in 4+4 clusters, but only the first cluster of 4 cores is reported, … 38 …* Heuristic assignment of processors to the above pre-defined clusters fails if such assignment wo… 40 …* - Any of the OS-reported processor clusters is different than the corresponding heuristic cluste… [all …]
|
/aosp_15_r20/frameworks/base/tools/powermodel/test/com/android/powermodel/ |
H A D | PowerProfileTest.java | 36 * - CPU clusters with mismatching counts of speeds and coefficients 76 Assert.assertEquals(2, cpu.clusters.length); in testReadGood() 78 Assert.assertEquals(4, cpu.clusters[0].coreCount); in testReadGood() 79 Assert.assertEquals(2.41f, cpu.clusters[0].onMa, EPSILON); in testReadGood() 80 Assert.assertEquals(9, cpu.clusters[0].frequencies.length, EPSILON); in testReadGood() 81 Assert.assertEquals(100000, cpu.clusters[0].frequencies[0].speedHz); in testReadGood() 82 Assert.assertEquals(0.29f, cpu.clusters[0].frequencies[0].onMa, EPSILON); in testReadGood() 83 Assert.assertEquals(303200, cpu.clusters[0].frequencies[1].speedHz); in testReadGood() 84 Assert.assertEquals(0.63f, cpu.clusters[0].frequencies[1].onMa, EPSILON); in testReadGood() 85 Assert.assertEquals(380000, cpu.clusters[0].frequencies[2].speedHz); in testReadGood() [all …]
|
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/stat/clustering/ |
H A D | KMeansPlusPlusClusterer.java | 64 /** Selected strategy for empty clusters. */ 69 * The default strategy for handling empty clusters that may appear during 80 * @param emptyStrategy strategy to use for handling empty clusters that 93 * @param k the number of clusters to split the data into 97 * @return a list of clusters containing the points 99 * of clusters is larger than the number of data points 107 // at first, we have not found any clusters list yet in cluster() 114 // compute a clusters list in cluster() 115 List<Cluster<T>> clusters = cluster(points, k, maxIterationsPerTrial); in cluster() local 119 for (final Cluster<T> cluster : clusters) { in cluster() [all …]
|
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/ml/clustering/ |
H A D | KMeansPlusPlusClusterer.java | 61 /** The number of clusters. */ 70 /** Selected strategy for empty clusters. */ 75 * The default strategy for handling empty clusters that may appear during 80 * @param k the number of clusters to split the data into 88 * The default strategy for handling empty clusters that may appear during 93 * @param k the number of clusters to split the data into 103 * The default strategy for handling empty clusters that may appear during 106 * @param k the number of clusters to split the data into 117 * The default strategy for handling empty clusters that may appear during 120 * @param k the number of clusters to split the data into [all …]
|
H A D | FuzzyKMeansClusterer.java | 53 * <li>k: the number of clusters 54 … <li>fuzziness: determines the level of cluster fuzziness, larger values lead to fuzzier clusters 73 /** The number of clusters. */ 94 /** The list of clusters resulting from the last call to {@link #cluster(Collection)}. */ 95 private List<CentroidCluster<T>> clusters; field in FuzzyKMeansClusterer 102 * @param k the number of clusters to split the data into 113 * @param k the number of clusters to split the data into 129 * @param k the number of clusters to split the data into 156 this.clusters = null; in FuzzyKMeansClusterer() 160 * Return the number of clusters this instance will use. [all …]
|
/aosp_15_r20/external/harfbuzz_ng/src/wasm/graphite/ |
H A D | shape.cc | 112 cluster_t *clusters = (cluster_t *) malloc (length * sizeof (cluster_t)); in shape() local 114 if (!clusters || !gids) in shape() 116 free (clusters); in shape() 121 memset (clusters, 0, sizeof (clusters[0]) * length); in shape() 123 clusters[0].cluster = contents.info[0].cluster; in shape() 134 clusters[0].advance = gr_seg_advance_X(seg) * xscale - curradv; in shape() 137 clusters[0].advance = 0; in shape() 144 while (clusters[ci].base_char > before && ci) in shape() 146 clusters[ci-1].num_chars += clusters[ci].num_chars; in shape() 147 clusters[ci-1].num_glyphs += clusters[ci].num_glyphs; in shape() [all …]
|
/aosp_15_r20/external/googleapis/google/cloud/securitycenter/settings/v1beta1/ |
H A D | securitycenter_settings_service.proto | 43 // folders, projects, and clusters. 76 get: "/settings/v1beta1/{name=projects/*/locations/*/clusters/*/settings}" 79 get: "/settings/v1beta1/{name=projects/*/regions/*/clusters/*/settings}" 82 get: "/settings/v1beta1/{name=projects/*/zones/*/clusters/*/settings}" 102 patch: "/settings/v1beta1/{settings.name=projects/*/locations/*/clusters/*/settings}" 106 patch: "/settings/v1beta1/{settings.name=projects/*/regions/*/clusters/*/settings}" 110 patch: "/settings/v1beta1/{settings.name=projects/*/zones/*/clusters/*/settings}" 140 post: "/settings/v1beta1/{name=projects/*/locations/*/clusters/*/settings}:reset" 144 post: "/settings/v1beta1/{name=projects/*/regions/*/clusters/*/settings}:reset" 148 post: "/settings/v1beta1/{name=projects/*/zones/*/clusters/*/settings}:reset" [all …]
|
/aosp_15_r20/external/google-cloud-java/java-securitycenter-settings/proto-google-cloud-securitycenter-settings-v1beta1/src/main/proto/google/cloud/securitycenter/settings/v1beta1/ |
H A D | securitycenter_settings_service.proto | 43 // folders, projects, and clusters. 76 get: "/settings/v1beta1/{name=projects/*/locations/*/clusters/*/settings}" 79 get: "/settings/v1beta1/{name=projects/*/regions/*/clusters/*/settings}" 82 get: "/settings/v1beta1/{name=projects/*/zones/*/clusters/*/settings}" 102 patch: "/settings/v1beta1/{settings.name=projects/*/locations/*/clusters/*/settings}" 106 patch: "/settings/v1beta1/{settings.name=projects/*/regions/*/clusters/*/settings}" 110 patch: "/settings/v1beta1/{settings.name=projects/*/zones/*/clusters/*/settings}" 140 post: "/settings/v1beta1/{name=projects/*/locations/*/clusters/*/settings}:reset" 144 post: "/settings/v1beta1/{name=projects/*/regions/*/clusters/*/settings}:reset" 148 post: "/settings/v1beta1/{name=projects/*/zones/*/clusters/*/settings}:reset" [all …]
|
/aosp_15_r20/external/skia/modules/skparagraph/tests/ |
H A D | SkShaperJSONWriter.cpp | 43 std::vector<uint32_t>& clusters) { in is_one_to_one() argument 47 if (clusters[clusterIndex] >= lastUtf8Index) { in is_one_to_one() 50 size_t utf8ClusterSize = lastUtf8Index - clusters[clusterIndex]; in is_one_to_one() 51 if (SkUTF::CountUTF8(&utf8[clusters[clusterIndex]], utf8ClusterSize) != 1) { in is_one_to_one() 54 lastUtf8Index = clusters[clusterIndex]; in is_one_to_one() 58 if (clusters.front() <= clusters.back()) { in is_one_to_one() 59 // left-to-right clusters in is_one_to_one() 60 size_t clusterCursor = clusters.size(); in is_one_to_one() 65 // right-to-left clusters in is_one_to_one() 67 while (clusterCursor < clusters.size()) { in is_one_to_one() [all …]
|
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
D | container.v1.json | 115 … "description": "Lists subnetworks that are usable for creating clusters in a project.", 198 "clusters": { object 202 …"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:completeIpRota… 204 "id": "container.projects.locations.clusters.completeIpRotation", 210 …the cluster to complete IP rotation. Specified in the format `projects/*/locations/*/clusters/*`.", 212 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$", 230 "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/clusters", 232 "id": "container.projects.locations.clusters.create", 245 "path": "v1/{+parent}/clusters", 258 … "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}", [all …]
|
D | container.v1beta1.json | 115 … "description": "Lists subnetworks that can be used for creating clusters in a project.", 223 "clusters": { object 227 …"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:completeI… 229 "id": "container.projects.locations.clusters.completeIpRotation", 235 …the cluster to complete IP rotation. Specified in the format `projects/*/locations/*/clusters/*`.", 237 "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$", 255 "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters", 257 "id": "container.projects.locations.clusters.create", 270 "path": "v1beta1/{+parent}/clusters", 283 … "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}", [all …]
|
/aosp_15_r20/external/google-cloud-java/java-container/proto-google-cloud-container-v1beta1/src/main/java/com/google/container/v1beta1/ |
H A D | ListClustersResponse.java | 79 * A list of clusters in the project in the specified zone, or 83 * <code>repeated .google.container.v1beta1.Cluster clusters = 1;</code> 93 * A list of clusters in the project in the specified zone, or 97 * <code>repeated .google.container.v1beta1.Cluster clusters = 1;</code> 108 * A list of clusters in the project in the specified zone, or 112 * <code>repeated .google.container.v1beta1.Cluster clusters = 1;</code> 122 * A list of clusters in the project in the specified zone, or 126 * <code>repeated .google.container.v1beta1.Cluster clusters = 1;</code> 136 * A list of clusters in the project in the specified zone, or 140 * <code>repeated .google.container.v1beta1.Cluster clusters = 1;</code> [all …]
|
/aosp_15_r20/external/google-cloud-java/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ |
H A D | ListClustersResponse.java | 79 * A list of clusters in the project in the specified zone, or 83 * <code>repeated .google.container.v1.Cluster clusters = 1;</code> 93 * A list of clusters in the project in the specified zone, or 97 * <code>repeated .google.container.v1.Cluster clusters = 1;</code> 108 * A list of clusters in the project in the specified zone, or 112 * <code>repeated .google.container.v1.Cluster clusters = 1;</code> 122 * A list of clusters in the project in the specified zone, or 126 * <code>repeated .google.container.v1.Cluster clusters = 1;</code> 136 * A list of clusters in the project in the specified zone, or 140 * <code>repeated .google.container.v1.Cluster clusters = 1;</code> [all …]
|
/aosp_15_r20/external/mtools/ |
H A D | fat_size_calculation.tex | 28 figure out fat size and number of clusters. Due to the way that 30 have a FAT that is larger than need to be to accommodate the clusters 47 Number of clusters on the disk\\ 91 The space taken up by all clusters together, plus the space taken by 92 descriptors for clusters 0 and 1 ($2*nfats*fatNybls$) should be less 97 area). Thus, an {\em upper bound} for the number of clusters is as 138 or equal} to what would be needed for the data area of the clusters 139 (including fractional clusters), which is good, as we may have under 140 no circumstances {\em more} clusters in the data area than in the FAT. 142 size on a {\em fractional} number of clusters, rather than a rounded [all …]
|
/aosp_15_r20/external/harfbuzz_ng/src/ |
H A D | hb-graphite2.cc | 321 ALLOCATE_ARRAY (hb_graphite2_cluster_t, clusters, buffer->len); in _hb_graphite2_shape() 326 hb_memset (clusters, 0, sizeof (clusters[0]) * buffer->len); in _hb_graphite2_shape() 329 clusters[0].cluster = buffer->info[0].cluster; in _hb_graphite2_shape() 338 clusters[0].advance = gr_seg_advance_X(seg) * xscale - curradv; in _hb_graphite2_shape() 341 clusters[0].advance = 0; in _hb_graphite2_shape() 348 while (clusters[ci].base_char > before && ci) in _hb_graphite2_shape() 350 clusters[ci-1].num_chars += clusters[ci].num_chars; in _hb_graphite2_shape() 351 clusters[ci-1].num_glyphs += clusters[ci].num_glyphs; in _hb_graphite2_shape() 352 clusters[ci-1].advance += clusters[ci].advance; in _hb_graphite2_shape() 356 …if (gr_slot_can_insert_before (is) && clusters[ci].num_chars && before >= clusters[ci].base_char +… in _hb_graphite2_shape() [all …]
|
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/ |
H A D | KMeansPlusPlusClusterer.java | 58 /** Selected strategy for empty clusters. */ 63 * The default strategy for handling empty clusters that may appear during 74 * @param emptyStrategy strategy to use for handling empty clusters that 87 * @param k the number of clusters to split the data into 90 * @return a list of clusters containing the points 94 // create the initial clusters in cluster() 95 List<Cluster<T>> clusters = chooseInitialCenters(points, k, random); in cluster() local 96 assignPointsToClusters(clusters, points); in cluster() 103 for (final Cluster<T> cluster : clusters) { in cluster() 108 newCenter = getPointFromLargestVarianceCluster(clusters); in cluster() [all …]
|
/aosp_15_r20/external/google-cloud-java/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/ |
H A D | ListClustersResponse.java | 17 // source: google/cloud/dataproc/v1/clusters.proto 25 * The list of all clusters in a project. 79 * Output only. The clusters in the project. 83 …* repeated .google.cloud.dataproc.v1.Cluster clusters = 1 [(.google.api.field_behavior) = OUTPUT_O… 94 * Output only. The clusters in the project. 98 …* repeated .google.cloud.dataproc.v1.Cluster clusters = 1 [(.google.api.field_behavior) = OUTPUT_O… 110 * Output only. The clusters in the project. 114 …* repeated .google.cloud.dataproc.v1.Cluster clusters = 1 [(.google.api.field_behavior) = OUTPUT_O… 125 * Output only. The clusters in the project. 129 …* repeated .google.cloud.dataproc.v1.Cluster clusters = 1 [(.google.api.field_behavior) = OUTPUT_O… [all …]
|
/aosp_15_r20/external/google-cloud-java/java-distributedcloudedge/proto-google-cloud-distributedcloudedge-v1/src/main/java/com/google/cloud/edgecontainer/v1/ |
H A D | ListClustersResponse.java | 25 * List of clusters in a location. 80 * Clusters in the location. 83 * <code>repeated .google.cloud.edgecontainer.v1.Cluster clusters = 1;</code> 93 * Clusters in the location. 96 * <code>repeated .google.cloud.edgecontainer.v1.Cluster clusters = 1;</code> 107 * Clusters in the location. 110 * <code>repeated .google.cloud.edgecontainer.v1.Cluster clusters = 1;</code> 120 * Clusters in the location. 123 * <code>repeated .google.cloud.edgecontainer.v1.Cluster clusters = 1;</code> 133 * Clusters in the location. [all …]
|
/aosp_15_r20/external/google-cloud-java/java-vmwareengine/proto-google-cloud-vmwareengine-v1/src/main/java/com/google/cloud/vmwareengine/v1/ |
H A D | ListClustersResponse.java | 81 * A list of private cloud clusters. 84 * <code>repeated .google.cloud.vmwareengine.v1.Cluster clusters = 1;</code> 94 * A list of private cloud clusters. 97 * <code>repeated .google.cloud.vmwareengine.v1.Cluster clusters = 1;</code> 108 * A list of private cloud clusters. 111 * <code>repeated .google.cloud.vmwareengine.v1.Cluster clusters = 1;</code> 121 * A list of private cloud clusters. 124 * <code>repeated .google.cloud.vmwareengine.v1.Cluster clusters = 1;</code> 134 * A list of private cloud clusters. 137 * <code>repeated .google.cloud.vmwareengine.v1.Cluster clusters = 1;</code> [all …]
|
/aosp_15_r20/external/harfbuzz_ng/docs/ |
H A D | usermanual-clusters.xml | 7 <chapter id="clusters"> 8 <title>Clusters</title> 9 <section id="clusters-and-shaping"> 10 <title>Clusters and shaping</title> 15 own. Other clusters correspond to longer subsequences of the 26 The definitions of the two terms are similar. However, clusters 41 HarfBuzz is concerned with clusters, <emphasis>not</emphasis> 52 clusters; HarfBuzz tracks the changes to ensure that no clusters 103 <section id="working-with-harfbuzz-clusters"> 104 <title>Working with HarfBuzz clusters</title> [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/ |
H A D | clustering_ops.py | 49 CLUSTERS_VAR_NAME = 'clusters' 95 num_clusters: An integer tensor specifying the number of clusters. This 97 initial_clusters: Specifies the clusters used during initialization. One 152 def _distance_graph(cls, inputs, clusters, distance_metric): argument 157 clusters: cluster Tensor. 167 return cls._compute_euclidean_distance(inputs, clusters) 170 inputs, clusters, inputs_normalized=True) 175 def _compute_euclidean_distance(cls, inputs, clusters): argument 180 clusters: cluster Tensor. 193 2 * math_ops.matmul(inp, clusters, transpose_b=True) + [all …]
|