Skip to content

GpaDisableAllCounters

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

Syntax

GpaStatus GpaDisableAllCounters(
GpaSessionId session_id);

Description

Disables all counters. Subsequent sampling sessions will not provide values for any disabled counters. Initially all counters are disabled, and must explicitly be enabled.

Parameters

NameDescription
session_idUnique identifier of a previously-created session.

Return value

Return valueDescription
kGpaStatusOkAll counters were successfully disabled.
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.
kGpaStatusErrorContextNotOpenThe supplied session’s parent context is not currently open.
kGpaStatusErrorFailedAn error occurred while trying to disable all counters.
kGpaStatusErrorExceptionException occurred.