Lines Matching full:clusters

68  *  -sockets/clusters/cores/threads
74 .has_clusters = hc, .clusters = c, \
99 * -drawers/books/sockets/dies/clusters/modules/cores/threads
108 .has_clusters = true, .clusters = f, \
340 * -smp 8,drawers=1,books=1,sockets=2,dies=1,clusters=1,modules=1,\
361 /* config: -smp 2,clusters=2 */
363 .expect_error = "clusters > 1 not supported by this machine's CPU topology",
478 /* config: -smp 16,sockets=2,clusters=2,cores=4,threads=2,maxcpus=16 */
482 "sockets (2) * clusters (2) * cores (4) * threads (2) "
485 /* config: -smp 34,sockets=2,clusters=2,cores=4,threads=2,maxcpus=32 */
489 "sockets (2) * clusters (2) * cores (4) * threads (2) "
565 * clusters=2,modules=3,cores=7,threads=2,\
572 "clusters (2) * modules (3) * cores (7) * threads (2) "
577 * clusters=2,modules=3,cores=2,threads=2,
585 "dies (4) * clusters (2) * modules (3) * "
591 * clusters=2,modules=3,cores=3,threads=3,\
605 * clusters=1,modules=1,cores=1,threads=1,\
615 * clusters=1,modules=1,cores=1,threads=1,\
625 * clusters=1,modules=1,cores=1,threads=1,\
635 * clusters=1,modules=1,cores=1,threads=1,
645 * clusters=1,modules=1,cores=1,threads=1,\
653 * Test "clusters=0".
655 * clusters=0,modules=1,cores=1,threads=1,\
665 * clusters=1,modules=0,cores=1,threads=1,\
675 * clusters=1,modules=1,cores=0,threads=1,
685 * clusters=1,modules=1,cores=1,threads=0,\
695 * clusters=1,modules=1,cores=1,threads=1,\
713 " .has_clusters = %5s, clusters = %" PRId64 ",\n" in smp_config_to_string()
724 config->has_clusters ? "true" : "false", config->clusters, in smp_config_to_string()
765 " .clusters = %u,\n" in cpu_topology_to_string()
775 topo->sockets, topo->dies, topo->clusters, in cpu_topology_to_string()
819 (ms->smp.clusters == expect_topo->clusters) && in check_parse()
912 data->expect_prefer_sockets.clusters = 1; in unsupported_params_init()
913 data->expect_prefer_cores.clusters = 1; in unsupported_params_init()
1221 /* when clusters parameter is omitted, it will be set as 1 */ in test_with_clusters()
1222 data.expect_prefer_sockets.clusters = 1; in test_with_clusters()
1223 data.expect_prefer_cores.clusters = 1; in test_with_clusters()
1227 /* when clusters parameter is specified */ in test_with_clusters()
1229 data.config.clusters = num_clusters; in test_with_clusters()
1237 data.expect_prefer_sockets.clusters = num_clusters; in test_with_clusters()
1240 data.expect_prefer_cores.clusters = num_clusters; in test_with_clusters()
1425 unsigned int drawers, books, dies, clusters, modules, multiplier; in test_full_topo() local
1431 clusters = 3; in test_full_topo()
1434 multiplier = drawers * books * dies * clusters * modules; in test_full_topo()
1440 * when drawers, books, dies, clusters and modules parameters are in test_full_topo()
1446 data.expect_prefer_sockets.clusters = 1; in test_full_topo()
1451 data.expect_prefer_cores.clusters = 1; in test_full_topo()
1457 * when drawers, books, dies, clusters and modules parameters in test_full_topo()
1467 data.config.clusters = clusters; in test_full_topo()
1481 data.expect_prefer_sockets.clusters = clusters; in test_full_topo()
1489 data.expect_prefer_cores.clusters = clusters; in test_full_topo()
1543 .name = MACHINE_TYPE_NAME("smp-with-clusters"),
1589 MACHINE_TYPE_NAME("smp-with-clusters"), in DEFINE_TYPES()