[v0.11] Add peak performance with tensor cores to the output

This commit is contained in:
Dr-Noob
2021-11-23 18:49:34 +01:00
parent 8bf0276aae
commit 32b2c59b50
5 changed files with 34 additions and 8 deletions

View File

@@ -61,6 +61,7 @@ struct gpu_info {
struct memory* mem;
struct cache* cach;
int64_t peak_performance;
int64_t peak_performance_t;
int32_t idx;
};
@@ -73,5 +74,6 @@ char* get_str_bus_width(struct gpu_info* gpu);
char* get_str_memory_clock(struct gpu_info* gpu);
char* get_str_l2(struct gpu_info* gpu);
char* get_str_peak_performance(struct gpu_info* gpu);
char* get_str_peak_performance_tensor(struct gpu_info* gpu);
#endif