Detailed Description

The hwloc_bitmap_t type represents a set of objects, typically OS processors -- which may actually be hardware threads (represented by hwloc_cpuset_t, which is a typedef for hwloc_bitmap_t) -- or memory nodes (represented by hwloc_nodeset_t, which is also a typedef for hwloc_bitmap_t).

Both CPU and node sets are always indexed by OS physical number.

Note:

CPU sets and nodesets are described in Object Sets (hwloc_cpuset_t and hwloc_nodeset_t).

A bitmap may be of infinite size.

Note:

Several examples of using the bitmap API are available under the doc/examples/ directory in the source tree. Regression tests such as tests/hwloc_bitmap*.c also make intensive use of this API.

Macro Definition Documentation

#define hwloc_bitmap_foreach_begin(id, bitmap)

Loop macro iterating on bitmap bitmap. index is the loop variable; it should be an unsigned int. The first iteration will set index to the lowest index in the bitmap. Successive iterations will iterate through, in order, all remaining indexes that in the bitmap. To be specific: each iteration will return a value for index such that hwloc_bitmap_isset(bitmap, index) is true.

The assert prevents the loop from being infinite if the bitmap is infinite.

#define hwloc_bitmap_foreach_end()

Value:

}  } while (0)

Typedef Documentation

typedef struct hwloc_bitmap_s* \fBhwloc_bitmap_t\fP

Set of bits represented as an opaque pointer to an internal bitmap.

typedef const struct hwloc_bitmap_s* \fBhwloc_const_bitmap_t\fP

a non-modifiable hwloc_bitmap_t

Function Documentation

void hwloc_bitmap_allbut (\fBhwloc_bitmap_t\fPbitmap, unsignedid)

Fill the bitmap and clear the index id.

\fBhwloc_bitmap_t\fP hwloc_bitmap_alloc (void)

Allocate a new empty bitmap.

Returns:

A valid bitmap or NULL.

The bitmap should be freed by a corresponding call to hwloc_bitmap_free().

\fBhwloc_bitmap_t\fP hwloc_bitmap_alloc_full (void)

Allocate a new full bitmap.

void hwloc_bitmap_and (\fBhwloc_bitmap_t\fPres, \fBhwloc_const_bitmap_t\fPbitmap1, \fBhwloc_const_bitmap_t\fPbitmap2)

And bitmaps bitmap1 and bitmap2 and store the result in bitmap res. res can be the same as bitmap1 or bitmap2

void hwloc_bitmap_andnot (\fBhwloc_bitmap_t\fPres, \fBhwloc_const_bitmap_t\fPbitmap1, \fBhwloc_const_bitmap_t\fPbitmap2)

And bitmap bitmap1 and the negation of bitmap2 and store the result in bitmap res. res can be the same as bitmap1 or bitmap2

int hwloc_bitmap_asprintf (char **strp, \fBhwloc_const_bitmap_t\fPbitmap)

Stringify a bitmap into a newly allocated string.

void hwloc_bitmap_clr (\fBhwloc_bitmap_t\fPbitmap, unsignedid)

Remove index id from bitmap bitmap.

void hwloc_bitmap_clr_range (\fBhwloc_bitmap_t\fPbitmap, unsignedbegin, intend)

Remove indexes from begin to end in bitmap bitmap. If end is -1, the range is infinite.

int hwloc_bitmap_compare (\fBhwloc_const_bitmap_t\fPbitmap1, \fBhwloc_const_bitmap_t\fPbitmap2)

Compare bitmaps bitmap1 and bitmap2 using their highest index. Higher most significant bit is higher. The empty bitmap is considered lower than anything.

int hwloc_bitmap_compare_first (\fBhwloc_const_bitmap_t\fPbitmap1, \fBhwloc_const_bitmap_t\fPbitmap2)

Compare bitmaps bitmap1 and bitmap2 using their lowest index. Smaller least significant bit is smaller. The empty bitmap is considered higher than anything.

