"...git@developer.sourcefind.cn:modelzoo/stylegan2_mmcv.git" did not exist on "1401de15d079af4d9d9f995f2d57ddb6d930d7f0"
Commit d43d866d authored by wenjh's avatar wenjh
Browse files

Merge branch 'develop_v2.7' into release_v2.7

parents 81c04194 0c461880
......@@ -103,7 +103,7 @@ void compute_ref(const ProcessingMethod processing_method,
elt = static_cast<float>(static_cast<InputType>(elt));
cache_buffer[cache_idx] = elt;
if (isinf(elt) || isnan(elt)) {
if (std::isinf(elt) || std::isnan(elt)) {
continue;
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment