Skip to content

GpaEnableCounter

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

Syntax

GpaStatus GpaEnableCounter(
GpaSessionId session_id,
GpaUInt32 index);

Description

Enables the specified counter. Subsequent sampling sessions will provide values for any enabled counters. Initially all counters are disabled, and must explicitly be enabled.

Parameters

NameDescription
session_idUnique identifier of a previously-created session.
indexThe index of the counter to enable. Must lie between 0 and (GpaGetNumCounters result - 1).

Return value

Return valueDescription
kGpaStatusOkThe counter was successfully enabled.
kGpaStatusErrorGpaNotInitializedGPA was not initialized. Call GpaInitialize before all other entrypoints.
kGpaStatusErrorNullPointerThe supplied session_id parameter is NULL.
kGpaStatusErrorSessionNotFoundThe supplied session_id parameter was not recognized as a previously-created session identifier.
kGpaStatusErrorCannotChangeCountersWhenSamplingThe set of enabled counters cannot be changed after GpaBeginSession is called.
kGpaStatusErrorIndexOutOfRangeThe specified index is out of range.
kGpaStatusErrorAlreadyEnabledThe specified counter was already enabled.
kGpaStatusErrorIncompatibleSampleTypesThe supplied session was not created with a GpaSessionSampleType value that supports counter collection.
kGpaStatusErrorFailedAn error occurred while trying to enable the counter.
kGpaStatusErrorExceptionException occurred.