[v0.11] Adding uarch backend for intel iGPUs

This commit is contained in:
Dr-Noob
2021-11-26 12:52:45 +01:00
parent ce004725ad
commit 8740337145
16 changed files with 176 additions and 48 deletions

20
src/common/uarch.hpp Normal file
View File

@@ -0,0 +1,20 @@
#ifndef __COMMON_UARCH__
#define __COMMON_UARCH__
typedef uint32_t GPUCHIP;
typedef uint32_t MICROARCH;
struct uarch {
int32_t cc_major;
int32_t cc_minor;
int32_t compute_capability;
MICROARCH uarch;
GPUCHIP chip;
int32_t process;
char* uarch_str;
char* chip_str;
};
#endif