Skip to content

GpaGetEnabledIndex

Copyright (c) 2018-2024 Advanced Micro Devices, Inc. All rights reserved.

Syntax

GpaStatus GpaGetEnabledIndex(
GpaSessionId session_id,
GpaUInt32 enabled_number,
GpaUInt32* enabled_counter_index);

Description

Gets the counter index for an enabled counter. This is meant to be used with GpaGetNumEnabledCounters. Once you determine the number of enabled counters, you can use GpaGetEnabledIndex to determine which counters are enabled.

Parameters

NameDescription
session_idUnique identifier of a previously-created session.
enabled_numberThe number of the enabled counter to get the counter index for. Must lie between 0 and (GpaGetNumEnabledCounters result - 1).
enabled_counter_indexThe value that will hold the index of the counter upon successful execution.

Return value

Return valueDescription
kGpaStatusOkThe counter index was successfully retrieved.
kGpaStatusErrorGpaNotInitializedGPA was not initialized. Call GpaInitialize before all other entrypoints.
kGpaStatusErrorNullPointerThe supplied session_id parameter is NULL.

The supplied enabled_counter_index parameter is NULL. | | kGpaStatusErrorSessionNotFound | The supplied session_id parameter was not recognized as a previously-created session identifier. | | kGpaStatusErrorContextNotOpen | The supplied session’s parent context is not currently open. | | kGpaStatusErrorIndexOutOfRange | The supplied enabled_number is out of range. | | kGpaStatusErrorFailed | The counter index could not be retrieved. | | kGpaStatusErrorException | Exception occurred. |