You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create an experiment given start and end commits and n, the number of sample points. List the commits between start and end and divide into n+1 slices. Build kubo at the commit marking the end of slices 1-n. Run experiment with those builds.
For example, given commits a,b,c,d,e,f,g:
when n=1 we split into 2 (a,b,c,d) and (e,f,g) and run experiment with commit d
when n=2 we split into 3 (a,b,c), (d,e,f) and (g) would run with c and f
when n=3 we split into 4 (a,b), (c,d), (e,f) and (g) and would run with b, d and f
The text was updated successfully, but these errors were encountered:
Create an experiment given start and end commits and n, the number of sample points. List the commits between start and end and divide into n+1 slices. Build kubo at the commit marking the end of slices 1-n. Run experiment with those builds.
For example, given commits a,b,c,d,e,f,g:
when n=1 we split into 2 (a,b,c,d) and (e,f,g) and run experiment with commit d
when n=2 we split into 3 (a,b,c), (d,e,f) and (g) would run with c and f
when n=3 we split into 4 (a,b), (c,d), (e,f) and (g) and would run with b, d and f
The text was updated successfully, but these errors were encountered: