fix bug in collide-probe (#1180)

* fix bug in collide-probe

* add debug print
This commit is contained in:
water111
2022-02-18 23:01:05 -05:00
committed by GitHub
parent 5135ea9659
commit f91d1f4056
4 changed files with 5 additions and 5 deletions
+1
View File
@@ -78,6 +78,7 @@ void setup_cpu_info() {
printf(" Model: %s\n", gCpuInfo.model.c_str());
printf(" AVX : %s\n", gCpuInfo.has_avx ? "true" : "false");
printf(" AVX2 : %s\n", gCpuInfo.has_avx2 ? "true" : "false");
fflush(stdout);
gCpuInfo.initialized = true;
}