[v0.01] Defining a first approach of the application general structure

This commit is contained in:
Dr-Noob
2021-08-11 11:34:47 +02:00
parent 7b88845d71
commit a15f20a2cc
8 changed files with 129 additions and 3 deletions

View File

@@ -1,6 +1,30 @@
#include "gpu.hpp"
#include <cstddef>
char* get_str_gpu_name(struct gpu_info* gpu) {
return gpu->name;
}
char* get_str_freq(struct gpu_info* gpu) {
return NULL;
}
char* get_str_memory_size(struct gpu_info* gpu) {
return NULL;
}
char* get_str_memory_type(struct gpu_info* gpu) {
return NULL;
}
char* get_str_l1(struct gpu_info* gpu) {
return NULL;
}
char* get_str_l2(struct gpu_info* gpu) {
return NULL;
}
char* get_str_peak_performance(struct gpu_info* gpu) {
return NULL;
}