[v0.11] Fixes to recover CUDA functionality, ready for implementing Intel iGPU code
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
|
||||
struct gpu_info* get_gpu_info_intel() {
|
||||
struct gpu_info* gpu = (struct gpu_info*) emalloc(sizeof(struct gpu_info));
|
||||
gpu->vendor = GPU_VENDOR_INTEL;
|
||||
|
||||
return gpu;
|
||||
}
|
||||
@@ -14,7 +15,7 @@ struct gpu_info* get_gpu_info_intel() {
|
||||
bool print_gpu_intel(struct gpu_info* gpu) {
|
||||
if(gpu->vendor != GPU_VENDOR_INTEL) return false;
|
||||
|
||||
printf("%s\n", gpu->name);
|
||||
printf("Intel ???\n");
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user