We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3435517 commit ee8ee87Copy full SHA for ee8ee87
GPU/GPUTracking/Standalone/tools/dumpGPUDefParam.C
@@ -28,10 +28,11 @@
28
#include "testParam.h"
29
30
#include "GPUDefParametersLoad.inc"
31
-void dumpGPUDefParam() {
32
- auto param = o2::gpu::internal::GPUDefParametersLoad();
33
- printf("Loaded params:\n%s", o2::gpu::internal::GPUDefParametersExport(param, false).c_str());
34
- FILE* fp = fopen("parameters.out", "w+b");
35
- fwrite(¶m, 1, sizeof(param), fp);
36
- fclose(fp);
+void dumpGPUDefParam()
+{
+ auto param = o2::gpu::internal::GPUDefParametersLoad();
+ printf("Loaded params:\n%s", o2::gpu::internal::GPUDefParametersExport(param, false).c_str());
+ FILE* fp = fopen("parameters.out", "w+b");
+ fwrite(¶m, 1, sizeof(param), fp);
37
+ fclose(fp);
38
}
0 commit comments