/* * Copyright © 2010-2019 Inria. All rights reserved. * Copyright © 2011-2012 Université Bordeaux * Copyright © 2011 Cisco Systems, Inc. All rights reserved. * See COPYING in top-level directory. */ #include "private/autogen/config.h" #include "hwloc.h" #include "private/private.h" #include "private/debug.h" #include "private/misc.h" #include #include static struct hwloc_internal_distances_s * hwloc__internal_distances_from_public(hwloc_topology_t topology, struct hwloc_distances_s *distances); /****************************************************** * Global init, prepare, destroy, dup */ /* called during topology init() */ void hwloc_internal_distances_init(struct hwloc_topology *topology) { topology->first_dist = topology->last_dist = NULL; topology->next_dist_id = 0; } /* called at the beginning of load() */ void hwloc_internal_distances_prepare(struct hwloc_topology *topology) { char *env; hwloc_localeswitch_declare; topology->grouping = 1; if (topology->type_filter[HWLOC_OBJ_GROUP] == HWLOC_TYPE_FILTER_KEEP_NONE) topology->grouping = 0; env = getenv("HWLOC_GROUPING"); if (env && !atoi(env)) topology->grouping = 0; if (topology->grouping) { topology->grouping_next_subkind = 0; HWLOC_BUILD_ASSERT(sizeof(topology->grouping_accuracies)/sizeof(*topology->grouping_accuracies) == 5); topology->grouping_accuracies[0] = 0.0f; topology->grouping_accuracies[1] = 0.01f; topology->grouping_accuracies[2] = 0.02f; topology->grouping_accuracies[3] = 0.05f; topology->grouping_accuracies[4] = 0.1f; topology->grouping_nbaccuracies = 5; hwloc_localeswitch_init(); env = getenv("HWLOC_GROUPING_ACCURACY"); if (!env) { /* only use 0.0 */ topology->grouping_nbaccuracies = 1; } else if (strcmp(env, "try")) { /* use the given value */ topology->grouping_nbaccuracies = 1; topology->grouping_accuracies[0] = (float) atof(env); } /* otherwise try all values */ hwloc_localeswitch_fini(); topology->grouping_verbose = 0; env = getenv("HWLOC_GROUPING_VERBOSE"); if (env) topology->grouping_verbose = atoi(env); } } static void hwloc_internal_distances_free(struct hwloc_internal_distances_s *dist) { free(dist->name); free(dist->different_types); free(dist->indexes); free(dist->objs); free(dist->values); free(dist); } /* called during topology destroy */ void hwloc_internal_distances_destroy(struct hwloc_topology * topology) { struct hwloc_internal_distances_s *dist, *next = topology->first_dist; while ((dist = next) != NULL) { next = dist->next; hwloc_internal_distances_free(dist); } topology->first_dist = topology->last_dist = NULL; } static int hwloc_internal_distances_dup_one(struct hwloc_topology *new, struct hwloc_internal_distances_s *olddist) { struct hwloc_tma *tma = new->tma; struct hwloc_internal_distances_s *newdist; unsigned nbobjs = olddist->nbobjs; newdist = hwloc_tma_malloc(tma, sizeof(*newdist)); if (!newdist) return -1; if (olddist->name) { newdist->name = hwloc_tma_strdup(tma, olddist->name); if (!newdist->name) { assert(!tma || !tma->dontfree); /* this tma cannot fail to allocate */ hwloc_internal_distances_free(newdist); return -1; } } else { newdist->name = NULL; } if (olddist->different_types) { newdist->different_types = hwloc_tma_malloc(tma, nbobjs * sizeof(*newdist->different_types)); if (!newdist->different_types) { assert(!tma || !tma->dontfree); /* this tma cannot fail to allocate */ hwloc_internal_distances_free(newdist); return -1; } memcpy(newdist->different_types, olddist->different_types, nbobjs * sizeof(*newdist->different_types)); } else newdist->different_types = NULL; newdist->unique_type = olddist->unique_type; newdist->nbobjs = nbobjs; newdist->kind = olddist->kind; newdist->id = olddist->id; newdist->indexes = hwloc_tma_malloc(tma, nbobjs * sizeof(*newdist->indexes)); newdist->objs = hwloc_tma_calloc(tma, nbobjs * sizeof(*newdist->objs)); newdist->iflags = olddist->iflags & ~HWLOC_INTERNAL_DIST_FLAG_OBJS_VALID; /* must be revalidated after dup() */ newdist->values = hwloc_tma_malloc(tma, nbobjs*nbobjs * sizeof(*newdist->values)); if (!newdist->indexes || !newdist->objs || !newdist->values) { assert(!tma || !tma->dontfree); /* this tma cannot fail to allocate */ hwloc_internal_distances_free(newdist); return -1; } memcpy(newdist->indexes, olddist->indexes, nbobjs * sizeof(*newdist->indexes)); memcpy(newdist->values, olddist->values, nbobjs*nbobjs * sizeof(*newdist->values)); newdist->next = NULL; newdist->prev = new->last_dist; if (new->last_dist) new->last_dist->next = newdist; else new->first_dist = newdist; new->last_dist = newdist; return 0; } /* This function may be called with topology->tma set, it cannot free() or realloc() */ int hwloc_internal_distances_dup(struct hwloc_topology *new, struct hwloc_topology *old) { struct hwloc_internal_distances_s *olddist; int err; new->next_dist_id = old->next_dist_id; for(olddist = old->first_dist; olddist; olddist = olddist->next) { err = hwloc_internal_distances_dup_one(new, olddist); if (err < 0) return err; } return 0; } /****************************************************** * Remove distances from the topology */ int hwloc_distances_remove(hwloc_topology_t topology) { if (!topology->is_loaded) { errno = EINVAL; return -1; } if (topology->adopted_shmem_addr) { errno = EPERM; return -1; } hwloc_internal_distances_destroy(topology); return 0; } int hwloc_distances_remove_by_depth(hwloc_topology_t topology, int depth) { struct hwloc_internal_distances_s *dist, *next; hwloc_obj_type_t type; if (!topology->is_loaded) { errno = EINVAL; return -1; } if (topology->adopted_shmem_addr) { errno = EPERM; return -1; } /* switch back to types since we don't support groups for now */ type = hwloc_get_depth_type(topology, depth); if (type == (hwloc_obj_type_t)-1) { errno = EINVAL; return -1; } next = topology->first_dist; while ((dist = next) != NULL) { next = dist->next; if (dist->unique_type == type) { if (next) next->prev = dist->prev; else topology->last_dist = dist->prev; if (dist->prev) dist->prev->next = dist->next; else topology->first_dist = dist->next; hwloc_internal_distances_free(dist); } } return 0; } int hwloc_distances_release_remove(hwloc_topology_t topology, struct hwloc_distances_s *distances) { struct hwloc_internal_distances_s *dist = hwloc__internal_distances_from_public(topology, distances); if (!dist) { errno = EINVAL; return -1; } if (dist->prev) dist->prev->next = dist->next; else topology->first_dist = dist->next; if (dist->next) dist->next->prev = dist->prev; else topology->last_dist = dist->prev; hwloc_internal_distances_free(dist); hwloc_distances_release(topology, distances); return 0; } /****************************************************** * Add distances to the topology */ static void hwloc__groups_by_distances(struct hwloc_topology *topology, unsigned nbobjs, struct hwloc_obj **objs, uint64_t *values, unsigned long kind, unsigned nbaccuracies, float *accuracies, int needcheck); /* insert a distance matrix in the topology. * the caller gives us the distances and objs pointers, we'll free them later. */ static int hwloc_internal_distances__add(hwloc_topology_t topology, const char *name, hwloc_obj_type_t unique_type, hwloc_obj_type_t *different_types, unsigned nbobjs, hwloc_obj_t *objs, uint64_t *indexes, uint64_t *values, unsigned long kind, unsigned iflags) { struct hwloc_internal_distances_s *dist; if (different_types) { kind |= HWLOC_DISTANCES_KIND_HETEROGENEOUS_TYPES; /* the user isn't forced to give it */ } else if (kind & HWLOC_DISTANCES_KIND_HETEROGENEOUS_TYPES) { errno = EINVAL; goto err; } dist = calloc(1, sizeof(*dist)); if (!dist) goto err; if (name) dist->name = strdup(name); /* ignore failure */ dist->unique_type = unique_type; dist->different_types = different_types; dist->nbobjs = nbobjs; dist->kind = kind; dist->iflags = iflags; assert(!!(iflags & HWLOC_INTERNAL_DIST_FLAG_OBJS_VALID) == !!objs); if (!objs) { assert(indexes); /* we only have indexes, we'll refresh objs from there */ dist->indexes = indexes; dist->objs = calloc(nbobjs, sizeof(hwloc_obj_t)); if (!dist->objs) goto err_with_dist; } else { unsigned i; assert(!indexes); /* we only have objs, generate the indexes arrays so that we can refresh objs later */ dist->objs = objs; dist->indexes = malloc(nbobjs * sizeof(*dist->indexes)); if (!dist->indexes) goto err_with_dist; if (HWLOC_DIST_TYPE_USE_OS_INDEX(dist->unique_type)) { for(i=0; iindexes[i] = objs[i]->os_index; } else { for(i=0; iindexes[i] = objs[i]->gp_index; } } dist->values = values; dist->id = topology->next_dist_id++; if (topology->last_dist) topology->last_dist->next = dist; else topology->first_dist = dist; dist->prev = topology->last_dist; dist->next = NULL; topology->last_dist = dist; return 0; err_with_dist: if (name) free(dist->name); free(dist); err: free(different_types); free(objs); free(indexes); free(values); return -1; } int hwloc_internal_distances_add_by_index(hwloc_topology_t topology, const char *name, hwloc_obj_type_t unique_type, hwloc_obj_type_t *different_types, unsigned nbobjs, uint64_t *indexes, uint64_t *values, unsigned long kind, unsigned long flags) { unsigned iflags = 0; /* objs not valid */ if (nbobjs < 2) { errno = EINVAL; goto err; } /* cannot group without objects, * and we don't group from XML anyway since the hwloc that generated the XML should have grouped already. */ if (flags & HWLOC_DISTANCES_ADD_FLAG_GROUP) { errno = EINVAL; goto err; } return hwloc_internal_distances__add(topology, name, unique_type, different_types, nbobjs, NULL, indexes, values, kind, iflags); err: free(indexes); free(values); free(different_types); return -1; } static void hwloc_internal_distances_restrict(hwloc_obj_t *objs, uint64_t *indexes, uint64_t *values, unsigned nbobjs, unsigned disappeared); int hwloc_internal_distances_add(hwloc_topology_t topology, const char *name, unsigned nbobjs, hwloc_obj_t *objs, uint64_t *values, unsigned long kind, unsigned long flags) { hwloc_obj_type_t unique_type, *different_types; unsigned i, disappeared = 0; unsigned iflags = HWLOC_INTERNAL_DIST_FLAG_OBJS_VALID; if (nbobjs < 2) { errno = EINVAL; goto err; } /* is there any NULL object? (useful in case of problem during insert in backends) */ for(i=0; itype; for(i=1; itype != unique_type) { unique_type = HWLOC_OBJ_TYPE_NONE; break; } if (unique_type == HWLOC_OBJ_TYPE_NONE) { /* heterogeneous types */ different_types = malloc(nbobjs * sizeof(*different_types)); if (!different_types) goto err; for(i=0; itype; } else { /* homogeneous types */ different_types = NULL; } if (topology->grouping && (flags & HWLOC_DISTANCES_ADD_FLAG_GROUP) && !different_types) { float full_accuracy = 0.f; float *accuracies; unsigned nbaccuracies; if (flags & HWLOC_DISTANCES_ADD_FLAG_GROUP_INACCURATE) { accuracies = topology->grouping_accuracies; nbaccuracies = topology->grouping_nbaccuracies; } else { accuracies = &full_accuracy; nbaccuracies = 1; } if (topology->grouping_verbose) { unsigned j; int gp = !HWLOC_DIST_TYPE_USE_OS_INDEX(unique_type); fprintf(stderr, "Trying to group objects using distance matrix:\n"); fprintf(stderr, "%s", gp ? "gp_index" : "os_index"); for(j=0; jgp_index : objs[j]->os_index)); fprintf(stderr, "\n"); for(i=0; igp_index : objs[i]->os_index)); for(j=0; jis_loaded) { errno = EINVAL; return -1; } if (topology->adopted_shmem_addr) { errno = EPERM; return -1; } if ((kind & ~HWLOC_DISTANCES_KIND_ALL) || hwloc_weight_long(kind & HWLOC_DISTANCES_KIND_FROM_ALL) != 1 || hwloc_weight_long(kind & HWLOC_DISTANCES_KIND_MEANS_ALL) != 1 || (flags & ~HWLOC_DISTANCES_ADD_FLAG_ALL)) { errno = EINVAL; return -1; } /* no strict need to check for duplicates, things shouldn't break */ for(i=1; igp_index == gp_index) return obj; obj = obj->next_cousin; } return NULL; } static hwloc_obj_t hwloc_find_obj_by_type_and_gp_index(hwloc_topology_t topology, hwloc_obj_type_t type, uint64_t gp_index) { int depth = hwloc_get_type_depth(topology, type); if (depth == HWLOC_TYPE_DEPTH_UNKNOWN) return NULL; if (depth == HWLOC_TYPE_DEPTH_MULTIPLE) { int topodepth = hwloc_topology_get_depth(topology); for(depth=0; depthunique_type; hwloc_obj_type_t *different_types = dist->different_types; unsigned nbobjs = dist->nbobjs; hwloc_obj_t *objs = dist->objs; uint64_t *indexes = dist->indexes; unsigned disappeared = 0; unsigned i; if (dist->iflags & HWLOC_INTERNAL_DIST_FLAG_OBJS_VALID) return 0; for(i=0; iindexes, dist->values, nbobjs, disappeared); dist->nbobjs -= disappeared; } dist->iflags |= HWLOC_INTERNAL_DIST_FLAG_OBJS_VALID; return 0; } /* This function may be called with topology->tma set, it cannot free() or realloc() */ void hwloc_internal_distances_refresh(hwloc_topology_t topology) { struct hwloc_internal_distances_s *dist, *next; for(dist = topology->first_dist; dist; dist = next) { next = dist->next; if (hwloc_internal_distances_refresh_one(topology, dist) < 0) { assert(!topology->tma || !topology->tma->dontfree); /* this tma cannot fail to allocate */ if (dist->prev) dist->prev->next = next; else topology->first_dist = next; if (next) next->prev = dist->prev; else topology->last_dist = dist->prev; hwloc_internal_distances_free(dist); continue; } } } void hwloc_internal_distances_invalidate_cached_objs(hwloc_topology_t topology) { struct hwloc_internal_distances_s *dist; for(dist = topology->first_dist; dist; dist = dist->next) dist->iflags &= ~HWLOC_INTERNAL_DIST_FLAG_OBJS_VALID; } /****************************************************** * User API for getting distances */ /* what we actually allocate for user queries, even if we only * return the distances part of it. */ struct hwloc_distances_container_s { unsigned id; struct hwloc_distances_s distances; }; #define HWLOC_DISTANCES_CONTAINER_OFFSET ((char*)&((struct hwloc_distances_container_s*)NULL)->distances - (char*)NULL) #define HWLOC_DISTANCES_CONTAINER(_d) (struct hwloc_distances_container_s *) ( ((char*)_d) - HWLOC_DISTANCES_CONTAINER_OFFSET ) static struct hwloc_internal_distances_s * hwloc__internal_distances_from_public(hwloc_topology_t topology, struct hwloc_distances_s *distances) { struct hwloc_distances_container_s *cont = HWLOC_DISTANCES_CONTAINER(distances); struct hwloc_internal_distances_s *dist; for(dist = topology->first_dist; dist; dist = dist->next) if (dist->id == cont->id) return dist; return NULL; } void hwloc_distances_release(hwloc_topology_t topology __hwloc_attribute_unused, struct hwloc_distances_s *distances) { struct hwloc_distances_container_s *cont = HWLOC_DISTANCES_CONTAINER(distances); free(distances->values); free(distances->objs); free(cont); } const char * hwloc_distances_get_name(hwloc_topology_t topology, struct hwloc_distances_s *distances) { struct hwloc_internal_distances_s *dist = hwloc__internal_distances_from_public(topology, distances); return dist ? dist->name : NULL; } static struct hwloc_distances_s * hwloc_distances_get_one(hwloc_topology_t topology __hwloc_attribute_unused, struct hwloc_internal_distances_s *dist) { struct hwloc_distances_container_s *cont; struct hwloc_distances_s *distances; unsigned nbobjs; cont = malloc(sizeof(*cont)); if (!cont) return NULL; distances = &cont->distances; nbobjs = distances->nbobjs = dist->nbobjs; distances->objs = malloc(nbobjs * sizeof(hwloc_obj_t)); if (!distances->objs) goto out; memcpy(distances->objs, dist->objs, nbobjs * sizeof(hwloc_obj_t)); distances->values = malloc(nbobjs * nbobjs * sizeof(*distances->values)); if (!distances->values) goto out_with_objs; memcpy(distances->values, dist->values, nbobjs*nbobjs*sizeof(*distances->values)); distances->kind = dist->kind; cont->id = dist->id; return distances; out_with_objs: free(distances->objs); out: free(cont); return NULL; } static int hwloc__distances_get(hwloc_topology_t topology, const char *name, hwloc_obj_type_t type, unsigned *nrp, struct hwloc_distances_s **distancesp, unsigned long kind, unsigned long flags __hwloc_attribute_unused) { struct hwloc_internal_distances_s *dist; unsigned nr = 0, i; /* We could return the internal arrays (as const), * but it would require to prevent removing distances between get() and free(). * Not performance critical anyway. */ if (flags) { errno = EINVAL; return -1; } /* we could refresh only the distances that match, but we won't have many distances anyway, * so performance is totally negligible. * * This is also useful in multithreaded apps that modify the topology. * They can call any valid hwloc_distances_get() to force a refresh after * changing the topology, so that future concurrent get() won't cause * concurrent refresh(). */ hwloc_internal_distances_refresh(topology); for(dist = topology->first_dist; dist; dist = dist->next) { unsigned long kind_from = kind & HWLOC_DISTANCES_KIND_FROM_ALL; unsigned long kind_means = kind & HWLOC_DISTANCES_KIND_MEANS_ALL; if (name && (!dist->name || strcmp(name, dist->name))) continue; if (type != HWLOC_OBJ_TYPE_NONE && type != dist->unique_type) continue; if (kind_from && !(kind_from & dist->kind)) continue; if (kind_means && !(kind_means & dist->kind)) continue; if (nr < *nrp) { struct hwloc_distances_s *distances = hwloc_distances_get_one(topology, dist); if (!distances) goto error; distancesp[nr] = distances; } nr++; } for(i=nr; i<*nrp; i++) distancesp[i] = NULL; *nrp = nr; return 0; error: for(i=0; iis_loaded) { errno = EINVAL; return -1; } return hwloc__distances_get(topology, NULL, HWLOC_OBJ_TYPE_NONE, nrp, distancesp, kind, flags); } int hwloc_distances_get_by_depth(hwloc_topology_t topology, int depth, unsigned *nrp, struct hwloc_distances_s **distancesp, unsigned long kind, unsigned long flags) { hwloc_obj_type_t type; if (flags || !topology->is_loaded) { errno = EINVAL; return -1; } /* FIXME: passing the depth of a group level may return group distances at a different depth */ type = hwloc_get_depth_type(topology, depth); if (type == (hwloc_obj_type_t)-1) { errno = EINVAL; return -1; } return hwloc__distances_get(topology, NULL, type, nrp, distancesp, kind, flags); } int hwloc_distances_get_by_name(hwloc_topology_t topology, const char *name, unsigned *nrp, struct hwloc_distances_s **distancesp, unsigned long flags) { if (flags || !topology->is_loaded) { errno = EINVAL; return -1; } return hwloc__distances_get(topology, name, HWLOC_OBJ_TYPE_NONE, nrp, distancesp, HWLOC_DISTANCES_KIND_ALL, flags); } int hwloc_distances_get_by_type(hwloc_topology_t topology, hwloc_obj_type_t type, unsigned *nrp, struct hwloc_distances_s **distancesp, unsigned long kind, unsigned long flags) { if (flags || !topology->is_loaded) { errno = EINVAL; return -1; } return hwloc__distances_get(topology, NULL, type, nrp, distancesp, kind, flags); } /****************************************************** * Grouping objects according to distances */ static void hwloc_report_user_distance_error(const char *msg, int line) { static int reported = 0; if (!reported && !hwloc_hide_errors()) { fprintf(stderr, "****************************************************************************\n"); fprintf(stderr, "* hwloc %s was given invalid distances by the user.\n", HWLOC_VERSION); fprintf(stderr, "*\n"); fprintf(stderr, "* %s\n", msg); fprintf(stderr, "* Error occurred in topology.c line %d\n", line); fprintf(stderr, "*\n"); fprintf(stderr, "* Please make sure that distances given through the programming API\n"); fprintf(stderr, "* do not contradict any other topology information.\n"); fprintf(stderr, "* \n"); fprintf(stderr, "* hwloc will now ignore this invalid topology information and continue.\n"); fprintf(stderr, "****************************************************************************\n"); reported = 1; } } static int hwloc_compare_values(uint64_t a, uint64_t b, float accuracy) { if (accuracy != 0.0f && fabsf((float)a-(float)b) < (float)a * accuracy) return 0; return a < b ? -1 : a == b ? 0 : 1; } /* * Place objects in groups if they are in a transitive graph of minimal values. * Return how many groups were created, or 0 if some incomplete distance graphs were found. */ static unsigned hwloc__find_groups_by_min_distance(unsigned nbobjs, uint64_t *_values, float accuracy, unsigned *groupids, int verbose) { uint64_t min_distance = UINT64_MAX; unsigned groupid = 1; unsigned i,j,k; unsigned skipped = 0; #define VALUE(i, j) _values[(i) * nbobjs + (j)] memset(groupids, 0, nbobjs*sizeof(*groupids)); /* find the minimal distance */ for(i=0; igrouping_verbose; hwloc_obj_t *groupobjs; unsigned * groupsizes; uint64_t *groupvalues; unsigned failed = 0; if (nbobjs <= 2) return; if (!(kind & HWLOC_DISTANCES_KIND_MEANS_LATENCY)) /* don't know use to use those for grouping */ /* TODO hwloc__find_groups_by_max_distance() for bandwidth */ return; groupids = malloc(nbobjs * sizeof(*groupids)); if (!groupids) return; for(i=0; itype), accuracies[i]); if (needcheck && hwloc__check_grouping_matrix(nbobjs, _values, accuracies[i], verbose) < 0) continue; nbgroups = hwloc__find_groups_by_min_distance(nbobjs, _values, accuracies[i], groupids, verbose); if (nbgroups) break; } if (!nbgroups) goto out_with_groupids; groupobjs = malloc(nbgroups * sizeof(*groupobjs)); groupsizes = malloc(nbgroups * sizeof(*groupsizes)); groupvalues = malloc(nbgroups * nbgroups * sizeof(*groupvalues)); if (!groupobjs || !groupsizes || !groupvalues) goto out_with_groups; /* create new Group objects and record their size */ memset(&(groupsizes[0]), 0, sizeof(groupsizes[0]) * nbgroups); for(i=0; icpuset = hwloc_bitmap_alloc(); group_obj->attr->group.kind = HWLOC_GROUP_KIND_DISTANCE; group_obj->attr->group.subkind = topology->grouping_next_subkind; for (j=0; jcpuset); res_obj = hwloc__insert_object_by_cpuset(topology, NULL, group_obj, (kind & HWLOC_DISTANCES_KIND_FROM_USER) ? hwloc_report_user_distance_error : hwloc_report_os_error); /* res_obj may be NULL on failure to insert. */ if (!res_obj) failed++; /* or it may be different from groupobjs if we got groups from XML import before grouping */ groupobjs[i] = res_obj; } topology->grouping_next_subkind++; if (failed) /* don't try to group above if we got a NULL group here, just keep this incomplete level */ goto out_with_groups; /* factorize values */ memset(&(groupvalues[0]), 0, sizeof(groupvalues[0]) * nbgroups * nbgroups); #undef VALUE #define VALUE(i, j) _values[(i) * nbobjs + (j)] #define GROUP_VALUE(i, j) groupvalues[(i) * nbgroups + (j)] for(i=0; i