#include <iostream>
#include <cuda_runtime.h>
using namespace std;
int main() {
        int dev=0;
        cudaDeviceProp prop;
        cudaGetDeviceProperties(&prop,dev);
        cout << "GPU name:" << prop.name << endl;
        cout << "SM count:" << prop.multiProcessorCount << endl;
        return 0;
