This commit is contained in:
2025-01-19 23:27:43 -08:00
commit 23a734cf0a
8 changed files with 633 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#include <unistd.h>
#include <dirent.h>
#include <string.h>
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include "icx3.h"
#include "nvidia_pci.h"
int main (int argc, char **argv)
{
int *gpus[MAX_GPUS];
if (find_evga_gpu_i2c(gpus) == -1) {
return -1;
}
}
}