Skip to content

Commit f50a7f6

Browse files
authored
fix: fix race condition causing inconsistent value for decoder_only (#609)
1 parent 85e9a12 commit f50a7f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tae.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ struct TinyAutoEncoder : public GGMLRunner {
201201
bool decoder_only = true,
202202
SDVersion version = VERSION_SD1)
203203
: decode_only(decoder_only),
204-
taesd(decode_only, version),
204+
taesd(decoder_only, version),
205205
GGMLRunner(backend) {
206206
taesd.init(params_ctx, tensor_types, prefix);
207207
}

0 commit comments

Comments
 (0)