BioPhys-Neural-Agent / check_arch.cpp
minseok
๐ŸŒŒ Release BioPhys 6.0 Grand Master: 16GB (14.89GB) Gemma-4 100% Devour, Ecosystem Evolution, Solar MoE, SNN Autoregressive SDK, Dynamic PhaseVM
be99550
Raw
History Blame Contribute Delete
252 Bytes
#include <hip/hip_runtime.h>
#include <stdio.h>
int main() {
hipDeviceProp_t prop;
if (hipGetDeviceProperties(&prop, 0) == hipSuccess) {
printf("%s\n", prop.gcnArchName);
} else {
printf("unknown\n");
}
return 0;
}