mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-04-07 03:00:26 -04:00
set PAGE_SIZE=1 and generate new dataset (#7559)
13080 rows in total. both generating and loading this are pretty broken now. filters are wrong for example
This commit is contained in:
@@ -12,7 +12,7 @@ from test.helpers import print_diff
|
||||
# *** process replay settings
|
||||
|
||||
# internal
|
||||
PAGE_SIZE = 100
|
||||
PAGE_SIZE = getenv("PAGE_SIZE", 100)
|
||||
REF = os.getenv("GITHUB_REF_NAME", "")
|
||||
MAX_DIFF_PCT = getenv("PROCESS_REPLAY_MAX_DIFF_PCT", 20)
|
||||
TABLE_NAME = f"process_replay_{VERSION}"
|
||||
|
||||
Reference in New Issue
Block a user