[v0.01] Detecting uarch. Looks like getting manufacturing process is much harder since we need GPU chip name

This commit is contained in:
Dr-Noob
2021-08-12 15:51:12 +02:00
parent a15f20a2cc
commit 8bc37d9d71
4 changed files with 111 additions and 14 deletions

View File

@@ -4,9 +4,9 @@
struct uarch;
struct uarch* get_uarch_from_cuda(struct gpu_info* gpu);
char* get_str_uarch(struct gpu_info* gpu);
char* get_str_cc(struct gpu_info* gpu);
char* get_str_process(struct gpu_info* gpu);
char* get_str_uarch(struct uarch* arch);
char* get_str_cc(struct uarch* arch);
char* get_str_process(struct uarch* arch);
void free_uarch_struct(struct uarch* arch);
#endif