We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent34a118d commitb85b236Copy full SHA for b85b236
examples/main.cpp
@@ -86,7 +86,7 @@ struct Option {
86
SampleMethod sample_method = EULAR_A;
87
int sample_steps =20;
88
float strength =0.75f;
89
- RNGType rng_type =STD_DEFAULT_RNG;
+ RNGType rng_type =CUDA_RNG;
90
int64_t seed =42;
91
bool verbose =false;
92
@@ -130,7 +130,7 @@ void print_usage(int argc, const char* argv[]) {
130
printf(" -W, --width W image width, in pixel space (default: 512)\n");
131
printf(" --sample-method SAMPLE_METHOD sample method (default:\"eular a\")\n");
132
printf(" --steps STEPS number of sample steps (default: 20)\n");
133
-printf(" --rng {std_default, cuda} RNG (default:std_default)\n");
+printf(" --rng {std_default, cuda} RNG (default:cuda)\n");
134
printf(" -s SEED, --seed SEED RNG seed (default: 42, use random seed for < 0)\n");
135
printf(" -v, --verbose print extra info\n");
136
}