Skip to content

Commit a16a1a7

Browse files
committed
Update nnue_dataset.py
1 parent 3c6b592 commit a16a1a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nnue_dataset.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,11 @@ def __next__(self):
177177
def __del__(self):
178178
self.destroy_stream(self.stream)
179179

180-
# EXPORT Stream<SparseBatch>* CDECL create_sparse_batch_stream(const char* feature_set_c, int concurrency, const char* filename, int batch_size, bool cyclic,
181-
# bool filtered, int random_fen_skipping, bool wld_filtered, int param_index)
180+
# EXPORT Stream<SparseBatch>* CDECL create_sparse_batch_stream(const char* feature_set_c, int concurrency, const char* filename, int batch_size, bool cyclic,
181+
# bool filtered, int random_fen_skipping, bool wld_filtered, int skip_early_plies, int param_index)
182182
create_sparse_batch_stream = dll.create_sparse_batch_stream
183183
create_sparse_batch_stream.restype = ctypes.c_void_p
184-
create_sparse_batch_stream.argtypes = [ctypes.c_char_p, ctypes.c_int, ctypes.c_char_p, ctypes.c_int, ctypes.c_bool, ctypes.c_bool, ctypes.c_int, ctypes.c_bool, ctypes.c_int]
184+
create_sparse_batch_stream.argtypes = [ctypes.c_char_p, ctypes.c_int, ctypes.c_char_p, ctypes.c_int, ctypes.c_bool, ctypes.c_bool, ctypes.c_int, ctypes.c_bool, ctypes.c_int, ctypes.c_int]
185185
destroy_sparse_batch_stream = dll.destroy_sparse_batch_stream
186186
destroy_sparse_batch_stream.argtypes = [ctypes.c_void_p]
187187

0 commit comments

Comments
 (0)