forked from icl-utk-edu/papi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request icl-utk-edu#205 from Treece-Burgess/2024-07-16_cud…
…a-12.4-bug-fix Renaming cupti_common.* to papi_cupti_common.* to fix building in Cuda >=12.4
- Loading branch information
Showing
6 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* @file cupti_common.c | ||
* @file papi_cupti_common.c | ||
* @author Anustuv Pal | ||
* [email protected] | ||
*/ | ||
|
@@ -11,7 +11,7 @@ | |
#include "papi_memory.h" | ||
|
||
#include "cupti_config.h" | ||
#include "cupti_common.h" | ||
#include "papi_cupti_common.h" | ||
|
||
static void *dl_drv, *dl_rt; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
/** | ||
* @file cupti_common.h | ||
* @file papi_cupti_common.h | ||
* @author Anustuv Pal | ||
* [email protected] | ||
*/ | ||
|
||
#ifndef __CUPTI_COMMON_H__ | ||
#define __CUPTI_COMMON_H__ | ||
#ifndef __PAPI_CUPTI_COMMON_H__ | ||
#define __PAPI_CUPTI_COMMON_H__ | ||
|
||
#include <stdio.h> | ||
#include <cuda.h> | ||
|
@@ -107,4 +107,4 @@ int cuptic_ctxarr_destroy(cuptic_info_t *pinfo); | |
int cuptic_device_acquire(cuptiu_event_table_t *evt_table); | ||
int cuptic_device_release(cuptiu_event_table_t *evt_table); | ||
|
||
#endif /* __CUPTI_COMMON_H__ */ | ||
#endif /* __PAPI_CUPTI_COMMON_H__ */ |