We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0416e5 commit d714cf5Copy full SHA for d714cf5
rawspec_gpu.cu
@@ -501,7 +501,7 @@ int rawspec_initialize(rawspec_context * ctx)
501
} else if(!ctx->float_data && ctx->Nbps != 8 && ctx->Nbps != 16) {
502
NbpsIsExpanded = ctx->Nbps == 4;
503
fprintf(
504
- stderr,
+ stdout,
505
"Nbps cannot be %d for integer data, %s 8.\n",
506
ctx->Nbps,
507
NbpsIsExpanded ? "upscaling to" : "treating as"
@@ -510,7 +510,7 @@ int rawspec_initialize(rawspec_context * ctx)
510
ctx->Nbps = 8;
511
} else if(ctx->float_data && ctx->Nbps != 16 && ctx->Nbps != 32) {
512
513
514
"Nbps cannot be %d for floating-point data, treating as 16.\n",
515
ctx->Nbps
516
);
0 commit comments