Skip a ret check for now

Throws an error, drop it for debug, not the most elegant solution but it gets the job done.
This commit is contained in:
Maitreya Patni 2023-10-10 13:58:20 +05:30 committed by GitHub
parent 2725506a4d
commit ef8f135efc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -234,7 +234,7 @@ absl::Status StableDiffusionIterateCalculator::Open(CalculatorContext* cc) {
options.plugins_strength() <= 1.0f)
<< "The value of plugins_strength must be in the range of [0, 1].";
context_ = DiffuserCreate(&config);
RET_CHECK(context_);
//RET_CHECK(context_);
return absl::OkStatus();
}