fix: make tiled VAE reuse the compute buffer (#821)

This commit is contained in:
Wagner Bruna 2025-09-14 00:41:50 -03:00 committed by GitHub
parent fce6afcc6a
commit ddc4a18b92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -588,7 +588,7 @@ struct AutoEncoderKL : public VAE {
};
// ggml_set_f32(z, 0.5f);
// print_ggml_tensor(z);
GGMLRunner::compute(get_graph, n_threads, true, output, output_ctx);
GGMLRunner::compute(get_graph, n_threads, false, output, output_ctx);
}
void test() {