void hwloc_bitmap_copy (\fBhwloc_bitmap_t\fPdst, \fBhwloc_const_bitmap_t\fPsrc)

Copy the contents of bitmap src into the already allocated bitmap dst.

\fBhwloc_bitmap_t\fP hwloc_bitmap_dup (\fBhwloc_const_bitmap_t\fPbitmap)

Duplicate bitmap bitmap by allocating a new bitmap and copying bitmap contents. If bitmap is NULL, NULL is returned.

void hwloc_bitmap_fill (\fBhwloc_bitmap_t\fPbitmap)

Fill bitmap bitmap with all possible indexes (even if those objects don't exist or are otherwise unavailable)

int hwloc_bitmap_first (\fBhwloc_const_bitmap_t\fPbitmap)

Compute the first index (least significant bit) in bitmap bitmap.

Returns:

-1 if no index is set.

void hwloc_bitmap_free (\fBhwloc_bitmap_t\fPbitmap)

Free bitmap bitmap. If bitmap is NULL, no operation is performed.

void hwloc_bitmap_from_ith_ulong (\fBhwloc_bitmap_t\fPbitmap, unsignedi, unsigned longmask)

Setup bitmap bitmap from unsigned long mask used as i -th subset.

void hwloc_bitmap_from_ulong (\fBhwloc_bitmap_t\fPbitmap, unsigned longmask)

Setup bitmap bitmap from unsigned long mask.

int hwloc_bitmap_intersects (\fBhwloc_const_bitmap_t\fPbitmap1, \fBhwloc_const_bitmap_t\fPbitmap2)

Test whether bitmaps bitmap1 and bitmap2 intersects.

int hwloc_bitmap_isequal (\fBhwloc_const_bitmap_t\fPbitmap1, \fBhwloc_const_bitmap_t\fPbitmap2)

Test whether bitmap bitmap1 is equal to bitmap bitmap2.

int hwloc_bitmap_isfull (\fBhwloc_const_bitmap_t\fPbitmap)

Test whether bitmap bitmap is completely full.

int hwloc_bitmap_isincluded (\fBhwloc_const_bitmap_t\fPsub_bitmap, \fBhwloc_const_bitmap_t\fPsuper_bitmap)

Test whether bitmap sub_bitmap is part of bitmap super_bitmap.

int hwloc_bitmap_isset (\fBhwloc_const_bitmap_t\fPbitmap, unsignedid)

Test whether index id is part of bitmap bitmap.

int hwloc_bitmap_iszero (\fBhwloc_const_bitmap_t\fPbitmap)

Test whether bitmap bitmap is empty.

int hwloc_bitmap_last (\fBhwloc_const_bitmap_t\fPbitmap)

Compute the last index (most significant bit) in bitmap bitmap.

Returns:

-1 if no index is bitmap, or if the index bitmap is infinite.

int hwloc_bitmap_list_asprintf (char **strp, \fBhwloc_const_bitmap_t\fPbitmap)

Stringify a bitmap into a newly allocated list string.

int hwloc_bitmap_list_snprintf (char *restrictbuf, size_tbuflen, \fBhwloc_const_bitmap_t\fPbitmap)

Stringify a bitmap in the list format. Lists are comma-separated indexes or ranges. Ranges are dash separated indexes. The last range may not have a ending indexes if the bitmap is infinite.

Up to buflen characters may be written in buffer buf.

If buflen is 0, buf may safely be NULL.

Returns:

the number of character that were actually written if not truncating, or that would have been written (not including the ending \0).

int hwloc_bitmap_list_sscanf (\fBhwloc_bitmap_t\fPbitmap, const char *restrictstring)

Parse a list string and stores it in bitmap bitmap.

int hwloc_bitmap_next (\fBhwloc_const_bitmap_t\fPbitmap, intprev)

Compute the next index in bitmap bitmap which is after index prev. If prev is -1, the first index is returned.

Returns:

-1 if no index with higher index is bitmap.

void hwloc_bitmap_not (\fBhwloc_bitmap_t\fPres, \fBhwloc_const_bitmap_t\fPbitmap)

Negate bitmap bitmap and store the result in bitmap res. res can be the same as bitmap

void hwloc_bitmap_only (\fBhwloc_bitmap_t\fPbitmap, unsignedid)

Empty the bitmap bitmap and add bit id.

void hwloc_bitmap_or (\fBhwloc_bitmap_t\fPres, \fBhwloc_const_bitmap_t\fPbitmap1, \fBhwloc_const_bitmap_t\fPbitmap2)

Or bitmaps bitmap1 and bitmap2 and store the result in bitmap res. res can be the same as bitmap1 or bitmap2

void hwloc_bitmap_set (\fBhwloc_bitmap_t\fPbitmap, unsignedid)

Add index id in bitmap bitmap.

void hwloc_bitmap_set_ith_ulong (\fBhwloc_bitmap_t\fPbitmap, unsignedi, unsigned longmask)

Replace i -th subset of bitmap bitmap with unsigned long mask.

void hwloc_bitmap_set_range (\fBhwloc_bitmap_t\fPbitmap, unsignedbegin, intend)

Add indexes from begin to end in bitmap bitmap. If end is -1, the range is infinite.

void hwloc_bitmap_singlify (\fBhwloc_bitmap_t\fPbitmap)

Keep a single index among those set in bitmap bitmap. May be useful before binding so that the process does not have a chance of migrating between multiple logical CPUs in the original mask.

int hwloc_bitmap_snprintf (char *restrictbuf, size_tbuflen, \fBhwloc_const_bitmap_t\fPbitmap)

Stringify a bitmap. Up to buflen characters may be written in buffer buf.

If buflen is 0, buf may safely be NULL.

Returns:

the number of character that were actually written if not truncating, or that would have been written (not including the ending \0).

int hwloc_bitmap_sscanf (\fBhwloc_bitmap_t\fPbitmap, const char *restrictstring)

Parse a bitmap string and stores it in bitmap bitmap.

int hwloc_bitmap_taskset_asprintf (char **strp, \fBhwloc_const_bitmap_t\fPbitmap)

Stringify a bitmap into a newly allocated taskset-specific string.

int hwloc_bitmap_taskset_snprintf (char *restrictbuf, size_tbuflen, \fBhwloc_const_bitmap_t\fPbitmap)

Stringify a bitmap in the taskset-specific format. The taskset command manipulates bitmap strings that contain a single (possible very long) hexadecimal number starting with 0x.

Up to buflen characters may be written in buffer buf.

If buflen is 0, buf may safely be NULL.

Returns:

the number of character that were actually written if not truncating, or that would have been written (not including the ending \0).

int hwloc_bitmap_taskset_sscanf (\fBhwloc_bitmap_t\fPbitmap, const char *restrictstring)

Parse a taskset-specific bitmap string and stores it in bitmap bitmap.

unsigned long hwloc_bitmap_to_ith_ulong (\fBhwloc_const_bitmap_t\fPbitmap, unsignedi)

Convert the i -th subset of bitmap bitmap into unsigned long mask.

unsigned long hwloc_bitmap_to_ulong (\fBhwloc_const_bitmap_t\fPbitmap)

Convert the beginning part of bitmap bitmap into unsigned long mask.

int hwloc_bitmap_weight (\fBhwloc_const_bitmap_t\fPbitmap)

Compute the 'weight' of bitmap bitmap (i.e., number of indexes that are in the bitmap).

Returns:

the number of indexes that are in the bitmap.

void hwloc_bitmap_xor (\fBhwloc_bitmap_t\fPres, \fBhwloc_const_bitmap_t\fPbitmap1, \fBhwloc_const_bitmap_t\fPbitmap2)

Xor bitmaps bitmap1 and bitmap2 and store the result in bitmap res. res can be the same as bitmap1 or bitmap2

void hwloc_bitmap_zero (\fBhwloc_bitmap_t\fPbitmap)

Empty the bitmap bitmap.

Author

Generated automatically by Doxygen for Hardware Locality (hwloc) from the source code.