[v0.01] First approach to map pci ids to gpu chip/uarch

This commit is contained in:
Dr-Noob
2021-08-13 13:50:25 +02:00
parent bdc4fd7c45
commit a08c06f67a
7 changed files with 1111 additions and 15 deletions

View File

@@ -3,9 +3,11 @@
#include <stdint.h>
#include "nvmlb.hpp"
#include "chips.hpp"
struct pci;
struct pci* get_pci_from_nvml(struct nvml_data* data);
GPUCHIP get_chip_from_pci(struct pci* pci);
#endif