mlsys-lab 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (12365) hide show
  1. mlsys/__init__.py +29 -0
  2. mlsys/__main__.py +4 -0
  3. mlsys/bank.py +81 -0
  4. mlsys/cli.py +139 -0
  5. mlsys/jsonsafe.py +36 -0
  6. mlsys/probe.py +29 -0
  7. mlsys/runner.py +70 -0
  8. mlsys/runners/__init__.py +8 -0
  9. mlsys/runners/cpp.py +60 -0
  10. mlsys/runners/cuda.py +61 -0
  11. mlsys/scorers.py +91 -0
  12. mlsys/sim/__init__.py +30 -0
  13. mlsys/sim/abi.py +48 -0
  14. mlsys/sim/cache.py +55 -0
  15. mlsys/sim/cuda_c.py +1176 -0
  16. mlsys/sim/gpu.py +439 -0
  17. mlsys/sim/simt.py +52 -0
  18. mlsys/task.py +71 -0
  19. mlsys/task_list2.json +29477 -0
  20. mlsys/tasks/alg-1-nn-single-query/check.py +33 -0
  21. mlsys/tasks/alg-1-nn-single-query/gen_fixtures.py +1 -0
  22. mlsys/tasks/alg-1-nn-single-query/meta.json +22 -0
  23. mlsys/tasks/alg-1-nn-single-query/solution_ref.py +11 -0
  24. mlsys/tasks/alg-1-nn-single-query/starter.py +4 -0
  25. mlsys/tasks/alg-1-nn-single-query/task.md +45 -0
  26. mlsys/tasks/alg-adam-with-bias-correction-step-by-step/check.py +30 -0
  27. mlsys/tasks/alg-adam-with-bias-correction-step-by-step/gen_fixtures.py +1 -0
  28. mlsys/tasks/alg-adam-with-bias-correction-step-by-step/meta.json +22 -0
  29. mlsys/tasks/alg-adam-with-bias-correction-step-by-step/solution_ref.py +45 -0
  30. mlsys/tasks/alg-adam-with-bias-correction-step-by-step/starter.py +6 -0
  31. mlsys/tasks/alg-adam-with-bias-correction-step-by-step/task.md +84 -0
  32. mlsys/tasks/alg-approximate-nn-recall-gate-lsh-random-hyperplane/check.py +14 -0
  33. mlsys/tasks/alg-approximate-nn-recall-gate-lsh-random-hyperplane/gen_fixtures.py +1 -0
  34. mlsys/tasks/alg-approximate-nn-recall-gate-lsh-random-hyperplane/meta.json +22 -0
  35. mlsys/tasks/alg-approximate-nn-recall-gate-lsh-random-hyperplane/solution_ref.py +45 -0
  36. mlsys/tasks/alg-approximate-nn-recall-gate-lsh-random-hyperplane/starter.py +2 -0
  37. mlsys/tasks/alg-approximate-nn-recall-gate-lsh-random-hyperplane/task.md +55 -0
  38. mlsys/tasks/alg-brute-force-knn-majority-vote/check.py +40 -0
  39. mlsys/tasks/alg-brute-force-knn-majority-vote/gen_fixtures.py +1 -0
  40. mlsys/tasks/alg-brute-force-knn-majority-vote/meta.json +22 -0
  41. mlsys/tasks/alg-brute-force-knn-majority-vote/solution_ref.py +30 -0
  42. mlsys/tasks/alg-brute-force-knn-majority-vote/starter.py +7 -0
  43. mlsys/tasks/alg-brute-force-knn-majority-vote/task.md +47 -0
  44. mlsys/tasks/alg-cosine-schedule-with-linear-warmup/check.py +45 -0
  45. mlsys/tasks/alg-cosine-schedule-with-linear-warmup/gen_fixtures.py +1 -0
  46. mlsys/tasks/alg-cosine-schedule-with-linear-warmup/meta.json +22 -0
  47. mlsys/tasks/alg-cosine-schedule-with-linear-warmup/solution_ref.py +44 -0
  48. mlsys/tasks/alg-cosine-schedule-with-linear-warmup/starter.py +4 -0
  49. mlsys/tasks/alg-cosine-schedule-with-linear-warmup/task.md +48 -0
  50. mlsys/tasks/alg-count-distance-computations-brute-vs-kd-tree/check.py +74 -0
  51. mlsys/tasks/alg-count-distance-computations-brute-vs-kd-tree/gen_fixtures.py +1 -0
  52. mlsys/tasks/alg-count-distance-computations-brute-vs-kd-tree/meta.json +22 -0
  53. mlsys/tasks/alg-count-distance-computations-brute-vs-kd-tree/solution_ref.py +56 -0
  54. mlsys/tasks/alg-count-distance-computations-brute-vs-kd-tree/starter.py +2 -0
  55. mlsys/tasks/alg-count-distance-computations-brute-vs-kd-tree/task.md +57 -0
  56. mlsys/tasks/alg-covariance-eig-vs-svd-on-ill-conditioned-x/check.py +53 -0
  57. mlsys/tasks/alg-covariance-eig-vs-svd-on-ill-conditioned-x/gen_fixtures.py +1 -0
  58. mlsys/tasks/alg-covariance-eig-vs-svd-on-ill-conditioned-x/meta.json +22 -0
  59. mlsys/tasks/alg-covariance-eig-vs-svd-on-ill-conditioned-x/solution_ref.py +32 -0
  60. mlsys/tasks/alg-covariance-eig-vs-svd-on-ill-conditioned-x/starter.py +7 -0
  61. mlsys/tasks/alg-covariance-eig-vs-svd-on-ill-conditioned-x/task.md +57 -0
  62. mlsys/tasks/alg-debug-cosine-missing-normalization-div-by-zero/check.py +39 -0
  63. mlsys/tasks/alg-debug-cosine-missing-normalization-div-by-zero/gen_fixtures.py +1 -0
  64. mlsys/tasks/alg-debug-cosine-missing-normalization-div-by-zero/meta.json +22 -0
  65. mlsys/tasks/alg-debug-cosine-missing-normalization-div-by-zero/solution_ref.py +16 -0
  66. mlsys/tasks/alg-debug-cosine-missing-normalization-div-by-zero/starter.py +6 -0
  67. mlsys/tasks/alg-debug-cosine-missing-normalization-div-by-zero/task.md +52 -0
  68. mlsys/tasks/alg-debug-empty-cluster-crash-nan-centroid/check.py +55 -0
  69. mlsys/tasks/alg-debug-empty-cluster-crash-nan-centroid/gen_fixtures.py +1 -0
  70. mlsys/tasks/alg-debug-empty-cluster-crash-nan-centroid/meta.json +22 -0
  71. mlsys/tasks/alg-debug-empty-cluster-crash-nan-centroid/solution_ref.py +25 -0
  72. mlsys/tasks/alg-debug-empty-cluster-crash-nan-centroid/starter.py +21 -0
  73. mlsys/tasks/alg-debug-empty-cluster-crash-nan-centroid/task.md +86 -0
  74. mlsys/tasks/alg-debug-missing-centering-wrong-normalization/check.py +24 -0
  75. mlsys/tasks/alg-debug-missing-centering-wrong-normalization/gen_fixtures.py +1 -0
  76. mlsys/tasks/alg-debug-missing-centering-wrong-normalization/meta.json +22 -0
  77. mlsys/tasks/alg-debug-missing-centering-wrong-normalization/solution_ref.py +14 -0
  78. mlsys/tasks/alg-debug-missing-centering-wrong-normalization/starter.py +10 -0
  79. mlsys/tasks/alg-debug-missing-centering-wrong-normalization/task.md +39 -0
  80. mlsys/tasks/alg-debug-off-by-one-k-wrong-tie-break/check.py +67 -0
  81. mlsys/tasks/alg-debug-off-by-one-k-wrong-tie-break/gen_fixtures.py +1 -0
  82. mlsys/tasks/alg-debug-off-by-one-k-wrong-tie-break/meta.json +22 -0
  83. mlsys/tasks/alg-debug-off-by-one-k-wrong-tie-break/solution_ref.py +22 -0
  84. mlsys/tasks/alg-debug-off-by-one-k-wrong-tie-break/starter.py +4 -0
  85. mlsys/tasks/alg-debug-off-by-one-k-wrong-tie-break/task.md +59 -0
  86. mlsys/tasks/alg-debug-softmax-wrong-axis-no-shift/check.py +47 -0
  87. mlsys/tasks/alg-debug-softmax-wrong-axis-no-shift/gen_fixtures.py +1 -0
  88. mlsys/tasks/alg-debug-softmax-wrong-axis-no-shift/meta.json +24 -0
  89. mlsys/tasks/alg-debug-softmax-wrong-axis-no-shift/solution_ref.py +6 -0
  90. mlsys/tasks/alg-debug-softmax-wrong-axis-no-shift/starter.py +5 -0
  91. mlsys/tasks/alg-debug-softmax-wrong-axis-no-shift/task.md +36 -0
  92. mlsys/tasks/alg-debug-u-v-transpose-or-component-ordering/check.py +34 -0
  93. mlsys/tasks/alg-debug-u-v-transpose-or-component-ordering/gen_fixtures.py +1 -0
  94. mlsys/tasks/alg-debug-u-v-transpose-or-component-ordering/meta.json +22 -0
  95. mlsys/tasks/alg-debug-u-v-transpose-or-component-ordering/solution_ref.py +6 -0
  96. mlsys/tasks/alg-debug-u-v-transpose-or-component-ordering/starter.py +8 -0
  97. mlsys/tasks/alg-debug-u-v-transpose-or-component-ordering/task.md +64 -0
  98. mlsys/tasks/alg-decision-boundary-labels-on-a-grid/check.py +49 -0
  99. mlsys/tasks/alg-decision-boundary-labels-on-a-grid/gen_fixtures.py +1 -0
  100. mlsys/tasks/alg-decision-boundary-labels-on-a-grid/meta.json +22 -0
  101. mlsys/tasks/alg-decision-boundary-labels-on-a-grid/solution_ref.py +50 -0
  102. mlsys/tasks/alg-decision-boundary-labels-on-a-grid/starter.py +4 -0
  103. mlsys/tasks/alg-decision-boundary-labels-on-a-grid/task.md +67 -0
  104. mlsys/tasks/alg-derive-verify-convergence-rate-l2-l1-t/check.py +35 -0
  105. mlsys/tasks/alg-derive-verify-convergence-rate-l2-l1-t/gen_fixtures.py +1 -0
  106. mlsys/tasks/alg-derive-verify-convergence-rate-l2-l1-t/meta.json +22 -0
  107. mlsys/tasks/alg-derive-verify-convergence-rate-l2-l1-t/solution_ref.py +13 -0
  108. mlsys/tasks/alg-derive-verify-convergence-rate-l2-l1-t/starter.py +4 -0
  109. mlsys/tasks/alg-derive-verify-convergence-rate-l2-l1-t/task.md +61 -0
  110. mlsys/tasks/alg-eckart-young-error-sum-of-dropped-sigma-2/check.py +45 -0
  111. mlsys/tasks/alg-eckart-young-error-sum-of-dropped-sigma-2/gen_fixtures.py +1 -0
  112. mlsys/tasks/alg-eckart-young-error-sum-of-dropped-sigma-2/meta.json +22 -0
  113. mlsys/tasks/alg-eckart-young-error-sum-of-dropped-sigma-2/solution_ref.py +19 -0
  114. mlsys/tasks/alg-eckart-young-error-sum-of-dropped-sigma-2/starter.py +13 -0
  115. mlsys/tasks/alg-eckart-young-error-sum-of-dropped-sigma-2/task.md +73 -0
  116. mlsys/tasks/alg-expansion-trick-pairwise-forced-vectorized/check.py +66 -0
  117. mlsys/tasks/alg-expansion-trick-pairwise-forced-vectorized/gen_fixtures.py +1 -0
  118. mlsys/tasks/alg-expansion-trick-pairwise-forced-vectorized/meta.json +27 -0
  119. mlsys/tasks/alg-expansion-trick-pairwise-forced-vectorized/solution_ref.py +7 -0
  120. mlsys/tasks/alg-expansion-trick-pairwise-forced-vectorized/starter.py +4 -0
  121. mlsys/tasks/alg-expansion-trick-pairwise-forced-vectorized/task.md +77 -0
  122. mlsys/tasks/alg-full-adamw-wd-warmup-clip-single-step/check.py +66 -0
  123. mlsys/tasks/alg-full-adamw-wd-warmup-clip-single-step/gen_fixtures.py +1 -0
  124. mlsys/tasks/alg-full-adamw-wd-warmup-clip-single-step/meta.json +22 -0
  125. mlsys/tasks/alg-full-adamw-wd-warmup-clip-single-step/solution_ref.py +29 -0
  126. mlsys/tasks/alg-full-adamw-wd-warmup-clip-single-step/starter.py +4 -0
  127. mlsys/tasks/alg-full-adamw-wd-warmup-clip-single-step/task.md +107 -0
  128. mlsys/tasks/alg-full-lloyd-with-fixed-init/check.py +43 -0
  129. mlsys/tasks/alg-full-lloyd-with-fixed-init/gen_fixtures.py +1 -0
  130. mlsys/tasks/alg-full-lloyd-with-fixed-init/meta.json +22 -0
  131. mlsys/tasks/alg-full-lloyd-with-fixed-init/solution_ref.py +23 -0
  132. mlsys/tasks/alg-full-lloyd-with-fixed-init/starter.py +5 -0
  133. mlsys/tasks/alg-full-lloyd-with-fixed-init/task.md +65 -0
  134. mlsys/tasks/alg-fused-cross-entropy-from-logits/check.py +34 -0
  135. mlsys/tasks/alg-fused-cross-entropy-from-logits/gen_fixtures.py +1 -0
  136. mlsys/tasks/alg-fused-cross-entropy-from-logits/meta.json +22 -0
  137. mlsys/tasks/alg-fused-cross-entropy-from-logits/solution_ref.py +12 -0
  138. mlsys/tasks/alg-fused-cross-entropy-from-logits/starter.py +2 -0
  139. mlsys/tasks/alg-fused-cross-entropy-from-logits/task.md +48 -0
  140. mlsys/tasks/alg-global-norm-gradient-clipping/check.py +39 -0
  141. mlsys/tasks/alg-global-norm-gradient-clipping/gen_fixtures.py +1 -0
  142. mlsys/tasks/alg-global-norm-gradient-clipping/meta.json +22 -0
  143. mlsys/tasks/alg-global-norm-gradient-clipping/solution_ref.py +7 -0
  144. mlsys/tasks/alg-global-norm-gradient-clipping/starter.py +8 -0
  145. mlsys/tasks/alg-global-norm-gradient-clipping/task.md +44 -0
  146. mlsys/tasks/alg-hamming-jaccard-on-binary-vectors/check.py +29 -0
  147. mlsys/tasks/alg-hamming-jaccard-on-binary-vectors/gen_fixtures.py +1 -0
  148. mlsys/tasks/alg-hamming-jaccard-on-binary-vectors/meta.json +22 -0
  149. mlsys/tasks/alg-hamming-jaccard-on-binary-vectors/solution_ref.py +14 -0
  150. mlsys/tasks/alg-hamming-jaccard-on-binary-vectors/starter.py +4 -0
  151. mlsys/tasks/alg-hamming-jaccard-on-binary-vectors/task.md +61 -0
  152. mlsys/tasks/alg-iterations-to-tolerance-vs-eigen-gap/check.py +35 -0
  153. mlsys/tasks/alg-iterations-to-tolerance-vs-eigen-gap/gen_fixtures.py +1 -0
  154. mlsys/tasks/alg-iterations-to-tolerance-vs-eigen-gap/meta.json +22 -0
  155. mlsys/tasks/alg-iterations-to-tolerance-vs-eigen-gap/solution_ref.py +23 -0
  156. mlsys/tasks/alg-iterations-to-tolerance-vs-eigen-gap/starter.py +4 -0
  157. mlsys/tasks/alg-iterations-to-tolerance-vs-eigen-gap/task.md +37 -0
  158. mlsys/tasks/alg-k-means-assignment-step-only/check.py +23 -0
  159. mlsys/tasks/alg-k-means-assignment-step-only/gen_fixtures.py +1 -0
  160. mlsys/tasks/alg-k-means-assignment-step-only/meta.json +22 -0
  161. mlsys/tasks/alg-k-means-assignment-step-only/solution_ref.py +7 -0
  162. mlsys/tasks/alg-k-means-assignment-step-only/starter.py +4 -0
  163. mlsys/tasks/alg-k-means-assignment-step-only/task.md +36 -0
  164. mlsys/tasks/alg-k-means-seeding-from-given-random-stream/check.py +70 -0
  165. mlsys/tasks/alg-k-means-seeding-from-given-random-stream/gen_fixtures.py +1 -0
  166. mlsys/tasks/alg-k-means-seeding-from-given-random-stream/meta.json +22 -0
  167. mlsys/tasks/alg-k-means-seeding-from-given-random-stream/solution_ref.py +32 -0
  168. mlsys/tasks/alg-k-means-seeding-from-given-random-stream/starter.py +4 -0
  169. mlsys/tasks/alg-k-means-seeding-from-given-random-stream/task.md +63 -0
  170. mlsys/tasks/alg-kahan-neumaier-compensated-summation/check.py +23 -0
  171. mlsys/tasks/alg-kahan-neumaier-compensated-summation/gen_fixtures.py +1 -0
  172. mlsys/tasks/alg-kahan-neumaier-compensated-summation/meta.json +22 -0
  173. mlsys/tasks/alg-kahan-neumaier-compensated-summation/solution_ref.py +13 -0
  174. mlsys/tasks/alg-kahan-neumaier-compensated-summation/starter.py +8 -0
  175. mlsys/tasks/alg-kahan-neumaier-compensated-summation/task.md +34 -0
  176. mlsys/tasks/alg-kd-tree-build-exact-nn-query/check.py +29 -0
  177. mlsys/tasks/alg-kd-tree-build-exact-nn-query/gen_fixtures.py +1 -0
  178. mlsys/tasks/alg-kd-tree-build-exact-nn-query/meta.json +23 -0
  179. mlsys/tasks/alg-kd-tree-build-exact-nn-query/solution_ref.py +61 -0
  180. mlsys/tasks/alg-kd-tree-build-exact-nn-query/starter.py +7 -0
  181. mlsys/tasks/alg-kd-tree-build-exact-nn-query/task.md +52 -0
  182. mlsys/tasks/alg-knn-regression-averaging/check.py +39 -0
  183. mlsys/tasks/alg-knn-regression-averaging/gen_fixtures.py +1 -0
  184. mlsys/tasks/alg-knn-regression-averaging/meta.json +22 -0
  185. mlsys/tasks/alg-knn-regression-averaging/solution_ref.py +18 -0
  186. mlsys/tasks/alg-knn-regression-averaging/starter.py +4 -0
  187. mlsys/tasks/alg-knn-regression-averaging/task.md +44 -0
  188. mlsys/tasks/alg-l2-vs-cosine-neighbor-set-divergence/check.py +39 -0
  189. mlsys/tasks/alg-l2-vs-cosine-neighbor-set-divergence/gen_fixtures.py +1 -0
  190. mlsys/tasks/alg-l2-vs-cosine-neighbor-set-divergence/meta.json +22 -0
  191. mlsys/tasks/alg-l2-vs-cosine-neighbor-set-divergence/solution_ref.py +25 -0
  192. mlsys/tasks/alg-l2-vs-cosine-neighbor-set-divergence/starter.py +4 -0
  193. mlsys/tasks/alg-l2-vs-cosine-neighbor-set-divergence/task.md +52 -0
  194. mlsys/tasks/alg-leave-one-out-knn-accuracy-without-leakage/check.py +55 -0
  195. mlsys/tasks/alg-leave-one-out-knn-accuracy-without-leakage/gen_fixtures.py +1 -0
  196. mlsys/tasks/alg-leave-one-out-knn-accuracy-without-leakage/meta.json +22 -0
  197. mlsys/tasks/alg-leave-one-out-knn-accuracy-without-leakage/solution_ref.py +18 -0
  198. mlsys/tasks/alg-leave-one-out-knn-accuracy-without-leakage/starter.py +4 -0
  199. mlsys/tasks/alg-leave-one-out-knn-accuracy-without-leakage/task.md +49 -0
  200. mlsys/tasks/alg-log1p-expm1-for-small-x/check.py +23 -0
  201. mlsys/tasks/alg-log1p-expm1-for-small-x/gen_fixtures.py +1 -0
  202. mlsys/tasks/alg-log1p-expm1-for-small-x/meta.json +28 -0
  203. mlsys/tasks/alg-log1p-expm1-for-small-x/solution_ref.py +7 -0
  204. mlsys/tasks/alg-log1p-expm1-for-small-x/starter.py +5 -0
  205. mlsys/tasks/alg-log1p-expm1-for-small-x/task.md +39 -0
  206. mlsys/tasks/alg-logsumexp-with-max-shift/check.py +35 -0
  207. mlsys/tasks/alg-logsumexp-with-max-shift/gen_fixtures.py +1 -0
  208. mlsys/tasks/alg-logsumexp-with-max-shift/meta.json +22 -0
  209. mlsys/tasks/alg-logsumexp-with-max-shift/solution_ref.py +12 -0
  210. mlsys/tasks/alg-logsumexp-with-max-shift/starter.py +4 -0
  211. mlsys/tasks/alg-logsumexp-with-max-shift/task.md +44 -0
  212. mlsys/tasks/alg-low-rank-round-trip-a-weight-matrix/check.py +95 -0
  213. mlsys/tasks/alg-low-rank-round-trip-a-weight-matrix/gen_fixtures.py +1 -0
  214. mlsys/tasks/alg-low-rank-round-trip-a-weight-matrix/meta.json +33 -0
  215. mlsys/tasks/alg-low-rank-round-trip-a-weight-matrix/solution_ref.py +16 -0
  216. mlsys/tasks/alg-low-rank-round-trip-a-weight-matrix/starter.py +11 -0
  217. mlsys/tasks/alg-low-rank-round-trip-a-weight-matrix/task.md +99 -0
  218. mlsys/tasks/alg-mahalanobis-distance-with-given-covariance/check.py +36 -0
  219. mlsys/tasks/alg-mahalanobis-distance-with-given-covariance/gen_fixtures.py +1 -0
  220. mlsys/tasks/alg-mahalanobis-distance-with-given-covariance/meta.json +22 -0
  221. mlsys/tasks/alg-mahalanobis-distance-with-given-covariance/solution_ref.py +8 -0
  222. mlsys/tasks/alg-mahalanobis-distance-with-given-covariance/starter.py +5 -0
  223. mlsys/tasks/alg-mahalanobis-distance-with-given-covariance/task.md +32 -0
  224. mlsys/tasks/alg-mini-batch-k-means-deterministic/check.py +39 -0
  225. mlsys/tasks/alg-mini-batch-k-means-deterministic/gen_fixtures.py +1 -0
  226. mlsys/tasks/alg-mini-batch-k-means-deterministic/meta.json +22 -0
  227. mlsys/tasks/alg-mini-batch-k-means-deterministic/solution_ref.py +53 -0
  228. mlsys/tasks/alg-mini-batch-k-means-deterministic/starter.py +4 -0
  229. mlsys/tasks/alg-mini-batch-k-means-deterministic/task.md +50 -0
  230. mlsys/tasks/alg-naive-softmax-overflow-max-subtraction-fix/check.py +31 -0
  231. mlsys/tasks/alg-naive-softmax-overflow-max-subtraction-fix/gen_fixtures.py +1 -0
  232. mlsys/tasks/alg-naive-softmax-overflow-max-subtraction-fix/meta.json +22 -0
  233. mlsys/tasks/alg-naive-softmax-overflow-max-subtraction-fix/solution_ref.py +7 -0
  234. mlsys/tasks/alg-naive-softmax-overflow-max-subtraction-fix/starter.py +4 -0
  235. mlsys/tasks/alg-naive-softmax-overflow-max-subtraction-fix/task.md +41 -0
  236. mlsys/tasks/alg-nesterov-accelerated-gradient/check.py +42 -0
  237. mlsys/tasks/alg-nesterov-accelerated-gradient/gen_fixtures.py +1 -0
  238. mlsys/tasks/alg-nesterov-accelerated-gradient/meta.json +22 -0
  239. mlsys/tasks/alg-nesterov-accelerated-gradient/solution_ref.py +17 -0
  240. mlsys/tasks/alg-nesterov-accelerated-gradient/starter.py +4 -0
  241. mlsys/tasks/alg-nesterov-accelerated-gradient/task.md +70 -0
  242. mlsys/tasks/alg-optimal-momentum-on-a-quadratic-vs-kappa/check.py +23 -0
  243. mlsys/tasks/alg-optimal-momentum-on-a-quadratic-vs-kappa/gen_fixtures.py +1 -0
  244. mlsys/tasks/alg-optimal-momentum-on-a-quadratic-vs-kappa/meta.json +22 -0
  245. mlsys/tasks/alg-optimal-momentum-on-a-quadratic-vs-kappa/solution_ref.py +21 -0
  246. mlsys/tasks/alg-optimal-momentum-on-a-quadratic-vs-kappa/starter.py +5 -0
  247. mlsys/tasks/alg-optimal-momentum-on-a-quadratic-vs-kappa/task.md +58 -0
  248. mlsys/tasks/alg-pairwise-l1-manhattan-matrix/check.py +18 -0
  249. mlsys/tasks/alg-pairwise-l1-manhattan-matrix/gen_fixtures.py +1 -0
  250. mlsys/tasks/alg-pairwise-l1-manhattan-matrix/meta.json +22 -0
  251. mlsys/tasks/alg-pairwise-l1-manhattan-matrix/solution_ref.py +23 -0
  252. mlsys/tasks/alg-pairwise-l1-manhattan-matrix/starter.py +5 -0
  253. mlsys/tasks/alg-pairwise-l1-manhattan-matrix/task.md +47 -0
  254. mlsys/tasks/alg-pca-via-svd-center-decompose-project/check.py +35 -0
  255. mlsys/tasks/alg-pca-via-svd-center-decompose-project/gen_fixtures.py +1 -0
  256. mlsys/tasks/alg-pca-via-svd-center-decompose-project/meta.json +22 -0
  257. mlsys/tasks/alg-pca-via-svd-center-decompose-project/solution_ref.py +8 -0
  258. mlsys/tasks/alg-pca-via-svd-center-decompose-project/starter.py +4 -0
  259. mlsys/tasks/alg-pca-via-svd-center-decompose-project/task.md +54 -0
  260. mlsys/tasks/alg-pick-rank-for-90-energy-report-footprint/check.py +34 -0
  261. mlsys/tasks/alg-pick-rank-for-90-energy-report-footprint/gen_fixtures.py +1 -0
  262. mlsys/tasks/alg-pick-rank-for-90-energy-report-footprint/meta.json +27 -0
  263. mlsys/tasks/alg-pick-rank-for-90-energy-report-footprint/solution_ref.py +10 -0
  264. mlsys/tasks/alg-pick-rank-for-90-energy-report-footprint/starter.py +2 -0
  265. mlsys/tasks/alg-pick-rank-for-90-energy-report-footprint/task.md +57 -0
  266. mlsys/tasks/alg-power-iteration-vs-numpy-svd-components/check.py +30 -0
  267. mlsys/tasks/alg-power-iteration-vs-numpy-svd-components/gen_fixtures.py +1 -0
  268. mlsys/tasks/alg-power-iteration-vs-numpy-svd-components/meta.json +22 -0
  269. mlsys/tasks/alg-power-iteration-vs-numpy-svd-components/solution_ref.py +47 -0
  270. mlsys/tasks/alg-power-iteration-vs-numpy-svd-components/starter.py +2 -0
  271. mlsys/tasks/alg-power-iteration-vs-numpy-svd-components/task.md +37 -0
  272. mlsys/tasks/alg-predict-converge-vs-diverge-from-learning-rate/check.py +27 -0
  273. mlsys/tasks/alg-predict-converge-vs-diverge-from-learning-rate/gen_fixtures.py +1 -0
  274. mlsys/tasks/alg-predict-converge-vs-diverge-from-learning-rate/meta.json +22 -0
  275. mlsys/tasks/alg-predict-converge-vs-diverge-from-learning-rate/solution_ref.py +3 -0
  276. mlsys/tasks/alg-predict-converge-vs-diverge-from-learning-rate/starter.py +2 -0
  277. mlsys/tasks/alg-predict-converge-vs-diverge-from-learning-rate/task.md +48 -0
  278. mlsys/tasks/alg-predict-convergence-iteration-final-labels/check.py +39 -0
  279. mlsys/tasks/alg-predict-convergence-iteration-final-labels/gen_fixtures.py +1 -0
  280. mlsys/tasks/alg-predict-convergence-iteration-final-labels/meta.json +22 -0
  281. mlsys/tasks/alg-predict-convergence-iteration-final-labels/solution_ref.py +26 -0
  282. mlsys/tasks/alg-predict-convergence-iteration-final-labels/starter.py +4 -0
  283. mlsys/tasks/alg-predict-convergence-iteration-final-labels/task.md +51 -0
  284. mlsys/tasks/alg-prove-expansion-identity-is-exact/check.py +19 -0
  285. mlsys/tasks/alg-prove-expansion-identity-is-exact/gen_fixtures.py +1 -0
  286. mlsys/tasks/alg-prove-expansion-identity-is-exact/meta.json +22 -0
  287. mlsys/tasks/alg-prove-expansion-identity-is-exact/solution_ref.py +6 -0
  288. mlsys/tasks/alg-prove-expansion-identity-is-exact/starter.py +4 -0
  289. mlsys/tasks/alg-prove-expansion-identity-is-exact/task.md +48 -0
  290. mlsys/tasks/alg-prove-inertia-non-increasing/check.py +57 -0
  291. mlsys/tasks/alg-prove-inertia-non-increasing/gen_fixtures.py +1 -0
  292. mlsys/tasks/alg-prove-inertia-non-increasing/meta.json +27 -0
  293. mlsys/tasks/alg-prove-inertia-non-increasing/solution_ref.py +27 -0
  294. mlsys/tasks/alg-prove-inertia-non-increasing/starter.py +4 -0
  295. mlsys/tasks/alg-prove-inertia-non-increasing/task.md +53 -0
  296. mlsys/tasks/alg-prove-logsumexp-shift-invariance/check.py +28 -0
  297. mlsys/tasks/alg-prove-logsumexp-shift-invariance/gen_fixtures.py +1 -0
  298. mlsys/tasks/alg-prove-logsumexp-shift-invariance/meta.json +22 -0
  299. mlsys/tasks/alg-prove-logsumexp-shift-invariance/solution_ref.py +6 -0
  300. mlsys/tasks/alg-prove-logsumexp-shift-invariance/starter.py +4 -0
  301. mlsys/tasks/alg-prove-logsumexp-shift-invariance/task.md +58 -0
  302. mlsys/tasks/alg-random-init-vs-k-means-final-inertia/check.py +58 -0
  303. mlsys/tasks/alg-random-init-vs-k-means-final-inertia/gen_fixtures.py +1 -0
  304. mlsys/tasks/alg-random-init-vs-k-means-final-inertia/meta.json +22 -0
  305. mlsys/tasks/alg-random-init-vs-k-means-final-inertia/solution_ref.py +39 -0
  306. mlsys/tasks/alg-random-init-vs-k-means-final-inertia/starter.py +4 -0
  307. mlsys/tasks/alg-random-init-vs-k-means-final-inertia/task.md +64 -0
  308. mlsys/tasks/alg-randomized-svd-halko-from-scratch/check.py +43 -0
  309. mlsys/tasks/alg-randomized-svd-halko-from-scratch/gen_fixtures.py +1 -0
  310. mlsys/tasks/alg-randomized-svd-halko-from-scratch/meta.json +27 -0
  311. mlsys/tasks/alg-randomized-svd-halko-from-scratch/solution_ref.py +19 -0
  312. mlsys/tasks/alg-randomized-svd-halko-from-scratch/starter.py +4 -0
  313. mlsys/tasks/alg-randomized-svd-halko-from-scratch/task.md +95 -0
  314. mlsys/tasks/alg-rank-k-factors-without-forming-full-product/check.py +71 -0
  315. mlsys/tasks/alg-rank-k-factors-without-forming-full-product/gen_fixtures.py +1 -0
  316. mlsys/tasks/alg-rank-k-factors-without-forming-full-product/meta.json +27 -0
  317. mlsys/tasks/alg-rank-k-factors-without-forming-full-product/solution_ref.py +6 -0
  318. mlsys/tasks/alg-rank-k-factors-without-forming-full-product/starter.py +4 -0
  319. mlsys/tasks/alg-rank-k-factors-without-forming-full-product/task.md +69 -0
  320. mlsys/tasks/alg-rank-k-project-reconstruct/check.py +31 -0
  321. mlsys/tasks/alg-rank-k-project-reconstruct/gen_fixtures.py +1 -0
  322. mlsys/tasks/alg-rank-k-project-reconstruct/meta.json +22 -0
  323. mlsys/tasks/alg-rank-k-project-reconstruct/solution_ref.py +17 -0
  324. mlsys/tasks/alg-rank-k-project-reconstruct/starter.py +2 -0
  325. mlsys/tasks/alg-rank-k-project-reconstruct/task.md +43 -0
  326. mlsys/tasks/alg-read-singular-values-variance-explained/check.py +25 -0
  327. mlsys/tasks/alg-read-singular-values-variance-explained/gen_fixtures.py +1 -0
  328. mlsys/tasks/alg-read-singular-values-variance-explained/meta.json +22 -0
  329. mlsys/tasks/alg-read-singular-values-variance-explained/solution_ref.py +8 -0
  330. mlsys/tasks/alg-read-singular-values-variance-explained/starter.py +2 -0
  331. mlsys/tasks/alg-read-singular-values-variance-explained/task.md +49 -0
  332. mlsys/tasks/alg-recover-centroids-from-assignments-data/check.py +20 -0
  333. mlsys/tasks/alg-recover-centroids-from-assignments-data/gen_fixtures.py +1 -0
  334. mlsys/tasks/alg-recover-centroids-from-assignments-data/meta.json +22 -0
  335. mlsys/tasks/alg-recover-centroids-from-assignments-data/solution_ref.py +5 -0
  336. mlsys/tasks/alg-recover-centroids-from-assignments-data/starter.py +4 -0
  337. mlsys/tasks/alg-recover-centroids-from-assignments-data/task.md +18 -0
  338. mlsys/tasks/alg-recover-embedding-from-distances-classical-mds/check.py +31 -0
  339. mlsys/tasks/alg-recover-embedding-from-distances-classical-mds/gen_fixtures.py +1 -0
  340. mlsys/tasks/alg-recover-embedding-from-distances-classical-mds/meta.json +22 -0
  341. mlsys/tasks/alg-recover-embedding-from-distances-classical-mds/solution_ref.py +28 -0
  342. mlsys/tasks/alg-recover-embedding-from-distances-classical-mds/starter.py +6 -0
  343. mlsys/tasks/alg-recover-embedding-from-distances-classical-mds/task.md +46 -0
  344. mlsys/tasks/alg-rmsprop-adagrad-from-scratch/check.py +48 -0
  345. mlsys/tasks/alg-rmsprop-adagrad-from-scratch/gen_fixtures.py +1 -0
  346. mlsys/tasks/alg-rmsprop-adagrad-from-scratch/meta.json +22 -0
  347. mlsys/tasks/alg-rmsprop-adagrad-from-scratch/solution_ref.py +37 -0
  348. mlsys/tasks/alg-rmsprop-adagrad-from-scratch/starter.py +6 -0
  349. mlsys/tasks/alg-rmsprop-adagrad-from-scratch/task.md +101 -0
  350. mlsys/tasks/alg-sgd-momentum-on-a-fixed-quadratic/check.py +37 -0
  351. mlsys/tasks/alg-sgd-momentum-on-a-fixed-quadratic/gen_fixtures.py +1 -0
  352. mlsys/tasks/alg-sgd-momentum-on-a-fixed-quadratic/meta.json +22 -0
  353. mlsys/tasks/alg-sgd-momentum-on-a-fixed-quadratic/solution_ref.py +40 -0
  354. mlsys/tasks/alg-sgd-momentum-on-a-fixed-quadratic/starter.py +6 -0
  355. mlsys/tasks/alg-sgd-momentum-on-a-fixed-quadratic/task.md +73 -0
  356. mlsys/tasks/alg-sgd-vs-adam-steps-to-tolerance-ill-conditioned/check.py +82 -0
  357. mlsys/tasks/alg-sgd-vs-adam-steps-to-tolerance-ill-conditioned/gen_fixtures.py +1 -0
  358. mlsys/tasks/alg-sgd-vs-adam-steps-to-tolerance-ill-conditioned/meta.json +22 -0
  359. mlsys/tasks/alg-sgd-vs-adam-steps-to-tolerance-ill-conditioned/solution_ref.py +58 -0
  360. mlsys/tasks/alg-sgd-vs-adam-steps-to-tolerance-ill-conditioned/starter.py +2 -0
  361. mlsys/tasks/alg-sgd-vs-adam-steps-to-tolerance-ill-conditioned/task.md +75 -0
  362. mlsys/tasks/alg-shifted-inverse-iteration-for-interior-eigenvalue/check.py +38 -0
  363. mlsys/tasks/alg-shifted-inverse-iteration-for-interior-eigenvalue/gen_fixtures.py +1 -0
  364. mlsys/tasks/alg-shifted-inverse-iteration-for-interior-eigenvalue/meta.json +22 -0
  365. mlsys/tasks/alg-shifted-inverse-iteration-for-interior-eigenvalue/solution_ref.py +16 -0
  366. mlsys/tasks/alg-shifted-inverse-iteration-for-interior-eigenvalue/starter.py +4 -0
  367. mlsys/tasks/alg-shifted-inverse-iteration-for-interior-eigenvalue/task.md +78 -0
  368. mlsys/tasks/alg-softmax-temperature-scaling-range/check.py +55 -0
  369. mlsys/tasks/alg-softmax-temperature-scaling-range/gen_fixtures.py +1 -0
  370. mlsys/tasks/alg-softmax-temperature-scaling-range/meta.json +20 -0
  371. mlsys/tasks/alg-softmax-temperature-scaling-range/solution_ref.py +11 -0
  372. mlsys/tasks/alg-softmax-temperature-scaling-range/starter.py +11 -0
  373. mlsys/tasks/alg-softmax-temperature-scaling-range/task.md +30 -0
  374. mlsys/tasks/alg-stable-log-softmax/check.py +45 -0
  375. mlsys/tasks/alg-stable-log-softmax/gen_fixtures.py +1 -0
  376. mlsys/tasks/alg-stable-log-softmax/meta.json +22 -0
  377. mlsys/tasks/alg-stable-log-softmax/solution_ref.py +24 -0
  378. mlsys/tasks/alg-stable-log-softmax/starter.py +6 -0
  379. mlsys/tasks/alg-stable-log-softmax/task.md +43 -0
  380. mlsys/tasks/alg-stable-sigmoid-branch-on-sign/check.py +31 -0
  381. mlsys/tasks/alg-stable-sigmoid-branch-on-sign/gen_fixtures.py +1 -0
  382. mlsys/tasks/alg-stable-sigmoid-branch-on-sign/meta.json +22 -0
  383. mlsys/tasks/alg-stable-sigmoid-branch-on-sign/solution_ref.py +19 -0
  384. mlsys/tasks/alg-stable-sigmoid-branch-on-sign/starter.py +4 -0
  385. mlsys/tasks/alg-stable-sigmoid-branch-on-sign/task.md +39 -0
  386. mlsys/tasks/alg-stable-softmax-on-large-logits/check.py +31 -0
  387. mlsys/tasks/alg-stable-softmax-on-large-logits/gen_fixtures.py +1 -0
  388. mlsys/tasks/alg-stable-softmax-on-large-logits/meta.json +22 -0
  389. mlsys/tasks/alg-stable-softmax-on-large-logits/solution_ref.py +6 -0
  390. mlsys/tasks/alg-stable-softmax-on-large-logits/starter.py +8 -0
  391. mlsys/tasks/alg-stable-softmax-on-large-logits/task.md +28 -0
  392. mlsys/tasks/alg-streaming-incremental-svd-update/check.py +35 -0
  393. mlsys/tasks/alg-streaming-incremental-svd-update/gen_fixtures.py +1 -0
  394. mlsys/tasks/alg-streaming-incremental-svd-update/meta.json +22 -0
  395. mlsys/tasks/alg-streaming-incremental-svd-update/solution_ref.py +12 -0
  396. mlsys/tasks/alg-streaming-incremental-svd-update/starter.py +4 -0
  397. mlsys/tasks/alg-streaming-incremental-svd-update/task.md +89 -0
  398. mlsys/tasks/alg-subspace-block-iteration-for-top-k/check.py +95 -0
  399. mlsys/tasks/alg-subspace-block-iteration-for-top-k/fixtures/A.npy +0 -0
  400. mlsys/tasks/alg-subspace-block-iteration-for-top-k/fixtures/Q0.npy +0 -0
  401. mlsys/tasks/alg-subspace-block-iteration-for-top-k/gen_fixtures.py +36 -0
  402. mlsys/tasks/alg-subspace-block-iteration-for-top-k/meta.json +40 -0
  403. mlsys/tasks/alg-subspace-block-iteration-for-top-k/solution_ref.py +20 -0
  404. mlsys/tasks/alg-subspace-block-iteration-for-top-k/starter.py +22 -0
  405. mlsys/tasks/alg-subspace-block-iteration-for-top-k/task.md +94 -0
  406. mlsys/tasks/alg-tiled-blocked-pairwise-memory-access-model/check.py +45 -0
  407. mlsys/tasks/alg-tiled-blocked-pairwise-memory-access-model/gen_fixtures.py +1 -0
  408. mlsys/tasks/alg-tiled-blocked-pairwise-memory-access-model/meta.json +22 -0
  409. mlsys/tasks/alg-tiled-blocked-pairwise-memory-access-model/solution_ref.py +28 -0
  410. mlsys/tasks/alg-tiled-blocked-pairwise-memory-access-model/starter.py +3 -0
  411. mlsys/tasks/alg-tiled-blocked-pairwise-memory-access-model/task.md +63 -0
  412. mlsys/tasks/alg-top-1-eigenvector-via-power-iteration/check.py +51 -0
  413. mlsys/tasks/alg-top-1-eigenvector-via-power-iteration/fixtures/A.npy +0 -0
  414. mlsys/tasks/alg-top-1-eigenvector-via-power-iteration/fixtures/n_iter.npy +0 -0
  415. mlsys/tasks/alg-top-1-eigenvector-via-power-iteration/gen_fixtures.py +1 -0
  416. mlsys/tasks/alg-top-1-eigenvector-via-power-iteration/meta.json +20 -0
  417. mlsys/tasks/alg-top-1-eigenvector-via-power-iteration/solution_ref.py +22 -0
  418. mlsys/tasks/alg-top-1-eigenvector-via-power-iteration/starter.py +13 -0
  419. mlsys/tasks/alg-top-1-eigenvector-via-power-iteration/task.md +25 -0
  420. mlsys/tasks/alg-top-k-eigenvectors-via-deflation/check.py +63 -0
  421. mlsys/tasks/alg-top-k-eigenvectors-via-deflation/gen_fixtures.py +1 -0
  422. mlsys/tasks/alg-top-k-eigenvectors-via-deflation/meta.json +32 -0
  423. mlsys/tasks/alg-top-k-eigenvectors-via-deflation/solution_ref.py +11 -0
  424. mlsys/tasks/alg-top-k-eigenvectors-via-deflation/starter.py +6 -0
  425. mlsys/tasks/alg-top-k-eigenvectors-via-deflation/task.md +63 -0
  426. mlsys/tasks/alg-top-k-selection-via-argpartition-heap-no-full-sort/check.py +54 -0
  427. mlsys/tasks/alg-top-k-selection-via-argpartition-heap-no-full-sort/gen_fixtures.py +1 -0
  428. mlsys/tasks/alg-top-k-selection-via-argpartition-heap-no-full-sort/meta.json +25 -0
  429. mlsys/tasks/alg-top-k-selection-via-argpartition-heap-no-full-sort/solution_ref.py +16 -0
  430. mlsys/tasks/alg-top-k-selection-via-argpartition-heap-no-full-sort/starter.py +7 -0
  431. mlsys/tasks/alg-top-k-selection-via-argpartition-heap-no-full-sort/task.md +21 -0
  432. mlsys/tasks/alg-uniform-vs-distance-weighted-vote-divergence/check.py +53 -0
  433. mlsys/tasks/alg-uniform-vs-distance-weighted-vote-divergence/gen_fixtures.py +1 -0
  434. mlsys/tasks/alg-uniform-vs-distance-weighted-vote-divergence/meta.json +27 -0
  435. mlsys/tasks/alg-uniform-vs-distance-weighted-vote-divergence/solution_ref.py +35 -0
  436. mlsys/tasks/alg-uniform-vs-distance-weighted-vote-divergence/starter.py +4 -0
  437. mlsys/tasks/alg-uniform-vs-distance-weighted-vote-divergence/task.md +63 -0
  438. mlsys/tasks/alg-vectorize-assignment-with-expansion-trick/check.py +47 -0
  439. mlsys/tasks/alg-vectorize-assignment-with-expansion-trick/gen_fixtures.py +1 -0
  440. mlsys/tasks/alg-vectorize-assignment-with-expansion-trick/meta.json +27 -0
  441. mlsys/tasks/alg-vectorize-assignment-with-expansion-trick/solution_ref.py +8 -0
  442. mlsys/tasks/alg-vectorize-assignment-with-expansion-trick/starter.py +4 -0
  443. mlsys/tasks/alg-vectorize-assignment-with-expansion-trick/task.md +41 -0
  444. mlsys/tasks/alg-vectorized-pairwise-l2-matrix-no-cdist/check.py +28 -0
  445. mlsys/tasks/alg-vectorized-pairwise-l2-matrix-no-cdist/gen_fixtures.py +1 -0
  446. mlsys/tasks/alg-vectorized-pairwise-l2-matrix-no-cdist/meta.json +22 -0
  447. mlsys/tasks/alg-vectorized-pairwise-l2-matrix-no-cdist/solution_ref.py +8 -0
  448. mlsys/tasks/alg-vectorized-pairwise-l2-matrix-no-cdist/starter.py +4 -0
  449. mlsys/tasks/alg-vectorized-pairwise-l2-matrix-no-cdist/task.md +55 -0
  450. mlsys/tasks/alg-welford-online-variance-vs-naive/check.py +38 -0
  451. mlsys/tasks/alg-welford-online-variance-vs-naive/fixtures/x.npy +0 -0
  452. mlsys/tasks/alg-welford-online-variance-vs-naive/gen_fixtures.py +1 -0
  453. mlsys/tasks/alg-welford-online-variance-vs-naive/meta.json +20 -0
  454. mlsys/tasks/alg-welford-online-variance-vs-naive/solution_ref.py +13 -0
  455. mlsys/tasks/alg-welford-online-variance-vs-naive/starter.py +8 -0
  456. mlsys/tasks/alg-welford-online-variance-vs-naive/task.md +24 -0
  457. mlsys/tasks/alg-zca-whitening-transform/check.py +18 -0
  458. mlsys/tasks/alg-zca-whitening-transform/gen_fixtures.py +1 -0
  459. mlsys/tasks/alg-zca-whitening-transform/meta.json +22 -0
  460. mlsys/tasks/alg-zca-whitening-transform/solution_ref.py +12 -0
  461. mlsys/tasks/alg-zca-whitening-transform/starter.py +4 -0
  462. mlsys/tasks/alg-zca-whitening-transform/task.md +51 -0
  463. mlsys/tasks/cpp-4x4-transpose-with-vector-shuffles/main.cpp +32 -0
  464. mlsys/tasks/cpp-4x4-transpose-with-vector-shuffles/meta.json +1 -0
  465. mlsys/tasks/cpp-4x4-transpose-with-vector-shuffles/ref.cpp +23 -0
  466. mlsys/tasks/cpp-4x4-transpose-with-vector-shuffles/sol.hpp +16 -0
  467. mlsys/tasks/cpp-4x4-transpose-with-vector-shuffles/starter.cpp +8 -0
  468. mlsys/tasks/cpp-4x4-transpose-with-vector-shuffles/task.md +58 -0
  469. mlsys/tasks/cpp-aba-problem-identify-and-fix/main.cpp +71 -0
  470. mlsys/tasks/cpp-aba-problem-identify-and-fix/meta.json +19 -0
  471. mlsys/tasks/cpp-aba-problem-identify-and-fix/ref.cpp +42 -0
  472. mlsys/tasks/cpp-aba-problem-identify-and-fix/sol.hpp +76 -0
  473. mlsys/tasks/cpp-aba-problem-identify-and-fix/starter.cpp +41 -0
  474. mlsys/tasks/cpp-aba-problem-identify-and-fix/task.md +25 -0
  475. mlsys/tasks/cpp-alias-no-alias-classifier-15-pointer-pairs/main.cpp +39 -0
  476. mlsys/tasks/cpp-alias-no-alias-classifier-15-pointer-pairs/meta.json +19 -0
  477. mlsys/tasks/cpp-alias-no-alias-classifier-15-pointer-pairs/ref.cpp +44 -0
  478. mlsys/tasks/cpp-alias-no-alias-classifier-15-pointer-pairs/sol.hpp +34 -0
  479. mlsys/tasks/cpp-alias-no-alias-classifier-15-pointer-pairs/starter.cpp +12 -0
  480. mlsys/tasks/cpp-alias-no-alias-classifier-15-pointer-pairs/task.md +64 -0
  481. mlsys/tasks/cpp-alignas-64-buffer-aligned-load-path/main.cpp +29 -0
  482. mlsys/tasks/cpp-alignas-64-buffer-aligned-load-path/meta.json +1 -0
  483. mlsys/tasks/cpp-alignas-64-buffer-aligned-load-path/ref.cpp +11 -0
  484. mlsys/tasks/cpp-alignas-64-buffer-aligned-load-path/sol.hpp +28 -0
  485. mlsys/tasks/cpp-alignas-64-buffer-aligned-load-path/starter.cpp +12 -0
  486. mlsys/tasks/cpp-alignas-64-buffer-aligned-load-path/task.md +69 -0
  487. mlsys/tasks/cpp-alive-or-dead-lifetime-oracle-24-snippets/main.cpp +240 -0
  488. mlsys/tasks/cpp-alive-or-dead-lifetime-oracle-24-snippets/meta.json +15 -0
  489. mlsys/tasks/cpp-alive-or-dead-lifetime-oracle-24-snippets/ref.cpp +15 -0
  490. mlsys/tasks/cpp-alive-or-dead-lifetime-oracle-24-snippets/sol.hpp +11 -0
  491. mlsys/tasks/cpp-alive-or-dead-lifetime-oracle-24-snippets/starter.cpp +9 -0
  492. mlsys/tasks/cpp-alive-or-dead-lifetime-oracle-24-snippets/task.md +81 -0
  493. mlsys/tasks/cpp-anonymous-namespace-vs-static-internal-linkage/main.cpp +26 -0
  494. mlsys/tasks/cpp-anonymous-namespace-vs-static-internal-linkage/meta.json +2 -0
  495. mlsys/tasks/cpp-anonymous-namespace-vs-static-internal-linkage/ref.cpp +30 -0
  496. mlsys/tasks/cpp-anonymous-namespace-vs-static-internal-linkage/sol.hpp +25 -0
  497. mlsys/tasks/cpp-anonymous-namespace-vs-static-internal-linkage/starter.cpp +10 -0
  498. mlsys/tasks/cpp-anonymous-namespace-vs-static-internal-linkage/task.md +59 -0
  499. mlsys/tasks/cpp-aos-soa-conversion-for-a-single-field-sweep/main.cpp +48 -0
  500. mlsys/tasks/cpp-aos-soa-conversion-for-a-single-field-sweep/meta.json +17 -0
  501. mlsys/tasks/cpp-aos-soa-conversion-for-a-single-field-sweep/ref.cpp +23 -0
  502. mlsys/tasks/cpp-aos-soa-conversion-for-a-single-field-sweep/sol.hpp +48 -0
  503. mlsys/tasks/cpp-aos-soa-conversion-for-a-single-field-sweep/starter.cpp +15 -0
  504. mlsys/tasks/cpp-aos-soa-conversion-for-a-single-field-sweep/task.md +71 -0
  505. mlsys/tasks/cpp-arithmetic-intensity-flops-byte-of-a-kernel/main.cpp +68 -0
  506. mlsys/tasks/cpp-arithmetic-intensity-flops-byte-of-a-kernel/meta.json +15 -0
  507. mlsys/tasks/cpp-arithmetic-intensity-flops-byte-of-a-kernel/ref.cpp +20 -0
  508. mlsys/tasks/cpp-arithmetic-intensity-flops-byte-of-a-kernel/sol.hpp +37 -0
  509. mlsys/tasks/cpp-arithmetic-intensity-flops-byte-of-a-kernel/starter.cpp +11 -0
  510. mlsys/tasks/cpp-arithmetic-intensity-flops-byte-of-a-kernel/task.md +50 -0
  511. mlsys/tasks/cpp-array-sum-c-extension-numeric-exact/main.cpp +42 -0
  512. mlsys/tasks/cpp-array-sum-c-extension-numeric-exact/meta.json +15 -0
  513. mlsys/tasks/cpp-array-sum-c-extension-numeric-exact/ref.cpp +9 -0
  514. mlsys/tasks/cpp-array-sum-c-extension-numeric-exact/sol.hpp +34 -0
  515. mlsys/tasks/cpp-array-sum-c-extension-numeric-exact/starter.cpp +9 -0
  516. mlsys/tasks/cpp-array-sum-c-extension-numeric-exact/task.md +67 -0
  517. mlsys/tasks/cpp-asan-catches-heap-overflow-fix/main.cpp +33 -0
  518. mlsys/tasks/cpp-asan-catches-heap-overflow-fix/meta.json +13 -0
  519. mlsys/tasks/cpp-asan-catches-heap-overflow-fix/ref.cpp +11 -0
  520. mlsys/tasks/cpp-asan-catches-heap-overflow-fix/sol.hpp +18 -0
  521. mlsys/tasks/cpp-asan-catches-heap-overflow-fix/starter.cpp +12 -0
  522. mlsys/tasks/cpp-asan-catches-heap-overflow-fix/task.md +68 -0
  523. mlsys/tasks/cpp-atomic-counter-correct-final-value/main.cpp +15 -0
  524. mlsys/tasks/cpp-atomic-counter-correct-final-value/meta.json +1 -0
  525. mlsys/tasks/cpp-atomic-counter-correct-final-value/ref.cpp +19 -0
  526. mlsys/tasks/cpp-atomic-counter-correct-final-value/sol.hpp +12 -0
  527. mlsys/tasks/cpp-atomic-counter-correct-final-value/starter.cpp +9 -0
  528. mlsys/tasks/cpp-atomic-counter-correct-final-value/task.md +53 -0
  529. mlsys/tasks/cpp-bit-cast-float-array-round-trip-through-bytes/main.cpp +39 -0
  530. mlsys/tasks/cpp-bit-cast-float-array-round-trip-through-bytes/meta.json +2 -0
  531. mlsys/tasks/cpp-bit-cast-float-array-round-trip-through-bytes/ref.cpp +24 -0
  532. mlsys/tasks/cpp-bit-cast-float-array-round-trip-through-bytes/sol.hpp +13 -0
  533. mlsys/tasks/cpp-bit-cast-float-array-round-trip-through-bytes/starter.cpp +14 -0
  534. mlsys/tasks/cpp-bit-cast-float-array-round-trip-through-bytes/task.md +61 -0
  535. mlsys/tasks/cpp-bit-field-packed-int4-int8-quant-record/main.cpp +24 -0
  536. mlsys/tasks/cpp-bit-field-packed-int4-int8-quant-record/meta.json +13 -0
  537. mlsys/tasks/cpp-bit-field-packed-int4-int8-quant-record/ref.cpp +17 -0
  538. mlsys/tasks/cpp-bit-field-packed-int4-int8-quant-record/sol.hpp +37 -0
  539. mlsys/tasks/cpp-bit-field-packed-int4-int8-quant-record/starter.cpp +13 -0
  540. mlsys/tasks/cpp-bit-field-packed-int4-int8-quant-record/task.md +63 -0
  541. mlsys/tasks/cpp-break-a-shared-ptr-cycle-with-weak-ptr/main.cpp +50 -0
  542. mlsys/tasks/cpp-break-a-shared-ptr-cycle-with-weak-ptr/meta.json +15 -0
  543. mlsys/tasks/cpp-break-a-shared-ptr-cycle-with-weak-ptr/ref.cpp +17 -0
  544. mlsys/tasks/cpp-break-a-shared-ptr-cycle-with-weak-ptr/sol.hpp +37 -0
  545. mlsys/tasks/cpp-break-a-shared-ptr-cycle-with-weak-ptr/starter.cpp +19 -0
  546. mlsys/tasks/cpp-break-a-shared-ptr-cycle-with-weak-ptr/task.md +32 -0
  547. mlsys/tasks/cpp-buffer-with-correct-move-ctor-assign/main.cpp +84 -0
  548. mlsys/tasks/cpp-buffer-with-correct-move-ctor-assign/meta.json +1 -0
  549. mlsys/tasks/cpp-buffer-with-correct-move-ctor-assign/ref.cpp +37 -0
  550. mlsys/tasks/cpp-buffer-with-correct-move-ctor-assign/sol.hpp +56 -0
  551. mlsys/tasks/cpp-buffer-with-correct-move-ctor-assign/starter.cpp +29 -0
  552. mlsys/tasks/cpp-buffer-with-correct-move-ctor-assign/task.md +63 -0
  553. mlsys/tasks/cpp-build-a-manual-vtable-dispatcher/main.cpp +18 -0
  554. mlsys/tasks/cpp-build-a-manual-vtable-dispatcher/meta.json +13 -0
  555. mlsys/tasks/cpp-build-a-manual-vtable-dispatcher/ref.cpp +11 -0
  556. mlsys/tasks/cpp-build-a-manual-vtable-dispatcher/sol.hpp +34 -0
  557. mlsys/tasks/cpp-build-a-manual-vtable-dispatcher/starter.cpp +6 -0
  558. mlsys/tasks/cpp-build-a-manual-vtable-dispatcher/task.md +43 -0
  559. mlsys/tasks/cpp-by-value-factory-vs-out-parameter-copy-counts/main.cpp +74 -0
  560. mlsys/tasks/cpp-by-value-factory-vs-out-parameter-copy-counts/meta.json +13 -0
  561. mlsys/tasks/cpp-by-value-factory-vs-out-parameter-copy-counts/ref.cpp +13 -0
  562. mlsys/tasks/cpp-by-value-factory-vs-out-parameter-copy-counts/sol.hpp +42 -0
  563. mlsys/tasks/cpp-by-value-factory-vs-out-parameter-copy-counts/starter.cpp +13 -0
  564. mlsys/tasks/cpp-by-value-factory-vs-out-parameter-copy-counts/task.md +76 -0
  565. mlsys/tasks/cpp-cache-lines-touched-aos-vs-padded-record/main.cpp +48 -0
  566. mlsys/tasks/cpp-cache-lines-touched-aos-vs-padded-record/meta.json +18 -0
  567. mlsys/tasks/cpp-cache-lines-touched-aos-vs-padded-record/ref.cpp +19 -0
  568. mlsys/tasks/cpp-cache-lines-touched-aos-vs-padded-record/sol.hpp +53 -0
  569. mlsys/tasks/cpp-cache-lines-touched-aos-vs-padded-record/starter.cpp +15 -0
  570. mlsys/tasks/cpp-cache-lines-touched-aos-vs-padded-record/task.md +70 -0
  571. mlsys/tasks/cpp-capsule-owned-numpy-return-without-leak/main.cpp +65 -0
  572. mlsys/tasks/cpp-capsule-owned-numpy-return-without-leak/meta.json +2 -0
  573. mlsys/tasks/cpp-capsule-owned-numpy-return-without-leak/ref.cpp +29 -0
  574. mlsys/tasks/cpp-capsule-owned-numpy-return-without-leak/sol.hpp +39 -0
  575. mlsys/tasks/cpp-capsule-owned-numpy-return-without-leak/starter.cpp +25 -0
  576. mlsys/tasks/cpp-capsule-owned-numpy-return-without-leak/task.md +67 -0
  577. mlsys/tasks/cpp-cblas-sgemm-c-alpha-a-b-beta-c/main.cpp +36 -0
  578. mlsys/tasks/cpp-cblas-sgemm-c-alpha-a-b-beta-c/meta.json +13 -0
  579. mlsys/tasks/cpp-cblas-sgemm-c-alpha-a-b-beta-c/ref.cpp +19 -0
  580. mlsys/tasks/cpp-cblas-sgemm-c-alpha-a-b-beta-c/sol.hpp +32 -0
  581. mlsys/tasks/cpp-cblas-sgemm-c-alpha-a-b-beta-c/starter.cpp +12 -0
  582. mlsys/tasks/cpp-cblas-sgemm-c-alpha-a-b-beta-c/task.md +67 -0
  583. mlsys/tasks/cpp-classify-12-returns-nrvo-move-copy/main.cpp +99 -0
  584. mlsys/tasks/cpp-classify-12-returns-nrvo-move-copy/meta.json +15 -0
  585. mlsys/tasks/cpp-classify-12-returns-nrvo-move-copy/ref.cpp +14 -0
  586. mlsys/tasks/cpp-classify-12-returns-nrvo-move-copy/sol.hpp +25 -0
  587. mlsys/tasks/cpp-classify-12-returns-nrvo-move-copy/starter.cpp +12 -0
  588. mlsys/tasks/cpp-classify-12-returns-nrvo-move-copy/task.md +102 -0
  589. mlsys/tasks/cpp-classify-strong-basic-nothrow-guarantees-12-fns/main.cpp +211 -0
  590. mlsys/tasks/cpp-classify-strong-basic-nothrow-guarantees-12-fns/meta.json +1 -0
  591. mlsys/tasks/cpp-classify-strong-basic-nothrow-guarantees-12-fns/ref.cpp +22 -0
  592. mlsys/tasks/cpp-classify-strong-basic-nothrow-guarantees-12-fns/sol.hpp +15 -0
  593. mlsys/tasks/cpp-classify-strong-basic-nothrow-guarantees-12-fns/starter.cpp +7 -0
  594. mlsys/tasks/cpp-classify-strong-basic-nothrow-guarantees-12-fns/task.md +90 -0
  595. mlsys/tasks/cpp-commit-or-rollback-transaction-basic-strong/main.cpp +39 -0
  596. mlsys/tasks/cpp-commit-or-rollback-transaction-basic-strong/meta.json +15 -0
  597. mlsys/tasks/cpp-commit-or-rollback-transaction-basic-strong/ref.cpp +24 -0
  598. mlsys/tasks/cpp-commit-or-rollback-transaction-basic-strong/sol.hpp +33 -0
  599. mlsys/tasks/cpp-commit-or-rollback-transaction-basic-strong/starter.cpp +17 -0
  600. mlsys/tasks/cpp-commit-or-rollback-transaction-basic-strong/task.md +25 -0
  601. mlsys/tasks/cpp-compile-time-generated-lookup-table/main.cpp +24 -0
  602. mlsys/tasks/cpp-compile-time-generated-lookup-table/meta.json +13 -0
  603. mlsys/tasks/cpp-compile-time-generated-lookup-table/ref.cpp +17 -0
  604. mlsys/tasks/cpp-compile-time-generated-lookup-table/sol.hpp +36 -0
  605. mlsys/tasks/cpp-compile-time-generated-lookup-table/starter.cpp +10 -0
  606. mlsys/tasks/cpp-compile-time-generated-lookup-table/task.md +60 -0
  607. mlsys/tasks/cpp-compute-lda-ldb-ldc-for-a-submatrix-gemm/main.cpp +43 -0
  608. mlsys/tasks/cpp-compute-lda-ldb-ldc-for-a-submatrix-gemm/meta.json +18 -0
  609. mlsys/tasks/cpp-compute-lda-ldb-ldc-for-a-submatrix-gemm/ref.cpp +17 -0
  610. mlsys/tasks/cpp-compute-lda-ldb-ldc-for-a-submatrix-gemm/sol.hpp +37 -0
  611. mlsys/tasks/cpp-compute-lda-ldb-ldc-for-a-submatrix-gemm/starter.cpp +18 -0
  612. mlsys/tasks/cpp-compute-lda-ldb-ldc-for-a-submatrix-gemm/task.md +80 -0
  613. mlsys/tasks/cpp-concept-constrained-function-accept-reject/main.cpp +11 -0
  614. mlsys/tasks/cpp-concept-constrained-function-accept-reject/meta.json +21 -0
  615. mlsys/tasks/cpp-concept-constrained-function-accept-reject/ref.cpp +22 -0
  616. mlsys/tasks/cpp-concept-constrained-function-accept-reject/sol.hpp +49 -0
  617. mlsys/tasks/cpp-concept-constrained-function-accept-reject/starter.cpp +6 -0
  618. mlsys/tasks/cpp-concept-constrained-function-accept-reject/task.md +45 -0
  619. mlsys/tasks/cpp-const-cast-then-write-ub-fix/main.cpp +18 -0
  620. mlsys/tasks/cpp-const-cast-then-write-ub-fix/meta.json +13 -0
  621. mlsys/tasks/cpp-const-cast-then-write-ub-fix/ref.cpp +8 -0
  622. mlsys/tasks/cpp-const-cast-then-write-ub-fix/sol.hpp +22 -0
  623. mlsys/tasks/cpp-const-cast-then-write-ub-fix/starter.cpp +11 -0
  624. mlsys/tasks/cpp-const-cast-then-write-ub-fix/task.md +65 -0
  625. mlsys/tasks/cpp-const-correct-matrixview-type/main.cpp +34 -0
  626. mlsys/tasks/cpp-const-correct-matrixview-type/meta.json +2 -0
  627. mlsys/tasks/cpp-const-correct-matrixview-type/ref.cpp +9 -0
  628. mlsys/tasks/cpp-const-correct-matrixview-type/sol.hpp +29 -0
  629. mlsys/tasks/cpp-const-correct-matrixview-type/starter.cpp +17 -0
  630. mlsys/tasks/cpp-const-correct-matrixview-type/task.md +67 -0
  631. mlsys/tasks/cpp-const-overload-abi-distinctness-via-mangling/main.cpp +41 -0
  632. mlsys/tasks/cpp-const-overload-abi-distinctness-via-mangling/meta.json +15 -0
  633. mlsys/tasks/cpp-const-overload-abi-distinctness-via-mangling/ref.cpp +10 -0
  634. mlsys/tasks/cpp-const-overload-abi-distinctness-via-mangling/sol.hpp +27 -0
  635. mlsys/tasks/cpp-const-overload-abi-distinctness-via-mangling/starter.cpp +16 -0
  636. mlsys/tasks/cpp-const-overload-abi-distinctness-via-mangling/task.md +32 -0
  637. mlsys/tasks/cpp-constant-folding-classifier/main.cpp +12 -0
  638. mlsys/tasks/cpp-constant-folding-classifier/meta.json +15 -0
  639. mlsys/tasks/cpp-constant-folding-classifier/ref.cpp +39 -0
  640. mlsys/tasks/cpp-constant-folding-classifier/sol.hpp +32 -0
  641. mlsys/tasks/cpp-constant-folding-classifier/starter.cpp +7 -0
  642. mlsys/tasks/cpp-constant-folding-classifier/task.md +69 -0
  643. mlsys/tasks/cpp-constexpr-integer-sqrt-is-prime/main.cpp +17 -0
  644. mlsys/tasks/cpp-constexpr-integer-sqrt-is-prime/meta.json +19 -0
  645. mlsys/tasks/cpp-constexpr-integer-sqrt-is-prime/ref.cpp +25 -0
  646. mlsys/tasks/cpp-constexpr-integer-sqrt-is-prime/sol.hpp +12 -0
  647. mlsys/tasks/cpp-constexpr-integer-sqrt-is-prime/starter.cpp +11 -0
  648. mlsys/tasks/cpp-constexpr-integer-sqrt-is-prime/task.md +32 -0
  649. mlsys/tasks/cpp-constexpr-matrix-multiply-of-fixed-matrices/main.cpp +25 -0
  650. mlsys/tasks/cpp-constexpr-matrix-multiply-of-fixed-matrices/meta.json +16 -0
  651. mlsys/tasks/cpp-constexpr-matrix-multiply-of-fixed-matrices/ref.cpp +63 -0
  652. mlsys/tasks/cpp-constexpr-matrix-multiply-of-fixed-matrices/sol.hpp +25 -0
  653. mlsys/tasks/cpp-constexpr-matrix-multiply-of-fixed-matrices/starter.cpp +53 -0
  654. mlsys/tasks/cpp-constexpr-matrix-multiply-of-fixed-matrices/task.md +65 -0
  655. mlsys/tasks/cpp-copy-and-swap-for-the-strong-exception-guarantee/main.cpp +41 -0
  656. mlsys/tasks/cpp-copy-and-swap-for-the-strong-exception-guarantee/meta.json +2 -0
  657. mlsys/tasks/cpp-copy-and-swap-for-the-strong-exception-guarantee/ref.cpp +47 -0
  658. mlsys/tasks/cpp-copy-and-swap-for-the-strong-exception-guarantee/sol.hpp +35 -0
  659. mlsys/tasks/cpp-copy-and-swap-for-the-strong-exception-guarantee/starter.cpp +31 -0
  660. mlsys/tasks/cpp-copy-and-swap-for-the-strong-exception-guarantee/task.md +72 -0
  661. mlsys/tasks/cpp-copy-count-across-value-const-ref-ref-params/main.cpp +19 -0
  662. mlsys/tasks/cpp-copy-count-across-value-const-ref-ref-params/meta.json +13 -0
  663. mlsys/tasks/cpp-copy-count-across-value-const-ref-ref-params/ref.cpp +21 -0
  664. mlsys/tasks/cpp-copy-count-across-value-const-ref-ref-params/sol.hpp +48 -0
  665. mlsys/tasks/cpp-copy-count-across-value-const-ref-ref-params/starter.cpp +6 -0
  666. mlsys/tasks/cpp-copy-count-across-value-const-ref-ref-params/task.md +75 -0
  667. mlsys/tasks/cpp-correct-error-propagation-set-exc-return-null/main.cpp +37 -0
  668. mlsys/tasks/cpp-correct-error-propagation-set-exc-return-null/meta.json +13 -0
  669. mlsys/tasks/cpp-correct-error-propagation-set-exc-return-null/ref.cpp +9 -0
  670. mlsys/tasks/cpp-correct-error-propagation-set-exc-return-null/sol.hpp +38 -0
  671. mlsys/tasks/cpp-correct-error-propagation-set-exc-return-null/starter.cpp +9 -0
  672. mlsys/tasks/cpp-correct-error-propagation-set-exc-return-null/task.md +53 -0
  673. mlsys/tasks/cpp-count-deep-copies-vs-moves-in-a-batch-pipeline/main.cpp +91 -0
  674. mlsys/tasks/cpp-count-deep-copies-vs-moves-in-a-batch-pipeline/meta.json +2 -0
  675. mlsys/tasks/cpp-count-deep-copies-vs-moves-in-a-batch-pipeline/ref.cpp +29 -0
  676. mlsys/tasks/cpp-count-deep-copies-vs-moves-in-a-batch-pipeline/sol.hpp +48 -0
  677. mlsys/tasks/cpp-count-deep-copies-vs-moves-in-a-batch-pipeline/starter.cpp +11 -0
  678. mlsys/tasks/cpp-count-deep-copies-vs-moves-in-a-batch-pipeline/task.md +72 -0
  679. mlsys/tasks/cpp-count-reallocations-element-moves-on-push-back/main.cpp +31 -0
  680. mlsys/tasks/cpp-count-reallocations-element-moves-on-push-back/meta.json +13 -0
  681. mlsys/tasks/cpp-count-reallocations-element-moves-on-push-back/ref.cpp +38 -0
  682. mlsys/tasks/cpp-count-reallocations-element-moves-on-push-back/sol.hpp +56 -0
  683. mlsys/tasks/cpp-count-reallocations-element-moves-on-push-back/starter.cpp +12 -0
  684. mlsys/tasks/cpp-count-reallocations-element-moves-on-push-back/task.md +77 -0
  685. mlsys/tasks/cpp-dangling-reference-to-lifetime-extended-temporary-fix/main.cpp +16 -0
  686. mlsys/tasks/cpp-dangling-reference-to-lifetime-extended-temporary-fix/meta.json +13 -0
  687. mlsys/tasks/cpp-dangling-reference-to-lifetime-extended-temporary-fix/ref.cpp +7 -0
  688. mlsys/tasks/cpp-dangling-reference-to-lifetime-extended-temporary-fix/sol.hpp +14 -0
  689. mlsys/tasks/cpp-dangling-reference-to-lifetime-extended-temporary-fix/starter.cpp +17 -0
  690. mlsys/tasks/cpp-dangling-reference-to-lifetime-extended-temporary-fix/task.md +59 -0
  691. mlsys/tasks/cpp-define-aos-vs-soa-label-10-layouts/main.cpp +28 -0
  692. mlsys/tasks/cpp-define-aos-vs-soa-label-10-layouts/meta.json +13 -0
  693. mlsys/tasks/cpp-define-aos-vs-soa-label-10-layouts/ref.cpp +9 -0
  694. mlsys/tasks/cpp-define-aos-vs-soa-label-10-layouts/sol.hpp +21 -0
  695. mlsys/tasks/cpp-define-aos-vs-soa-label-10-layouts/starter.cpp +9 -0
  696. mlsys/tasks/cpp-define-aos-vs-soa-label-10-layouts/task.md +60 -0
  697. mlsys/tasks/cpp-demangle-12-mangled-names/main.cpp +16 -0
  698. mlsys/tasks/cpp-demangle-12-mangled-names/meta.json +15 -0
  699. mlsys/tasks/cpp-demangle-12-mangled-names/ref.cpp +14 -0
  700. mlsys/tasks/cpp-demangle-12-mangled-names/sol.hpp +35 -0
  701. mlsys/tasks/cpp-demangle-12-mangled-names/starter.cpp +8 -0
  702. mlsys/tasks/cpp-demangle-12-mangled-names/task.md +29 -0
  703. mlsys/tasks/cpp-deque-index-block-offset-mapping/main.cpp +34 -0
  704. mlsys/tasks/cpp-deque-index-block-offset-mapping/meta.json +13 -0
  705. mlsys/tasks/cpp-deque-index-block-offset-mapping/ref.cpp +15 -0
  706. mlsys/tasks/cpp-deque-index-block-offset-mapping/sol.hpp +25 -0
  707. mlsys/tasks/cpp-deque-index-block-offset-mapping/starter.cpp +11 -0
  708. mlsys/tasks/cpp-deque-index-block-offset-mapping/task.md +57 -0
  709. mlsys/tasks/cpp-destructor-order-under-exception-unwinding/main.cpp +61 -0
  710. mlsys/tasks/cpp-destructor-order-under-exception-unwinding/meta.json +2 -0
  711. mlsys/tasks/cpp-destructor-order-under-exception-unwinding/ref.cpp +44 -0
  712. mlsys/tasks/cpp-destructor-order-under-exception-unwinding/sol.hpp +32 -0
  713. mlsys/tasks/cpp-destructor-order-under-exception-unwinding/starter.cpp +13 -0
  714. mlsys/tasks/cpp-destructor-order-under-exception-unwinding/task.md +78 -0
  715. mlsys/tasks/cpp-detection-idiom-has-member-type-trait/main.cpp +17 -0
  716. mlsys/tasks/cpp-detection-idiom-has-member-type-trait/meta.json +13 -0
  717. mlsys/tasks/cpp-detection-idiom-has-member-type-trait/ref.cpp +22 -0
  718. mlsys/tasks/cpp-detection-idiom-has-member-type-trait/sol.hpp +55 -0
  719. mlsys/tasks/cpp-detection-idiom-has-member-type-trait/starter.cpp +17 -0
  720. mlsys/tasks/cpp-detection-idiom-has-member-type-trait/task.md +85 -0
  721. mlsys/tasks/cpp-double-checked-locking-init-exactly-once/main.cpp +25 -0
  722. mlsys/tasks/cpp-double-checked-locking-init-exactly-once/meta.json +13 -0
  723. mlsys/tasks/cpp-double-checked-locking-init-exactly-once/ref.cpp +15 -0
  724. mlsys/tasks/cpp-double-checked-locking-init-exactly-once/sol.hpp +21 -0
  725. mlsys/tasks/cpp-double-checked-locking-init-exactly-once/starter.cpp +11 -0
  726. mlsys/tasks/cpp-double-checked-locking-init-exactly-once/task.md +24 -0
  727. mlsys/tasks/cpp-dtype-shape-mismatch-error-handling/main.cpp +93 -0
  728. mlsys/tasks/cpp-dtype-shape-mismatch-error-handling/meta.json +19 -0
  729. mlsys/tasks/cpp-dtype-shape-mismatch-error-handling/ref.cpp +22 -0
  730. mlsys/tasks/cpp-dtype-shape-mismatch-error-handling/sol.hpp +39 -0
  731. mlsys/tasks/cpp-dtype-shape-mismatch-error-handling/starter.cpp +11 -0
  732. mlsys/tasks/cpp-dtype-shape-mismatch-error-handling/task.md +64 -0
  733. mlsys/tasks/cpp-erase-remove-idiom-correct-result/main.cpp +48 -0
  734. mlsys/tasks/cpp-erase-remove-idiom-correct-result/meta.json +15 -0
  735. mlsys/tasks/cpp-erase-remove-idiom-correct-result/ref.cpp +8 -0
  736. mlsys/tasks/cpp-erase-remove-idiom-correct-result/sol.hpp +14 -0
  737. mlsys/tasks/cpp-erase-remove-idiom-correct-result/starter.cpp +14 -0
  738. mlsys/tasks/cpp-erase-remove-idiom-correct-result/task.md +30 -0
  739. mlsys/tasks/cpp-error-code-vs-exception-result-equivalence/main.cpp +36 -0
  740. mlsys/tasks/cpp-error-code-vs-exception-result-equivalence/meta.json +13 -0
  741. mlsys/tasks/cpp-error-code-vs-exception-result-equivalence/ref.cpp +50 -0
  742. mlsys/tasks/cpp-error-code-vs-exception-result-equivalence/sol.hpp +51 -0
  743. mlsys/tasks/cpp-error-code-vs-exception-result-equivalence/starter.cpp +17 -0
  744. mlsys/tasks/cpp-error-code-vs-exception-result-equivalence/task.md +79 -0
  745. mlsys/tasks/cpp-extern-c-to-fix-a-mangling-link-error/main.cpp +21 -0
  746. mlsys/tasks/cpp-extern-c-to-fix-a-mangling-link-error/meta.json +15 -0
  747. mlsys/tasks/cpp-extern-c-to-fix-a-mangling-link-error/ref.cpp +7 -0
  748. mlsys/tasks/cpp-extern-c-to-fix-a-mangling-link-error/sol.hpp +9 -0
  749. mlsys/tasks/cpp-extern-c-to-fix-a-mangling-link-error/starter.cpp +10 -0
  750. mlsys/tasks/cpp-extern-c-to-fix-a-mangling-link-error/task.md +56 -0
  751. mlsys/tasks/cpp-factory-returns-with-exactly-one-construction/main.cpp +31 -0
  752. mlsys/tasks/cpp-factory-returns-with-exactly-one-construction/meta.json +1 -0
  753. mlsys/tasks/cpp-factory-returns-with-exactly-one-construction/ref.cpp +8 -0
  754. mlsys/tasks/cpp-factory-returns-with-exactly-one-construction/sol.hpp +39 -0
  755. mlsys/tasks/cpp-factory-returns-with-exactly-one-construction/starter.cpp +13 -0
  756. mlsys/tasks/cpp-factory-returns-with-exactly-one-construction/task.md +67 -0
  757. mlsys/tasks/cpp-false-sharing-classifier-10-access-patterns/main.cpp +15 -0
  758. mlsys/tasks/cpp-false-sharing-classifier-10-access-patterns/meta.json +13 -0
  759. mlsys/tasks/cpp-false-sharing-classifier-10-access-patterns/ref.cpp +53 -0
  760. mlsys/tasks/cpp-false-sharing-classifier-10-access-patterns/sol.hpp +45 -0
  761. mlsys/tasks/cpp-false-sharing-classifier-10-access-patterns/starter.cpp +7 -0
  762. mlsys/tasks/cpp-false-sharing-classifier-10-access-patterns/task.md +76 -0
  763. mlsys/tasks/cpp-fix-a-binding-that-copies-instead-of-viewing/main.cpp +35 -0
  764. mlsys/tasks/cpp-fix-a-binding-that-copies-instead-of-viewing/meta.json +19 -0
  765. mlsys/tasks/cpp-fix-a-binding-that-copies-instead-of-viewing/ref.cpp +7 -0
  766. mlsys/tasks/cpp-fix-a-binding-that-copies-instead-of-viewing/sol.hpp +16 -0
  767. mlsys/tasks/cpp-fix-a-binding-that-copies-instead-of-viewing/starter.cpp +12 -0
  768. mlsys/tasks/cpp-fix-a-binding-that-copies-instead-of-viewing/task.md +55 -0
  769. mlsys/tasks/cpp-fix-a-data-race-with-correct-atomics-tsan/main.cpp +32 -0
  770. mlsys/tasks/cpp-fix-a-data-race-with-correct-atomics-tsan/meta.json +2 -0
  771. mlsys/tasks/cpp-fix-a-data-race-with-correct-atomics-tsan/ref.cpp +10 -0
  772. mlsys/tasks/cpp-fix-a-data-race-with-correct-atomics-tsan/sol.hpp +20 -0
  773. mlsys/tasks/cpp-fix-a-data-race-with-correct-atomics-tsan/starter.cpp +14 -0
  774. mlsys/tasks/cpp-fix-a-data-race-with-correct-atomics-tsan/task.md +62 -0
  775. mlsys/tasks/cpp-fix-a-py-decref-leak/main.cpp +25 -0
  776. mlsys/tasks/cpp-fix-a-py-decref-leak/meta.json +13 -0
  777. mlsys/tasks/cpp-fix-a-py-decref-leak/ref.cpp +16 -0
  778. mlsys/tasks/cpp-fix-a-py-decref-leak/sol.hpp +36 -0
  779. mlsys/tasks/cpp-fix-a-py-decref-leak/starter.cpp +19 -0
  780. mlsys/tasks/cpp-fix-a-py-decref-leak/task.md +62 -0
  781. mlsys/tasks/cpp-fix-an-ambiguous-overload-broken-sfinae/main.cpp +11 -0
  782. mlsys/tasks/cpp-fix-an-ambiguous-overload-broken-sfinae/meta.json +15 -0
  783. mlsys/tasks/cpp-fix-an-ambiguous-overload-broken-sfinae/ref.cpp +54 -0
  784. mlsys/tasks/cpp-fix-an-ambiguous-overload-broken-sfinae/sol.hpp +12 -0
  785. mlsys/tasks/cpp-fix-an-ambiguous-overload-broken-sfinae/starter.cpp +55 -0
  786. mlsys/tasks/cpp-fix-an-ambiguous-overload-broken-sfinae/task.md +63 -0
  787. mlsys/tasks/cpp-fix-an-odr-violation-across-tus/main.cpp +16 -0
  788. mlsys/tasks/cpp-fix-an-odr-violation-across-tus/meta.json +15 -0
  789. mlsys/tasks/cpp-fix-an-odr-violation-across-tus/ref.cpp +8 -0
  790. mlsys/tasks/cpp-fix-an-odr-violation-across-tus/sol.hpp +25 -0
  791. mlsys/tasks/cpp-fix-an-odr-violation-across-tus/starter.cpp +13 -0
  792. mlsys/tasks/cpp-fix-an-odr-violation-across-tus/task.md +25 -0
  793. mlsys/tasks/cpp-fix-borrowed-stolen-reference-misuse/main.cpp +43 -0
  794. mlsys/tasks/cpp-fix-borrowed-stolen-reference-misuse/meta.json +13 -0
  795. mlsys/tasks/cpp-fix-borrowed-stolen-reference-misuse/ref.cpp +20 -0
  796. mlsys/tasks/cpp-fix-borrowed-stolen-reference-misuse/sol.hpp +31 -0
  797. mlsys/tasks/cpp-fix-borrowed-stolen-reference-misuse/starter.cpp +20 -0
  798. mlsys/tasks/cpp-fix-borrowed-stolen-reference-misuse/task.md +33 -0
  799. mlsys/tasks/cpp-fix-erase-while-iterating-loop/main.cpp +24 -0
  800. mlsys/tasks/cpp-fix-erase-while-iterating-loop/meta.json +13 -0
  801. mlsys/tasks/cpp-fix-erase-while-iterating-loop/ref.cpp +13 -0
  802. mlsys/tasks/cpp-fix-erase-while-iterating-loop/sol.hpp +28 -0
  803. mlsys/tasks/cpp-fix-erase-while-iterating-loop/starter.cpp +13 -0
  804. mlsys/tasks/cpp-fix-erase-while-iterating-loop/task.md +60 -0
  805. mlsys/tasks/cpp-fix-false-sharing-by-64b-padding/main.cpp +30 -0
  806. mlsys/tasks/cpp-fix-false-sharing-by-64b-padding/meta.json +15 -0
  807. mlsys/tasks/cpp-fix-false-sharing-by-64b-padding/ref.cpp +10 -0
  808. mlsys/tasks/cpp-fix-false-sharing-by-64b-padding/sol.hpp +20 -0
  809. mlsys/tasks/cpp-fix-false-sharing-by-64b-padding/starter.cpp +12 -0
  810. mlsys/tasks/cpp-fix-false-sharing-by-64b-padding/task.md +67 -0
  811. mlsys/tasks/cpp-fix-row-major-vs-col-major-gemm-call/main.cpp +53 -0
  812. mlsys/tasks/cpp-fix-row-major-vs-col-major-gemm-call/meta.json +13 -0
  813. mlsys/tasks/cpp-fix-row-major-vs-col-major-gemm-call/ref.cpp +12 -0
  814. mlsys/tasks/cpp-fix-row-major-vs-col-major-gemm-call/sol.hpp +39 -0
  815. mlsys/tasks/cpp-fix-row-major-vs-col-major-gemm-call/starter.cpp +13 -0
  816. mlsys/tasks/cpp-fix-row-major-vs-col-major-gemm-call/task.md +57 -0
  817. mlsys/tasks/cpp-fix-simd-tail-remainder-handling/main.cpp +31 -0
  818. mlsys/tasks/cpp-fix-simd-tail-remainder-handling/meta.json +13 -0
  819. mlsys/tasks/cpp-fix-simd-tail-remainder-handling/ref.cpp +18 -0
  820. mlsys/tasks/cpp-fix-simd-tail-remainder-handling/sol.hpp +6 -0
  821. mlsys/tasks/cpp-fix-simd-tail-remainder-handling/starter.cpp +15 -0
  822. mlsys/tasks/cpp-fix-simd-tail-remainder-handling/task.md +18 -0
  823. mlsys/tasks/cpp-fix-ub-left-shift-of-negative-oversized-shift/main.cpp +18 -0
  824. mlsys/tasks/cpp-fix-ub-left-shift-of-negative-oversized-shift/meta.json +1 -0
  825. mlsys/tasks/cpp-fix-ub-left-shift-of-negative-oversized-shift/ref.cpp +11 -0
  826. mlsys/tasks/cpp-fix-ub-left-shift-of-negative-oversized-shift/sol.hpp +19 -0
  827. mlsys/tasks/cpp-fix-ub-left-shift-of-negative-oversized-shift/starter.cpp +11 -0
  828. mlsys/tasks/cpp-fix-ub-left-shift-of-negative-oversized-shift/task.md +64 -0
  829. mlsys/tasks/cpp-flop-count-of-a-gemm-configuration/main.cpp +18 -0
  830. mlsys/tasks/cpp-flop-count-of-a-gemm-configuration/meta.json +15 -0
  831. mlsys/tasks/cpp-flop-count-of-a-gemm-configuration/ref.cpp +7 -0
  832. mlsys/tasks/cpp-flop-count-of-a-gemm-configuration/sol.hpp +21 -0
  833. mlsys/tasks/cpp-flop-count-of-a-gemm-configuration/starter.cpp +7 -0
  834. mlsys/tasks/cpp-flop-count-of-a-gemm-configuration/task.md +38 -0
  835. mlsys/tasks/cpp-from-scratch-blocked-gemm-microkernel/main.cpp +35 -0
  836. mlsys/tasks/cpp-from-scratch-blocked-gemm-microkernel/meta.json +2 -0
  837. mlsys/tasks/cpp-from-scratch-blocked-gemm-microkernel/ref.cpp +28 -0
  838. mlsys/tasks/cpp-from-scratch-blocked-gemm-microkernel/sol.hpp +10 -0
  839. mlsys/tasks/cpp-from-scratch-blocked-gemm-microkernel/starter.cpp +12 -0
  840. mlsys/tasks/cpp-from-scratch-blocked-gemm-microkernel/task.md +65 -0
  841. mlsys/tasks/cpp-full-offset-size-table-for-a-struct/main.cpp +98 -0
  842. mlsys/tasks/cpp-full-offset-size-table-for-a-struct/meta.json +13 -0
  843. mlsys/tasks/cpp-full-offset-size-table-for-a-struct/ref.cpp +33 -0
  844. mlsys/tasks/cpp-full-offset-size-table-for-a-struct/sol.hpp +21 -0
  845. mlsys/tasks/cpp-full-offset-size-table-for-a-struct/starter.cpp +10 -0
  846. mlsys/tasks/cpp-full-offset-size-table-for-a-struct/task.md +29 -0
  847. mlsys/tasks/cpp-gguf-style-q4-0-block-pack-unpack-round-trip/main.cpp +110 -0
  848. mlsys/tasks/cpp-gguf-style-q4-0-block-pack-unpack-round-trip/meta.json +19 -0
  849. mlsys/tasks/cpp-gguf-style-q4-0-block-pack-unpack-round-trip/ref.cpp +50 -0
  850. mlsys/tasks/cpp-gguf-style-q4-0-block-pack-unpack-round-trip/sol.hpp +41 -0
  851. mlsys/tasks/cpp-gguf-style-q4-0-block-pack-unpack-round-trip/starter.cpp +15 -0
  852. mlsys/tasks/cpp-gguf-style-q4-0-block-pack-unpack-round-trip/task.md +70 -0
  853. mlsys/tasks/cpp-growth-policy-reproduce-the-capacity-sequence/main.cpp +26 -0
  854. mlsys/tasks/cpp-growth-policy-reproduce-the-capacity-sequence/meta.json +13 -0
  855. mlsys/tasks/cpp-growth-policy-reproduce-the-capacity-sequence/ref.cpp +6 -0
  856. mlsys/tasks/cpp-growth-policy-reproduce-the-capacity-sequence/sol.hpp +21 -0
  857. mlsys/tasks/cpp-growth-policy-reproduce-the-capacity-sequence/starter.cpp +8 -0
  858. mlsys/tasks/cpp-growth-policy-reproduce-the-capacity-sequence/task.md +61 -0
  859. mlsys/tasks/cpp-handle-strided-non-contiguous-input/main.cpp +85 -0
  860. mlsys/tasks/cpp-handle-strided-non-contiguous-input/meta.json +15 -0
  861. mlsys/tasks/cpp-handle-strided-non-contiguous-input/ref.cpp +17 -0
  862. mlsys/tasks/cpp-handle-strided-non-contiguous-input/sol.hpp +28 -0
  863. mlsys/tasks/cpp-handle-strided-non-contiguous-input/starter.cpp +9 -0
  864. mlsys/tasks/cpp-handle-strided-non-contiguous-input/task.md +28 -0
  865. mlsys/tasks/cpp-hidden-visibility-reduces-exported-symbols/main.cpp +93 -0
  866. mlsys/tasks/cpp-hidden-visibility-reduces-exported-symbols/meta.json +1 -0
  867. mlsys/tasks/cpp-hidden-visibility-reduces-exported-symbols/ref.cpp +16 -0
  868. mlsys/tasks/cpp-hidden-visibility-reduces-exported-symbols/sol.hpp +23 -0
  869. mlsys/tasks/cpp-hidden-visibility-reduces-exported-symbols/starter.cpp +8 -0
  870. mlsys/tasks/cpp-hidden-visibility-reduces-exported-symbols/task.md +67 -0
  871. mlsys/tasks/cpp-hoist-loop-invariant-load-by-hand-licm/main.cpp +34 -0
  872. mlsys/tasks/cpp-hoist-loop-invariant-load-by-hand-licm/meta.json +15 -0
  873. mlsys/tasks/cpp-hoist-loop-invariant-load-by-hand-licm/ref.cpp +19 -0
  874. mlsys/tasks/cpp-hoist-loop-invariant-load-by-hand-licm/sol.hpp +34 -0
  875. mlsys/tasks/cpp-hoist-loop-invariant-load-by-hand-licm/starter.cpp +20 -0
  876. mlsys/tasks/cpp-hoist-loop-invariant-load-by-hand-licm/task.md +62 -0
  877. mlsys/tasks/cpp-hot-cold-field-split-to-hit-a-footprint-ratio/main.cpp +54 -0
  878. mlsys/tasks/cpp-hot-cold-field-split-to-hit-a-footprint-ratio/meta.json +2 -0
  879. mlsys/tasks/cpp-hot-cold-field-split-to-hit-a-footprint-ratio/ref.cpp +28 -0
  880. mlsys/tasks/cpp-hot-cold-field-split-to-hit-a-footprint-ratio/sol.hpp +26 -0
  881. mlsys/tasks/cpp-hot-cold-field-split-to-hit-a-footprint-ratio/starter.cpp +12 -0
  882. mlsys/tasks/cpp-hot-cold-field-split-to-hit-a-footprint-ratio/task.md +61 -0
  883. mlsys/tasks/cpp-in-place-c-modify-reflects-in-numpy/main.cpp +49 -0
  884. mlsys/tasks/cpp-in-place-c-modify-reflects-in-numpy/meta.json +13 -0
  885. mlsys/tasks/cpp-in-place-c-modify-reflects-in-numpy/ref.cpp +22 -0
  886. mlsys/tasks/cpp-in-place-c-modify-reflects-in-numpy/sol.hpp +21 -0
  887. mlsys/tasks/cpp-in-place-c-modify-reflects-in-numpy/starter.cpp +19 -0
  888. mlsys/tasks/cpp-in-place-c-modify-reflects-in-numpy/task.md +62 -0
  889. mlsys/tasks/cpp-in-place-vs-out-of-place-vectorization-legality/main.cpp +56 -0
  890. mlsys/tasks/cpp-in-place-vs-out-of-place-vectorization-legality/meta.json +15 -0
  891. mlsys/tasks/cpp-in-place-vs-out-of-place-vectorization-legality/ref.cpp +32 -0
  892. mlsys/tasks/cpp-in-place-vs-out-of-place-vectorization-legality/sol.hpp +28 -0
  893. mlsys/tasks/cpp-in-place-vs-out-of-place-vectorization-legality/starter.cpp +13 -0
  894. mlsys/tasks/cpp-in-place-vs-out-of-place-vectorization-legality/task.md +66 -0
  895. mlsys/tasks/cpp-int8-quantize-dequantize-round-trip/main.cpp +28 -0
  896. mlsys/tasks/cpp-int8-quantize-dequantize-round-trip/meta.json +13 -0
  897. mlsys/tasks/cpp-int8-quantize-dequantize-round-trip/ref.cpp +14 -0
  898. mlsys/tasks/cpp-int8-quantize-dequantize-round-trip/sol.hpp +11 -0
  899. mlsys/tasks/cpp-int8-quantize-dequantize-round-trip/starter.cpp +8 -0
  900. mlsys/tasks/cpp-int8-quantize-dequantize-round-trip/task.md +29 -0
  901. mlsys/tasks/cpp-int8-widening-dot-product-neon/main.cpp +36 -0
  902. mlsys/tasks/cpp-int8-widening-dot-product-neon/meta.json +19 -0
  903. mlsys/tasks/cpp-int8-widening-dot-product-neon/ref.cpp +29 -0
  904. mlsys/tasks/cpp-int8-widening-dot-product-neon/sol.hpp +29 -0
  905. mlsys/tasks/cpp-int8-widening-dot-product-neon/starter.cpp +14 -0
  906. mlsys/tasks/cpp-int8-widening-dot-product-neon/task.md +58 -0
  907. mlsys/tasks/cpp-integer-promotion-conversion-result-prediction/main.cpp +35 -0
  908. mlsys/tasks/cpp-integer-promotion-conversion-result-prediction/meta.json +15 -0
  909. mlsys/tasks/cpp-integer-promotion-conversion-result-prediction/ref.cpp +48 -0
  910. mlsys/tasks/cpp-integer-promotion-conversion-result-prediction/sol.hpp +37 -0
  911. mlsys/tasks/cpp-integer-promotion-conversion-result-prediction/starter.cpp +8 -0
  912. mlsys/tasks/cpp-integer-promotion-conversion-result-prediction/task.md +29 -0
  913. mlsys/tasks/cpp-iterator-invalidation-oracle-20-ops/main.cpp +35 -0
  914. mlsys/tasks/cpp-iterator-invalidation-oracle-20-ops/meta.json +19 -0
  915. mlsys/tasks/cpp-iterator-invalidation-oracle-20-ops/ref.cpp +29 -0
  916. mlsys/tasks/cpp-iterator-invalidation-oracle-20-ops/sol.hpp +38 -0
  917. mlsys/tasks/cpp-iterator-invalidation-oracle-20-ops/starter.cpp +9 -0
  918. mlsys/tasks/cpp-iterator-invalidation-oracle-20-ops/task.md +61 -0
  919. mlsys/tasks/cpp-leak-free-half-built-object-on-throw/main.cpp +136 -0
  920. mlsys/tasks/cpp-leak-free-half-built-object-on-throw/meta.json +15 -0
  921. mlsys/tasks/cpp-leak-free-half-built-object-on-throw/ref.cpp +30 -0
  922. mlsys/tasks/cpp-leak-free-half-built-object-on-throw/sol.hpp +17 -0
  923. mlsys/tasks/cpp-leak-free-half-built-object-on-throw/starter.cpp +32 -0
  924. mlsys/tasks/cpp-leak-free-half-built-object-on-throw/task.md +58 -0
  925. mlsys/tasks/cpp-level-1-2-blas-axpy-gemv-correctness/main.cpp +43 -0
  926. mlsys/tasks/cpp-level-1-2-blas-axpy-gemv-correctness/meta.json +1 -0
  927. mlsys/tasks/cpp-level-1-2-blas-axpy-gemv-correctness/ref.cpp +9 -0
  928. mlsys/tasks/cpp-level-1-2-blas-axpy-gemv-correctness/sol.hpp +35 -0
  929. mlsys/tasks/cpp-level-1-2-blas-axpy-gemv-correctness/starter.cpp +9 -0
  930. mlsys/tasks/cpp-level-1-2-blas-axpy-gemv-correctness/task.md +70 -0
  931. mlsys/tasks/cpp-linkage-classifier-15-declarations/main.cpp +14 -0
  932. mlsys/tasks/cpp-linkage-classifier-15-declarations/meta.json +13 -0
  933. mlsys/tasks/cpp-linkage-classifier-15-declarations/ref.cpp +22 -0
  934. mlsys/tasks/cpp-linkage-classifier-15-declarations/sol.hpp +64 -0
  935. mlsys/tasks/cpp-linkage-classifier-15-declarations/starter.cpp +7 -0
  936. mlsys/tasks/cpp-linkage-classifier-15-declarations/task.md +87 -0
  937. mlsys/tasks/cpp-load-factor-rehash-trigger-count/main.cpp +33 -0
  938. mlsys/tasks/cpp-load-factor-rehash-trigger-count/meta.json +13 -0
  939. mlsys/tasks/cpp-load-factor-rehash-trigger-count/ref.cpp +26 -0
  940. mlsys/tasks/cpp-load-factor-rehash-trigger-count/sol.hpp +21 -0
  941. mlsys/tasks/cpp-load-factor-rehash-trigger-count/starter.cpp +9 -0
  942. mlsys/tasks/cpp-load-factor-rehash-trigger-count/task.md +30 -0
  943. mlsys/tasks/cpp-make-shared-vs-shared-ptr-new-allocation-count/main.cpp +47 -0
  944. mlsys/tasks/cpp-make-shared-vs-shared-ptr-new-allocation-count/meta.json +2 -0
  945. mlsys/tasks/cpp-make-shared-vs-shared-ptr-new-allocation-count/ref.cpp +8 -0
  946. mlsys/tasks/cpp-make-shared-vs-shared-ptr-new-allocation-count/sol.hpp +22 -0
  947. mlsys/tasks/cpp-make-shared-vs-shared-ptr-new-allocation-count/starter.cpp +10 -0
  948. mlsys/tasks/cpp-make-shared-vs-shared-ptr-new-allocation-count/task.md +58 -0
  949. mlsys/tasks/cpp-map-ub-category-label-to-15-snippets/main.cpp +35 -0
  950. mlsys/tasks/cpp-map-ub-category-label-to-15-snippets/meta.json +13 -0
  951. mlsys/tasks/cpp-map-ub-category-label-to-15-snippets/ref.cpp +13 -0
  952. mlsys/tasks/cpp-map-ub-category-label-to-15-snippets/sol.hpp +20 -0
  953. mlsys/tasks/cpp-map-ub-category-label-to-15-snippets/starter.cpp +8 -0
  954. mlsys/tasks/cpp-map-ub-category-label-to-15-snippets/task.md +61 -0
  955. mlsys/tasks/cpp-memory-order-reordering-legality-12-cases/main.cpp +41 -0
  956. mlsys/tasks/cpp-memory-order-reordering-legality-12-cases/meta.json +19 -0
  957. mlsys/tasks/cpp-memory-order-reordering-legality-12-cases/ref.cpp +30 -0
  958. mlsys/tasks/cpp-memory-order-reordering-legality-12-cases/sol.hpp +29 -0
  959. mlsys/tasks/cpp-memory-order-reordering-legality-12-cases/starter.cpp +8 -0
  960. mlsys/tasks/cpp-memory-order-reordering-legality-12-cases/task.md +27 -0
  961. mlsys/tasks/cpp-message-passing-litmus-allowed-outcomes/main.cpp +25 -0
  962. mlsys/tasks/cpp-message-passing-litmus-allowed-outcomes/meta.json +19 -0
  963. mlsys/tasks/cpp-message-passing-litmus-allowed-outcomes/ref.cpp +22 -0
  964. mlsys/tasks/cpp-message-passing-litmus-allowed-outcomes/sol.hpp +31 -0
  965. mlsys/tasks/cpp-message-passing-litmus-allowed-outcomes/starter.cpp +11 -0
  966. mlsys/tasks/cpp-message-passing-litmus-allowed-outcomes/task.md +61 -0
  967. mlsys/tasks/cpp-mini-variant-active-member-switch/main.cpp +62 -0
  968. mlsys/tasks/cpp-mini-variant-active-member-switch/meta.json +13 -0
  969. mlsys/tasks/cpp-mini-variant-active-member-switch/ref.cpp +43 -0
  970. mlsys/tasks/cpp-mini-variant-active-member-switch/sol.hpp +64 -0
  971. mlsys/tasks/cpp-mini-variant-active-member-switch/starter.cpp +26 -0
  972. mlsys/tasks/cpp-mini-variant-active-member-switch/task.md +88 -0
  973. mlsys/tasks/cpp-minimize-distinct-template-instantiations/main.cpp +36 -0
  974. mlsys/tasks/cpp-minimize-distinct-template-instantiations/meta.json +15 -0
  975. mlsys/tasks/cpp-minimize-distinct-template-instantiations/ref.cpp +15 -0
  976. mlsys/tasks/cpp-minimize-distinct-template-instantiations/sol.hpp +28 -0
  977. mlsys/tasks/cpp-minimize-distinct-template-instantiations/starter.cpp +17 -0
  978. mlsys/tasks/cpp-minimize-distinct-template-instantiations/task.md +31 -0
  979. mlsys/tasks/cpp-move-ctor-forgets-to-null-double-free-fix/main.cpp +84 -0
  980. mlsys/tasks/cpp-move-ctor-forgets-to-null-double-free-fix/meta.json +21 -0
  981. mlsys/tasks/cpp-move-ctor-forgets-to-null-double-free-fix/ref.cpp +28 -0
  982. mlsys/tasks/cpp-move-ctor-forgets-to-null-double-free-fix/sol.hpp +38 -0
  983. mlsys/tasks/cpp-move-ctor-forgets-to-null-double-free-fix/starter.cpp +28 -0
  984. mlsys/tasks/cpp-move-ctor-forgets-to-null-double-free-fix/task.md +50 -0
  985. mlsys/tasks/cpp-multiple-accumulators-to-break-fp-dep-chain/main.cpp +23 -0
  986. mlsys/tasks/cpp-multiple-accumulators-to-break-fp-dep-chain/meta.json +2 -0
  987. mlsys/tasks/cpp-multiple-accumulators-to-break-fp-dep-chain/ref.cpp +10 -0
  988. mlsys/tasks/cpp-multiple-accumulators-to-break-fp-dep-chain/sol.hpp +16 -0
  989. mlsys/tasks/cpp-multiple-accumulators-to-break-fp-dep-chain/starter.cpp +9 -0
  990. mlsys/tasks/cpp-multiple-accumulators-to-break-fp-dep-chain/task.md +74 -0
  991. mlsys/tasks/cpp-multiple-inheritance-this-pointer-adjustment/main.cpp +12 -0
  992. mlsys/tasks/cpp-multiple-inheritance-this-pointer-adjustment/meta.json +2 -0
  993. mlsys/tasks/cpp-multiple-inheritance-this-pointer-adjustment/ref.cpp +14 -0
  994. mlsys/tasks/cpp-multiple-inheritance-this-pointer-adjustment/sol.hpp +43 -0
  995. mlsys/tasks/cpp-multiple-inheritance-this-pointer-adjustment/starter.cpp +14 -0
  996. mlsys/tasks/cpp-multiple-inheritance-this-pointer-adjustment/task.md +65 -0
  997. mlsys/tasks/cpp-name-the-storage-duration/main.cpp +129 -0
  998. mlsys/tasks/cpp-name-the-storage-duration/meta.json +15 -0
  999. mlsys/tasks/cpp-name-the-storage-duration/ref.cpp +14 -0
  1000. mlsys/tasks/cpp-name-the-storage-duration/sol.hpp +7 -0
  1001. mlsys/tasks/cpp-name-the-storage-duration/starter.cpp +8 -0
  1002. mlsys/tasks/cpp-name-the-storage-duration/task.md +82 -0
  1003. mlsys/tasks/cpp-neon-f32x4-saxpy-from-intrinsics/main.cpp +20 -0
  1004. mlsys/tasks/cpp-neon-f32x4-saxpy-from-intrinsics/meta.json +2 -0
  1005. mlsys/tasks/cpp-neon-f32x4-saxpy-from-intrinsics/ref.cpp +16 -0
  1006. mlsys/tasks/cpp-neon-f32x4-saxpy-from-intrinsics/sol.hpp +8 -0
  1007. mlsys/tasks/cpp-neon-f32x4-saxpy-from-intrinsics/starter.cpp +10 -0
  1008. mlsys/tasks/cpp-neon-f32x4-saxpy-from-intrinsics/task.md +46 -0
  1009. mlsys/tasks/cpp-neon-horizontal-sum-dot-product/main.cpp +32 -0
  1010. mlsys/tasks/cpp-neon-horizontal-sum-dot-product/meta.json +9 -0
  1011. mlsys/tasks/cpp-neon-horizontal-sum-dot-product/ref.cpp +29 -0
  1012. mlsys/tasks/cpp-neon-horizontal-sum-dot-product/sol.hpp +26 -0
  1013. mlsys/tasks/cpp-neon-horizontal-sum-dot-product/starter.cpp +10 -0
  1014. mlsys/tasks/cpp-neon-horizontal-sum-dot-product/task.md +65 -0
  1015. mlsys/tasks/cpp-noexcept-move-unlocks-vector-growth-moves/main.cpp +23 -0
  1016. mlsys/tasks/cpp-noexcept-move-unlocks-vector-growth-moves/meta.json +19 -0
  1017. mlsys/tasks/cpp-noexcept-move-unlocks-vector-growth-moves/ref.cpp +53 -0
  1018. mlsys/tasks/cpp-noexcept-move-unlocks-vector-growth-moves/sol.hpp +37 -0
  1019. mlsys/tasks/cpp-noexcept-move-unlocks-vector-growth-moves/starter.cpp +6 -0
  1020. mlsys/tasks/cpp-noexcept-move-unlocks-vector-growth-moves/task.md +26 -0
  1021. mlsys/tasks/cpp-open-addressing-hash-map-probe-sequence/main.cpp +28 -0
  1022. mlsys/tasks/cpp-open-addressing-hash-map-probe-sequence/meta.json +19 -0
  1023. mlsys/tasks/cpp-open-addressing-hash-map-probe-sequence/ref.cpp +12 -0
  1024. mlsys/tasks/cpp-open-addressing-hash-map-probe-sequence/sol.hpp +24 -0
  1025. mlsys/tasks/cpp-open-addressing-hash-map-probe-sequence/starter.cpp +10 -0
  1026. mlsys/tasks/cpp-open-addressing-hash-map-probe-sequence/task.md +48 -0
  1027. mlsys/tasks/cpp-overload-resolution-winner-15-calls/main.cpp +151 -0
  1028. mlsys/tasks/cpp-overload-resolution-winner-15-calls/meta.json +1 -0
  1029. mlsys/tasks/cpp-overload-resolution-winner-15-calls/ref.cpp +24 -0
  1030. mlsys/tasks/cpp-overload-resolution-winner-15-calls/sol.hpp +8 -0
  1031. mlsys/tasks/cpp-overload-resolution-winner-15-calls/starter.cpp +7 -0
  1032. mlsys/tasks/cpp-overload-resolution-winner-15-calls/task.md +74 -0
  1033. mlsys/tasks/cpp-peak-live-object-count-under-a-workload/main.cpp +38 -0
  1034. mlsys/tasks/cpp-peak-live-object-count-under-a-workload/meta.json +13 -0
  1035. mlsys/tasks/cpp-peak-live-object-count-under-a-workload/ref.cpp +23 -0
  1036. mlsys/tasks/cpp-peak-live-object-count-under-a-workload/sol.hpp +32 -0
  1037. mlsys/tasks/cpp-peak-live-object-count-under-a-workload/starter.cpp +8 -0
  1038. mlsys/tasks/cpp-peak-live-object-count-under-a-workload/task.md +59 -0
  1039. mlsys/tasks/cpp-pick-the-right-smart-pointer-12-scenarios/main.cpp +10 -0
  1040. mlsys/tasks/cpp-pick-the-right-smart-pointer-12-scenarios/meta.json +8 -0
  1041. mlsys/tasks/cpp-pick-the-right-smart-pointer-12-scenarios/ref.cpp +18 -0
  1042. mlsys/tasks/cpp-pick-the-right-smart-pointer-12-scenarios/sol.hpp +41 -0
  1043. mlsys/tasks/cpp-pick-the-right-smart-pointer-12-scenarios/starter.cpp +7 -0
  1044. mlsys/tasks/cpp-pick-the-right-smart-pointer-12-scenarios/task.md +66 -0
  1045. mlsys/tasks/cpp-pick-the-weakest-correct-memory-order-8-patterns/main.cpp +29 -0
  1046. mlsys/tasks/cpp-pick-the-weakest-correct-memory-order-8-patterns/meta.json +15 -0
  1047. mlsys/tasks/cpp-pick-the-weakest-correct-memory-order-8-patterns/ref.cpp +15 -0
  1048. mlsys/tasks/cpp-pick-the-weakest-correct-memory-order-8-patterns/sol.hpp +31 -0
  1049. mlsys/tasks/cpp-pick-the-weakest-correct-memory-order-8-patterns/starter.cpp +20 -0
  1050. mlsys/tasks/cpp-pick-the-weakest-correct-memory-order-8-patterns/task.md +31 -0
  1051. mlsys/tasks/cpp-placement-new-one-object-then-explicit-destroy/main.cpp +29 -0
  1052. mlsys/tasks/cpp-placement-new-one-object-then-explicit-destroy/meta.json +2 -0
  1053. mlsys/tasks/cpp-placement-new-one-object-then-explicit-destroy/ref.cpp +9 -0
  1054. mlsys/tasks/cpp-placement-new-one-object-then-explicit-destroy/sol.hpp +22 -0
  1055. mlsys/tasks/cpp-placement-new-one-object-then-explicit-destroy/starter.cpp +11 -0
  1056. mlsys/tasks/cpp-placement-new-one-object-then-explicit-destroy/task.md +61 -0
  1057. mlsys/tasks/cpp-portable-checked-overflow-detection/main.cpp +26 -0
  1058. mlsys/tasks/cpp-portable-checked-overflow-detection/meta.json +13 -0
  1059. mlsys/tasks/cpp-portable-checked-overflow-detection/ref.cpp +22 -0
  1060. mlsys/tasks/cpp-portable-checked-overflow-detection/sol.hpp +30 -0
  1061. mlsys/tasks/cpp-portable-checked-overflow-detection/starter.cpp +17 -0
  1062. mlsys/tasks/cpp-portable-checked-overflow-detection/task.md +55 -0
  1063. mlsys/tasks/cpp-predict-mangled-names-for-12-signatures/main.cpp +27 -0
  1064. mlsys/tasks/cpp-predict-mangled-names-for-12-signatures/meta.json +13 -0
  1065. mlsys/tasks/cpp-predict-mangled-names-for-12-signatures/ref.cpp +64 -0
  1066. mlsys/tasks/cpp-predict-mangled-names-for-12-signatures/sol.hpp +33 -0
  1067. mlsys/tasks/cpp-predict-mangled-names-for-12-signatures/starter.cpp +8 -0
  1068. mlsys/tasks/cpp-predict-mangled-names-for-12-signatures/task.md +54 -0
  1069. mlsys/tasks/cpp-predict-refcount-after-12-c-api-operations/main.cpp +67 -0
  1070. mlsys/tasks/cpp-predict-refcount-after-12-c-api-operations/meta.json +15 -0
  1071. mlsys/tasks/cpp-predict-refcount-after-12-c-api-operations/ref.cpp +34 -0
  1072. mlsys/tasks/cpp-predict-refcount-after-12-c-api-operations/sol.hpp +9 -0
  1073. mlsys/tasks/cpp-predict-refcount-after-12-c-api-operations/starter.cpp +8 -0
  1074. mlsys/tasks/cpp-predict-refcount-after-12-c-api-operations/task.md +62 -0
  1075. mlsys/tasks/cpp-predict-sizeof-of-a-small-struct/main.cpp +52 -0
  1076. mlsys/tasks/cpp-predict-sizeof-of-a-small-struct/meta.json +2 -0
  1077. mlsys/tasks/cpp-predict-sizeof-of-a-small-struct/ref.cpp +16 -0
  1078. mlsys/tasks/cpp-predict-sizeof-of-a-small-struct/sol.hpp +9 -0
  1079. mlsys/tasks/cpp-predict-sizeof-of-a-small-struct/starter.cpp +10 -0
  1080. mlsys/tasks/cpp-predict-sizeof-of-a-small-struct/task.md +58 -0
  1081. mlsys/tasks/cpp-predict-symbol-definition-count-for-a-header/main.cpp +62 -0
  1082. mlsys/tasks/cpp-predict-symbol-definition-count-for-a-header/meta.json +15 -0
  1083. mlsys/tasks/cpp-predict-symbol-definition-count-for-a-header/ref.cpp +23 -0
  1084. mlsys/tasks/cpp-predict-symbol-definition-count-for-a-header/sol.hpp +29 -0
  1085. mlsys/tasks/cpp-predict-symbol-definition-count-for-a-header/starter.cpp +7 -0
  1086. mlsys/tasks/cpp-predict-symbol-definition-count-for-a-header/task.md +26 -0
  1087. mlsys/tasks/cpp-predict-which-loops-autovectorize/main.cpp +143 -0
  1088. mlsys/tasks/cpp-predict-which-loops-autovectorize/meta.json +15 -0
  1089. mlsys/tasks/cpp-predict-which-loops-autovectorize/ref.cpp +14 -0
  1090. mlsys/tasks/cpp-predict-which-loops-autovectorize/sol.hpp +51 -0
  1091. mlsys/tasks/cpp-predict-which-loops-autovectorize/starter.cpp +12 -0
  1092. mlsys/tasks/cpp-predict-which-loops-autovectorize/task.md +27 -0
  1093. mlsys/tasks/cpp-predict-which-snippets-ubsan-flags/main.cpp +93 -0
  1094. mlsys/tasks/cpp-predict-which-snippets-ubsan-flags/meta.json +1 -0
  1095. mlsys/tasks/cpp-predict-which-snippets-ubsan-flags/ref.cpp +24 -0
  1096. mlsys/tasks/cpp-predict-which-snippets-ubsan-flags/sol.hpp +6 -0
  1097. mlsys/tasks/cpp-predict-which-snippets-ubsan-flags/starter.cpp +7 -0
  1098. mlsys/tasks/cpp-predict-which-snippets-ubsan-flags/task.md +68 -0
  1099. mlsys/tasks/cpp-producer-consumer-conservation-condvar/main.cpp +48 -0
  1100. mlsys/tasks/cpp-producer-consumer-conservation-condvar/meta.json +19 -0
  1101. mlsys/tasks/cpp-producer-consumer-conservation-condvar/ref.cpp +29 -0
  1102. mlsys/tasks/cpp-producer-consumer-conservation-condvar/sol.hpp +30 -0
  1103. mlsys/tasks/cpp-producer-consumer-conservation-condvar/starter.cpp +15 -0
  1104. mlsys/tasks/cpp-producer-consumer-conservation-condvar/task.md +27 -0
  1105. mlsys/tasks/cpp-read-a-nested-pointer-reference-const-declaration/main.cpp +9 -0
  1106. mlsys/tasks/cpp-read-a-nested-pointer-reference-const-declaration/meta.json +9 -0
  1107. mlsys/tasks/cpp-read-a-nested-pointer-reference-const-declaration/ref.cpp +38 -0
  1108. mlsys/tasks/cpp-read-a-nested-pointer-reference-const-declaration/sol.hpp +10 -0
  1109. mlsys/tasks/cpp-read-a-nested-pointer-reference-const-declaration/starter.cpp +32 -0
  1110. mlsys/tasks/cpp-read-a-nested-pointer-reference-const-declaration/task.md +76 -0
  1111. mlsys/tasks/cpp-read-write-rebind-legality-3-bits-20/main.cpp +85 -0
  1112. mlsys/tasks/cpp-read-write-rebind-legality-3-bits-20/meta.json +1 -0
  1113. mlsys/tasks/cpp-read-write-rebind-legality-3-bits-20/ref.cpp +34 -0
  1114. mlsys/tasks/cpp-read-write-rebind-legality-3-bits-20/sol.hpp +18 -0
  1115. mlsys/tasks/cpp-read-write-rebind-legality-3-bits-20/starter.cpp +8 -0
  1116. mlsys/tasks/cpp-read-write-rebind-legality-3-bits-20/task.md +75 -0
  1117. mlsys/tasks/cpp-redundant-load-delta-aliased-vs-restrict-accumulation/main.cpp +56 -0
  1118. mlsys/tasks/cpp-redundant-load-delta-aliased-vs-restrict-accumulation/meta.json +19 -0
  1119. mlsys/tasks/cpp-redundant-load-delta-aliased-vs-restrict-accumulation/ref.cpp +17 -0
  1120. mlsys/tasks/cpp-redundant-load-delta-aliased-vs-restrict-accumulation/sol.hpp +34 -0
  1121. mlsys/tasks/cpp-redundant-load-delta-aliased-vs-restrict-accumulation/starter.cpp +15 -0
  1122. mlsys/tasks/cpp-redundant-load-delta-aliased-vs-restrict-accumulation/task.md +59 -0
  1123. mlsys/tasks/cpp-refactor-two-return-paths-to-preserve-nrvo/main.cpp +20 -0
  1124. mlsys/tasks/cpp-refactor-two-return-paths-to-preserve-nrvo/meta.json +13 -0
  1125. mlsys/tasks/cpp-refactor-two-return-paths-to-preserve-nrvo/ref.cpp +13 -0
  1126. mlsys/tasks/cpp-refactor-two-return-paths-to-preserve-nrvo/sol.hpp +35 -0
  1127. mlsys/tasks/cpp-refactor-two-return-paths-to-preserve-nrvo/starter.cpp +11 -0
  1128. mlsys/tasks/cpp-refactor-two-return-paths-to-preserve-nrvo/task.md +65 -0
  1129. mlsys/tasks/cpp-refcount-balance-for-a-new-tuple-returner/main.cpp +47 -0
  1130. mlsys/tasks/cpp-refcount-balance-for-a-new-tuple-returner/meta.json +2 -0
  1131. mlsys/tasks/cpp-refcount-balance-for-a-new-tuple-returner/ref.cpp +15 -0
  1132. mlsys/tasks/cpp-refcount-balance-for-a-new-tuple-returner/sol.hpp +40 -0
  1133. mlsys/tasks/cpp-refcount-balance-for-a-new-tuple-returner/starter.cpp +11 -0
  1134. mlsys/tasks/cpp-refcount-balance-for-a-new-tuple-returner/task.md +64 -0
  1135. mlsys/tasks/cpp-remove-an-autovectorization-blocker/main.cpp +34 -0
  1136. mlsys/tasks/cpp-remove-an-autovectorization-blocker/meta.json +19 -0
  1137. mlsys/tasks/cpp-remove-an-autovectorization-blocker/ref.cpp +10 -0
  1138. mlsys/tasks/cpp-remove-an-autovectorization-blocker/sol.hpp +14 -0
  1139. mlsys/tasks/cpp-remove-an-autovectorization-blocker/starter.cpp +13 -0
  1140. mlsys/tasks/cpp-remove-an-autovectorization-blocker/task.md +20 -0
  1141. mlsys/tasks/cpp-remove-cv-decay-trait-from-scratch/main.cpp +14 -0
  1142. mlsys/tasks/cpp-remove-cv-decay-trait-from-scratch/meta.json +15 -0
  1143. mlsys/tasks/cpp-remove-cv-decay-trait-from-scratch/ref.cpp +44 -0
  1144. mlsys/tasks/cpp-remove-cv-decay-trait-from-scratch/sol.hpp +38 -0
  1145. mlsys/tasks/cpp-remove-cv-decay-trait-from-scratch/starter.cpp +31 -0
  1146. mlsys/tasks/cpp-remove-cv-decay-trait-from-scratch/task.md +28 -0
  1147. mlsys/tasks/cpp-remove-return-std-move-pessimization/main.cpp +25 -0
  1148. mlsys/tasks/cpp-remove-return-std-move-pessimization/meta.json +19 -0
  1149. mlsys/tasks/cpp-remove-return-std-move-pessimization/ref.cpp +6 -0
  1150. mlsys/tasks/cpp-remove-return-std-move-pessimization/sol.hpp +33 -0
  1151. mlsys/tasks/cpp-remove-return-std-move-pessimization/starter.cpp +11 -0
  1152. mlsys/tasks/cpp-remove-return-std-move-pessimization/task.md +44 -0
  1153. mlsys/tasks/cpp-reorder-struct-members-to-minimize-sizeof/main.cpp +50 -0
  1154. mlsys/tasks/cpp-reorder-struct-members-to-minimize-sizeof/meta.json +1 -0
  1155. mlsys/tasks/cpp-reorder-struct-members-to-minimize-sizeof/ref.cpp +21 -0
  1156. mlsys/tasks/cpp-reorder-struct-members-to-minimize-sizeof/sol.hpp +10 -0
  1157. mlsys/tasks/cpp-reorder-struct-members-to-minimize-sizeof/starter.cpp +12 -0
  1158. mlsys/tasks/cpp-reorder-struct-members-to-minimize-sizeof/task.md +61 -0
  1159. mlsys/tasks/cpp-replace-shared-ptr-with-unique-ptr-where-sole-owned/main.cpp +60 -0
  1160. mlsys/tasks/cpp-replace-shared-ptr-with-unique-ptr-where-sole-owned/meta.json +15 -0
  1161. mlsys/tasks/cpp-replace-shared-ptr-with-unique-ptr-where-sole-owned/ref.cpp +10 -0
  1162. mlsys/tasks/cpp-replace-shared-ptr-with-unique-ptr-where-sole-owned/sol.hpp +27 -0
  1163. mlsys/tasks/cpp-replace-shared-ptr-with-unique-ptr-where-sole-owned/starter.cpp +12 -0
  1164. mlsys/tasks/cpp-replace-shared-ptr-with-unique-ptr-where-sole-owned/task.md +66 -0
  1165. mlsys/tasks/cpp-reproduce-a-target-ctor-copy-move-dtor-event-sequence/main.cpp +23 -0
  1166. mlsys/tasks/cpp-reproduce-a-target-ctor-copy-move-dtor-event-sequence/meta.json +2 -0
  1167. mlsys/tasks/cpp-reproduce-a-target-ctor-copy-move-dtor-event-sequence/ref.cpp +17 -0
  1168. mlsys/tasks/cpp-reproduce-a-target-ctor-copy-move-dtor-event-sequence/sol.hpp +38 -0
  1169. mlsys/tasks/cpp-reproduce-a-target-ctor-copy-move-dtor-event-sequence/starter.cpp +7 -0
  1170. mlsys/tasks/cpp-reproduce-a-target-ctor-copy-move-dtor-event-sequence/task.md +64 -0
  1171. mlsys/tasks/cpp-reserve-to-prevent-pointer-invalidation/main.cpp +23 -0
  1172. mlsys/tasks/cpp-reserve-to-prevent-pointer-invalidation/meta.json +15 -0
  1173. mlsys/tasks/cpp-reserve-to-prevent-pointer-invalidation/ref.cpp +23 -0
  1174. mlsys/tasks/cpp-reserve-to-prevent-pointer-invalidation/sol.hpp +27 -0
  1175. mlsys/tasks/cpp-reserve-to-prevent-pointer-invalidation/starter.cpp +8 -0
  1176. mlsys/tasks/cpp-reserve-to-prevent-pointer-invalidation/task.md +61 -0
  1177. mlsys/tasks/cpp-restrict-enabled-load-hoist-on-saxpy-gemv/main.cpp +59 -0
  1178. mlsys/tasks/cpp-restrict-enabled-load-hoist-on-saxpy-gemv/meta.json +19 -0
  1179. mlsys/tasks/cpp-restrict-enabled-load-hoist-on-saxpy-gemv/ref.cpp +19 -0
  1180. mlsys/tasks/cpp-restrict-enabled-load-hoist-on-saxpy-gemv/sol.hpp +31 -0
  1181. mlsys/tasks/cpp-restrict-enabled-load-hoist-on-saxpy-gemv/starter.cpp +17 -0
  1182. mlsys/tasks/cpp-restrict-enabled-load-hoist-on-saxpy-gemv/task.md +56 -0
  1183. mlsys/tasks/cpp-saturating-add-sub-mul-without-ub/main.cpp +20 -0
  1184. mlsys/tasks/cpp-saturating-add-sub-mul-without-ub/meta.json +19 -0
  1185. mlsys/tasks/cpp-saturating-add-sub-mul-without-ub/ref.cpp +22 -0
  1186. mlsys/tasks/cpp-saturating-add-sub-mul-without-ub/sol.hpp +10 -0
  1187. mlsys/tasks/cpp-saturating-add-sub-mul-without-ub/starter.cpp +16 -0
  1188. mlsys/tasks/cpp-saturating-add-sub-mul-without-ub/task.md +25 -0
  1189. mlsys/tasks/cpp-scalar-vs-simd-equivalence-classifier/main.cpp +95 -0
  1190. mlsys/tasks/cpp-scalar-vs-simd-equivalence-classifier/meta.json +15 -0
  1191. mlsys/tasks/cpp-scalar-vs-simd-equivalence-classifier/ref.cpp +29 -0
  1192. mlsys/tasks/cpp-scalar-vs-simd-equivalence-classifier/sol.hpp +37 -0
  1193. mlsys/tasks/cpp-scalar-vs-simd-equivalence-classifier/starter.cpp +30 -0
  1194. mlsys/tasks/cpp-scalar-vs-simd-equivalence-classifier/task.md +28 -0
  1195. mlsys/tasks/cpp-scoped-arena-lifo-ctor-dtor-order/main.cpp +19 -0
  1196. mlsys/tasks/cpp-scoped-arena-lifo-ctor-dtor-order/meta.json +1 -0
  1197. mlsys/tasks/cpp-scoped-arena-lifo-ctor-dtor-order/ref.cpp +26 -0
  1198. mlsys/tasks/cpp-scoped-arena-lifo-ctor-dtor-order/sol.hpp +48 -0
  1199. mlsys/tasks/cpp-scoped-arena-lifo-ctor-dtor-order/starter.cpp +17 -0
  1200. mlsys/tasks/cpp-scoped-arena-lifo-ctor-dtor-order/task.md +61 -0
  1201. mlsys/tasks/cpp-sfinae-select-int-vs-float-code-path/main.cpp +18 -0
  1202. mlsys/tasks/cpp-sfinae-select-int-vs-float-code-path/meta.json +2 -0
  1203. mlsys/tasks/cpp-sfinae-select-int-vs-float-code-path/ref.cpp +23 -0
  1204. mlsys/tasks/cpp-sfinae-select-int-vs-float-code-path/sol.hpp +14 -0
  1205. mlsys/tasks/cpp-sfinae-select-int-vs-float-code-path/starter.cpp +18 -0
  1206. mlsys/tasks/cpp-sfinae-select-int-vs-float-code-path/task.md +65 -0
  1207. mlsys/tasks/cpp-shared-ptr-aliasing-constructor-subobject-ownership/main.cpp +50 -0
  1208. mlsys/tasks/cpp-shared-ptr-aliasing-constructor-subobject-ownership/meta.json +2 -0
  1209. mlsys/tasks/cpp-shared-ptr-aliasing-constructor-subobject-ownership/ref.cpp +8 -0
  1210. mlsys/tasks/cpp-shared-ptr-aliasing-constructor-subobject-ownership/sol.hpp +34 -0
  1211. mlsys/tasks/cpp-shared-ptr-aliasing-constructor-subobject-ownership/starter.cpp +9 -0
  1212. mlsys/tasks/cpp-shared-ptr-aliasing-constructor-subobject-ownership/task.md +66 -0
  1213. mlsys/tasks/cpp-single-inheritance-object-layout-offsets/main.cpp +13 -0
  1214. mlsys/tasks/cpp-single-inheritance-object-layout-offsets/meta.json +2 -0
  1215. mlsys/tasks/cpp-single-inheritance-object-layout-offsets/ref.cpp +16 -0
  1216. mlsys/tasks/cpp-single-inheritance-object-layout-offsets/sol.hpp +43 -0
  1217. mlsys/tasks/cpp-single-inheritance-object-layout-offsets/starter.cpp +17 -0
  1218. mlsys/tasks/cpp-single-inheritance-object-layout-offsets/task.md +86 -0
  1219. mlsys/tasks/cpp-sizeof-with-vs-without-a-virtual-vptr/main.cpp +49 -0
  1220. mlsys/tasks/cpp-sizeof-with-vs-without-a-virtual-vptr/meta.json +8 -0
  1221. mlsys/tasks/cpp-sizeof-with-vs-without-a-virtual-vptr/ref.cpp +9 -0
  1222. mlsys/tasks/cpp-sizeof-with-vs-without-a-virtual-vptr/sol.hpp +25 -0
  1223. mlsys/tasks/cpp-sizeof-with-vs-without-a-virtual-vptr/starter.cpp +9 -0
  1224. mlsys/tasks/cpp-sizeof-with-vs-without-a-virtual-vptr/task.md +52 -0
  1225. mlsys/tasks/cpp-slab-storage-reuse-stale-pointer-launder-fix/main.cpp +9 -0
  1226. mlsys/tasks/cpp-slab-storage-reuse-stale-pointer-launder-fix/meta.json +13 -0
  1227. mlsys/tasks/cpp-slab-storage-reuse-stale-pointer-launder-fix/ref.cpp +23 -0
  1228. mlsys/tasks/cpp-slab-storage-reuse-stale-pointer-launder-fix/sol.hpp +26 -0
  1229. mlsys/tasks/cpp-slab-storage-reuse-stale-pointer-launder-fix/starter.cpp +15 -0
  1230. mlsys/tasks/cpp-slab-storage-reuse-stale-pointer-launder-fix/task.md +54 -0
  1231. mlsys/tasks/cpp-small-vector-t-n-with-inline-storage/main.cpp +40 -0
  1232. mlsys/tasks/cpp-small-vector-t-n-with-inline-storage/meta.json +1 -0
  1233. mlsys/tasks/cpp-small-vector-t-n-with-inline-storage/ref.cpp +45 -0
  1234. mlsys/tasks/cpp-small-vector-t-n-with-inline-storage/sol.hpp +52 -0
  1235. mlsys/tasks/cpp-small-vector-t-n-with-inline-storage/starter.cpp +32 -0
  1236. mlsys/tasks/cpp-small-vector-t-n-with-inline-storage/task.md +56 -0
  1237. mlsys/tasks/cpp-spsc-ring-buffer-no-loss-no-duplication/main.cpp +66 -0
  1238. mlsys/tasks/cpp-spsc-ring-buffer-no-loss-no-duplication/meta.json +2 -0
  1239. mlsys/tasks/cpp-spsc-ring-buffer-no-loss-no-duplication/ref.cpp +23 -0
  1240. mlsys/tasks/cpp-spsc-ring-buffer-no-loss-no-duplication/sol.hpp +43 -0
  1241. mlsys/tasks/cpp-spsc-ring-buffer-no-loss-no-duplication/starter.cpp +20 -0
  1242. mlsys/tasks/cpp-spsc-ring-buffer-no-loss-no-duplication/task.md +69 -0
  1243. mlsys/tasks/cpp-standard-layout-trivially-copyable-flags-12-structs/main.cpp +22 -0
  1244. mlsys/tasks/cpp-standard-layout-trivially-copyable-flags-12-structs/meta.json +1 -0
  1245. mlsys/tasks/cpp-standard-layout-trivially-copyable-flags-12-structs/ref.cpp +35 -0
  1246. mlsys/tasks/cpp-standard-layout-trivially-copyable-flags-12-structs/sol.hpp +11 -0
  1247. mlsys/tasks/cpp-standard-layout-trivially-copyable-flags-12-structs/starter.cpp +12 -0
  1248. mlsys/tasks/cpp-standard-layout-trivially-copyable-flags-12-structs/task.md +91 -0
  1249. mlsys/tasks/cpp-static-init-order-fiasco-meyers-singleton/main.cpp +16 -0
  1250. mlsys/tasks/cpp-static-init-order-fiasco-meyers-singleton/meta.json +15 -0
  1251. mlsys/tasks/cpp-static-init-order-fiasco-meyers-singleton/ref.cpp +16 -0
  1252. mlsys/tasks/cpp-static-init-order-fiasco-meyers-singleton/sol.hpp +23 -0
  1253. mlsys/tasks/cpp-static-init-order-fiasco-meyers-singleton/starter.cpp +13 -0
  1254. mlsys/tasks/cpp-static-init-order-fiasco-meyers-singleton/task.md +69 -0
  1255. mlsys/tasks/cpp-store-buffering-dekker-outcome-enumeration/main.cpp +15 -0
  1256. mlsys/tasks/cpp-store-buffering-dekker-outcome-enumeration/meta.json +2 -0
  1257. mlsys/tasks/cpp-store-buffering-dekker-outcome-enumeration/ref.cpp +113 -0
  1258. mlsys/tasks/cpp-store-buffering-dekker-outcome-enumeration/sol.hpp +25 -0
  1259. mlsys/tasks/cpp-store-buffering-dekker-outcome-enumeration/starter.cpp +15 -0
  1260. mlsys/tasks/cpp-store-buffering-dekker-outcome-enumeration/task.md +73 -0
  1261. mlsys/tasks/cpp-strength-reduction-mul-add-preserving-result/main.cpp +24 -0
  1262. mlsys/tasks/cpp-strength-reduction-mul-add-preserving-result/meta.json +2 -0
  1263. mlsys/tasks/cpp-strength-reduction-mul-add-preserving-result/ref.cpp +13 -0
  1264. mlsys/tasks/cpp-strength-reduction-mul-add-preserving-result/sol.hpp +20 -0
  1265. mlsys/tasks/cpp-strength-reduction-mul-add-preserving-result/starter.cpp +9 -0
  1266. mlsys/tasks/cpp-strength-reduction-mul-add-preserving-result/task.md +62 -0
  1267. mlsys/tasks/cpp-strict-aliasing-divergence-o0-vs-o2/main.cpp +20 -0
  1268. mlsys/tasks/cpp-strict-aliasing-divergence-o0-vs-o2/meta.json +2 -0
  1269. mlsys/tasks/cpp-strict-aliasing-divergence-o0-vs-o2/ref.cpp +31 -0
  1270. mlsys/tasks/cpp-strict-aliasing-divergence-o0-vs-o2/sol.hpp +20 -0
  1271. mlsys/tasks/cpp-strict-aliasing-divergence-o0-vs-o2/starter.cpp +17 -0
  1272. mlsys/tasks/cpp-strict-aliasing-divergence-o0-vs-o2/task.md +72 -0
  1273. mlsys/tasks/cpp-sync-pattern-correctness-classifier/main.cpp +46 -0
  1274. mlsys/tasks/cpp-sync-pattern-correctness-classifier/meta.json +19 -0
  1275. mlsys/tasks/cpp-sync-pattern-correctness-classifier/ref.cpp +57 -0
  1276. mlsys/tasks/cpp-sync-pattern-correctness-classifier/sol.hpp +26 -0
  1277. mlsys/tasks/cpp-sync-pattern-correctness-classifier/starter.cpp +8 -0
  1278. mlsys/tasks/cpp-sync-pattern-correctness-classifier/task.md +28 -0
  1279. mlsys/tasks/cpp-threaded-gemm-matches-single-thread-within-tol/main.cpp +33 -0
  1280. mlsys/tasks/cpp-threaded-gemm-matches-single-thread-within-tol/meta.json +2 -0
  1281. mlsys/tasks/cpp-threaded-gemm-matches-single-thread-within-tol/ref.cpp +16 -0
  1282. mlsys/tasks/cpp-threaded-gemm-matches-single-thread-within-tol/sol.hpp +14 -0
  1283. mlsys/tasks/cpp-threaded-gemm-matches-single-thread-within-tol/starter.cpp +14 -0
  1284. mlsys/tasks/cpp-threaded-gemm-matches-single-thread-within-tol/task.md +54 -0
  1285. mlsys/tasks/cpp-treiber-lock-free-stack-multiset-conservation/main.cpp +84 -0
  1286. mlsys/tasks/cpp-treiber-lock-free-stack-multiset-conservation/meta.json +2 -0
  1287. mlsys/tasks/cpp-treiber-lock-free-stack-multiset-conservation/ref.cpp +39 -0
  1288. mlsys/tasks/cpp-treiber-lock-free-stack-multiset-conservation/sol.hpp +36 -0
  1289. mlsys/tasks/cpp-treiber-lock-free-stack-multiset-conservation/starter.cpp +22 -0
  1290. mlsys/tasks/cpp-treiber-lock-free-stack-multiset-conservation/task.md +68 -0
  1291. mlsys/tasks/cpp-two-s-complement-bit-patterns-values/main.cpp +39 -0
  1292. mlsys/tasks/cpp-two-s-complement-bit-patterns-values/meta.json +1 -0
  1293. mlsys/tasks/cpp-two-s-complement-bit-patterns-values/ref.cpp +16 -0
  1294. mlsys/tasks/cpp-two-s-complement-bit-patterns-values/sol.hpp +11 -0
  1295. mlsys/tasks/cpp-two-s-complement-bit-patterns-values/starter.cpp +11 -0
  1296. mlsys/tasks/cpp-two-s-complement-bit-patterns-values/task.md +49 -0
  1297. mlsys/tasks/cpp-type-pun-float-via-int-miscompile-memcpy-fix/main.cpp +36 -0
  1298. mlsys/tasks/cpp-type-pun-float-via-int-miscompile-memcpy-fix/meta.json +1 -0
  1299. mlsys/tasks/cpp-type-pun-float-via-int-miscompile-memcpy-fix/ref.cpp +26 -0
  1300. mlsys/tasks/cpp-type-pun-float-via-int-miscompile-memcpy-fix/sol.hpp +28 -0
  1301. mlsys/tasks/cpp-type-pun-float-via-int-miscompile-memcpy-fix/starter.cpp +21 -0
  1302. mlsys/tasks/cpp-type-pun-float-via-int-miscompile-memcpy-fix/task.md +62 -0
  1303. mlsys/tasks/cpp-ub-driven-check-elimination-o0-vs-o2/main.cpp +20 -0
  1304. mlsys/tasks/cpp-ub-driven-check-elimination-o0-vs-o2/meta.json +1 -0
  1305. mlsys/tasks/cpp-ub-driven-check-elimination-o0-vs-o2/ref.cpp +13 -0
  1306. mlsys/tasks/cpp-ub-driven-check-elimination-o0-vs-o2/sol.hpp +22 -0
  1307. mlsys/tasks/cpp-ub-driven-check-elimination-o0-vs-o2/starter.cpp +19 -0
  1308. mlsys/tasks/cpp-ub-driven-check-elimination-o0-vs-o2/task.md +75 -0
  1309. mlsys/tasks/cpp-ub-oracle-15-placement-new-union-launder-snippets/main.cpp +94 -0
  1310. mlsys/tasks/cpp-ub-oracle-15-placement-new-union-launder-snippets/meta.json +2 -0
  1311. mlsys/tasks/cpp-ub-oracle-15-placement-new-union-launder-snippets/ref.cpp +43 -0
  1312. mlsys/tasks/cpp-ub-oracle-15-placement-new-union-launder-snippets/sol.hpp +43 -0
  1313. mlsys/tasks/cpp-ub-oracle-15-placement-new-union-launder-snippets/starter.cpp +11 -0
  1314. mlsys/tasks/cpp-ub-oracle-15-placement-new-union-launder-snippets/task.md +78 -0
  1315. mlsys/tasks/cpp-ub-taxonomy-classifier-20-snippets/main.cpp +65 -0
  1316. mlsys/tasks/cpp-ub-taxonomy-classifier-20-snippets/meta.json +1 -0
  1317. mlsys/tasks/cpp-ub-taxonomy-classifier-20-snippets/ref.cpp +38 -0
  1318. mlsys/tasks/cpp-ub-taxonomy-classifier-20-snippets/sol.hpp +27 -0
  1319. mlsys/tasks/cpp-ub-taxonomy-classifier-20-snippets/starter.cpp +9 -0
  1320. mlsys/tasks/cpp-ub-taxonomy-classifier-20-snippets/task.md +71 -0
  1321. mlsys/tasks/cpp-unique-ptr-like-handle-with-custom-deleter/main.cpp +64 -0
  1322. mlsys/tasks/cpp-unique-ptr-like-handle-with-custom-deleter/meta.json +1 -0
  1323. mlsys/tasks/cpp-unique-ptr-like-handle-with-custom-deleter/ref.cpp +31 -0
  1324. mlsys/tasks/cpp-unique-ptr-like-handle-with-custom-deleter/sol.hpp +53 -0
  1325. mlsys/tasks/cpp-unique-ptr-like-handle-with-custom-deleter/starter.cpp +33 -0
  1326. mlsys/tasks/cpp-unique-ptr-like-handle-with-custom-deleter/task.md +60 -0
  1327. mlsys/tasks/cpp-value-category-of-15-expressions/main.cpp +10 -0
  1328. mlsys/tasks/cpp-value-category-of-15-expressions/meta.json +8 -0
  1329. mlsys/tasks/cpp-value-category-of-15-expressions/ref.cpp +41 -0
  1330. mlsys/tasks/cpp-value-category-of-15-expressions/sol.hpp +39 -0
  1331. mlsys/tasks/cpp-value-category-of-15-expressions/starter.cpp +7 -0
  1332. mlsys/tasks/cpp-value-category-of-15-expressions/task.md +74 -0
  1333. mlsys/tasks/cpp-virtual-call-indirection-cost-modeled/main.cpp +20 -0
  1334. mlsys/tasks/cpp-virtual-call-indirection-cost-modeled/meta.json +1 -0
  1335. mlsys/tasks/cpp-virtual-call-indirection-cost-modeled/ref.cpp +21 -0
  1336. mlsys/tasks/cpp-virtual-call-indirection-cost-modeled/sol.hpp +29 -0
  1337. mlsys/tasks/cpp-virtual-call-indirection-cost-modeled/starter.cpp +18 -0
  1338. mlsys/tasks/cpp-virtual-call-indirection-cost-modeled/task.md +62 -0
  1339. mlsys/tasks/cpp-what-may-appear-in-multiple-tus-classify/main.cpp +56 -0
  1340. mlsys/tasks/cpp-what-may-appear-in-multiple-tus-classify/meta.json +1 -0
  1341. mlsys/tasks/cpp-what-may-appear-in-multiple-tus-classify/ref.cpp +24 -0
  1342. mlsys/tasks/cpp-what-may-appear-in-multiple-tus-classify/sol.hpp +38 -0
  1343. mlsys/tasks/cpp-what-may-appear-in-multiple-tus-classify/starter.cpp +11 -0
  1344. mlsys/tasks/cpp-what-may-appear-in-multiple-tus-classify/task.md +76 -0
  1345. mlsys/tasks/cpp-which-expressions-are-constant-expressions-classify/main.cpp +17 -0
  1346. mlsys/tasks/cpp-which-expressions-are-constant-expressions-classify/meta.json +2 -0
  1347. mlsys/tasks/cpp-which-expressions-are-constant-expressions-classify/ref.cpp +48 -0
  1348. mlsys/tasks/cpp-which-expressions-are-constant-expressions-classify/sol.hpp +8 -0
  1349. mlsys/tasks/cpp-which-expressions-are-constant-expressions-classify/starter.cpp +11 -0
  1350. mlsys/tasks/cpp-which-expressions-are-constant-expressions-classify/task.md +71 -0
  1351. mlsys/tasks/cpp-which-override-is-called-12-calls/main.cpp +14 -0
  1352. mlsys/tasks/cpp-which-override-is-called-12-calls/meta.json +2 -0
  1353. mlsys/tasks/cpp-which-override-is-called-12-calls/ref.cpp +46 -0
  1354. mlsys/tasks/cpp-which-override-is-called-12-calls/sol.hpp +15 -0
  1355. mlsys/tasks/cpp-which-override-is-called-12-calls/starter.cpp +15 -0
  1356. mlsys/tasks/cpp-which-override-is-called-12-calls/task.md +82 -0
  1357. mlsys/tasks/cpp-which-refs-survive-vector-growth-classify/main.cpp +34 -0
  1358. mlsys/tasks/cpp-which-refs-survive-vector-growth-classify/meta.json +2 -0
  1359. mlsys/tasks/cpp-which-refs-survive-vector-growth-classify/ref.cpp +42 -0
  1360. mlsys/tasks/cpp-which-refs-survive-vector-growth-classify/sol.hpp +27 -0
  1361. mlsys/tasks/cpp-which-refs-survive-vector-growth-classify/starter.cpp +19 -0
  1362. mlsys/tasks/cpp-which-refs-survive-vector-growth-classify/task.md +53 -0
  1363. mlsys/tasks/cpp-which-special-members-are-implicitly-generated/main.cpp +36 -0
  1364. mlsys/tasks/cpp-which-special-members-are-implicitly-generated/meta.json +13 -0
  1365. mlsys/tasks/cpp-which-special-members-are-implicitly-generated/ref.cpp +23 -0
  1366. mlsys/tasks/cpp-which-special-members-are-implicitly-generated/sol.hpp +53 -0
  1367. mlsys/tasks/cpp-which-special-members-are-implicitly-generated/starter.cpp +10 -0
  1368. mlsys/tasks/cpp-which-special-members-are-implicitly-generated/task.md +62 -0
  1369. mlsys/tasks/cpp-which-struct-change-breaks-abi-classify/main.cpp +181 -0
  1370. mlsys/tasks/cpp-which-struct-change-breaks-abi-classify/meta.json +2 -0
  1371. mlsys/tasks/cpp-which-struct-change-breaks-abi-classify/ref.cpp +15 -0
  1372. mlsys/tasks/cpp-which-struct-change-breaks-abi-classify/sol.hpp +21 -0
  1373. mlsys/tasks/cpp-which-struct-change-breaks-abi-classify/starter.cpp +9 -0
  1374. mlsys/tasks/cpp-which-struct-change-breaks-abi-classify/task.md +93 -0
  1375. mlsys/tasks/cpp-zero-copy-numpy-view-via-buffer-protocol/main.cpp +32 -0
  1376. mlsys/tasks/cpp-zero-copy-numpy-view-via-buffer-protocol/meta.json +15 -0
  1377. mlsys/tasks/cpp-zero-copy-numpy-view-via-buffer-protocol/ref.cpp +11 -0
  1378. mlsys/tasks/cpp-zero-copy-numpy-view-via-buffer-protocol/sol.hpp +22 -0
  1379. mlsys/tasks/cpp-zero-copy-numpy-view-via-buffer-protocol/starter.cpp +10 -0
  1380. mlsys/tasks/cpp-zero-copy-numpy-view-via-buffer-protocol/task.md +48 -0
  1381. mlsys/tasks/cpu-2-bit-saturating-counter-mispredict-count/main.cpp +46 -0
  1382. mlsys/tasks/cpu-2-bit-saturating-counter-mispredict-count/meta.json +15 -0
  1383. mlsys/tasks/cpu-2-bit-saturating-counter-mispredict-count/ref.cpp +24 -0
  1384. mlsys/tasks/cpu-2-bit-saturating-counter-mispredict-count/sol.hpp +21 -0
  1385. mlsys/tasks/cpu-2-bit-saturating-counter-mispredict-count/starter.cpp +14 -0
  1386. mlsys/tasks/cpu-2-bit-saturating-counter-mispredict-count/task.md +56 -0
  1387. mlsys/tasks/cpu-3-level-inclusive-hierarchy-miss-vector/main.cpp +93 -0
  1388. mlsys/tasks/cpu-3-level-inclusive-hierarchy-miss-vector/meta.json +2 -0
  1389. mlsys/tasks/cpu-3-level-inclusive-hierarchy-miss-vector/ref.cpp +13 -0
  1390. mlsys/tasks/cpu-3-level-inclusive-hierarchy-miss-vector/sol.hpp +21 -0
  1391. mlsys/tasks/cpu-3-level-inclusive-hierarchy-miss-vector/starter.cpp +9 -0
  1392. mlsys/tasks/cpu-3-level-inclusive-hierarchy-miss-vector/task.md +64 -0
  1393. mlsys/tasks/cpu-4kb-vs-2mb-huge-page-tlb-miss-comparison/main.cpp +57 -0
  1394. mlsys/tasks/cpu-4kb-vs-2mb-huge-page-tlb-miss-comparison/meta.json +15 -0
  1395. mlsys/tasks/cpu-4kb-vs-2mb-huge-page-tlb-miss-comparison/ref.cpp +16 -0
  1396. mlsys/tasks/cpu-4kb-vs-2mb-huge-page-tlb-miss-comparison/sol.hpp +23 -0
  1397. mlsys/tasks/cpu-4kb-vs-2mb-huge-page-tlb-miss-comparison/starter.cpp +12 -0
  1398. mlsys/tasks/cpu-4kb-vs-2mb-huge-page-tlb-miss-comparison/task.md +62 -0
  1399. mlsys/tasks/cpu-address-to-tag-set-offset/main.cpp +25 -0
  1400. mlsys/tasks/cpu-address-to-tag-set-offset/meta.json +19 -0
  1401. mlsys/tasks/cpu-address-to-tag-set-offset/ref.cpp +11 -0
  1402. mlsys/tasks/cpu-address-to-tag-set-offset/sol.hpp +16 -0
  1403. mlsys/tasks/cpu-address-to-tag-set-offset/starter.cpp +10 -0
  1404. mlsys/tasks/cpu-address-to-tag-set-offset/task.md +22 -0
  1405. mlsys/tasks/cpu-aligned-allocator-verified-over-1000-allocs/main.cpp +34 -0
  1406. mlsys/tasks/cpu-aligned-allocator-verified-over-1000-allocs/meta.json +19 -0
  1407. mlsys/tasks/cpu-aligned-allocator-verified-over-1000-allocs/ref.cpp +19 -0
  1408. mlsys/tasks/cpu-aligned-allocator-verified-over-1000-allocs/sol.hpp +21 -0
  1409. mlsys/tasks/cpu-aligned-allocator-verified-over-1000-allocs/starter.cpp +12 -0
  1410. mlsys/tasks/cpu-aligned-allocator-verified-over-1000-allocs/task.md +24 -0
  1411. mlsys/tasks/cpu-alignment-aware-allocation-wasted-bytes/main.cpp +30 -0
  1412. mlsys/tasks/cpu-alignment-aware-allocation-wasted-bytes/meta.json +15 -0
  1413. mlsys/tasks/cpu-alignment-aware-allocation-wasted-bytes/ref.cpp +19 -0
  1414. mlsys/tasks/cpu-alignment-aware-allocation-wasted-bytes/sol.hpp +10 -0
  1415. mlsys/tasks/cpu-alignment-aware-allocation-wasted-bytes/starter.cpp +12 -0
  1416. mlsys/tasks/cpu-alignment-aware-allocation-wasted-bytes/task.md +50 -0
  1417. mlsys/tasks/cpu-amat-from-a-fixed-latency-ladder/check.py +42 -0
  1418. mlsys/tasks/cpu-amat-from-a-fixed-latency-ladder/gen_fixtures.py +15 -0
  1419. mlsys/tasks/cpu-amat-from-a-fixed-latency-ladder/meta.json +22 -0
  1420. mlsys/tasks/cpu-amat-from-a-fixed-latency-ladder/solution_ref.py +15 -0
  1421. mlsys/tasks/cpu-amat-from-a-fixed-latency-ladder/starter.py +3 -0
  1422. mlsys/tasks/cpu-amat-from-a-fixed-latency-ladder/task.md +50 -0
  1423. mlsys/tasks/cpu-aos-counters-vs-line-padded-soa-invalidation-pair/main.cpp +42 -0
  1424. mlsys/tasks/cpu-aos-counters-vs-line-padded-soa-invalidation-pair/meta.json +1 -0
  1425. mlsys/tasks/cpu-aos-counters-vs-line-padded-soa-invalidation-pair/ref.cpp +23 -0
  1426. mlsys/tasks/cpu-aos-counters-vs-line-padded-soa-invalidation-pair/sol.hpp +50 -0
  1427. mlsys/tasks/cpu-aos-counters-vs-line-padded-soa-invalidation-pair/starter.cpp +18 -0
  1428. mlsys/tasks/cpu-aos-counters-vs-line-padded-soa-invalidation-pair/task.md +68 -0
  1429. mlsys/tasks/cpu-aos-soa-aosoa-winner-per-workload/main.cpp +43 -0
  1430. mlsys/tasks/cpu-aos-soa-aosoa-winner-per-workload/meta.json +19 -0
  1431. mlsys/tasks/cpu-aos-soa-aosoa-winner-per-workload/ref.cpp +53 -0
  1432. mlsys/tasks/cpu-aos-soa-aosoa-winner-per-workload/sol.hpp +24 -0
  1433. mlsys/tasks/cpu-aos-soa-aosoa-winner-per-workload/starter.cpp +5 -0
  1434. mlsys/tasks/cpu-aos-soa-aosoa-winner-per-workload/task.md +25 -0
  1435. mlsys/tasks/cpu-aos-soa-byte-exact-round-trip/main.cpp +41 -0
  1436. mlsys/tasks/cpu-aos-soa-byte-exact-round-trip/meta.json +15 -0
  1437. mlsys/tasks/cpu-aos-soa-byte-exact-round-trip/ref.cpp +20 -0
  1438. mlsys/tasks/cpu-aos-soa-byte-exact-round-trip/sol.hpp +16 -0
  1439. mlsys/tasks/cpu-aos-soa-byte-exact-round-trip/starter.cpp +24 -0
  1440. mlsys/tasks/cpu-aos-soa-byte-exact-round-trip/task.md +41 -0
  1441. mlsys/tasks/cpu-aosoa-tile-width-optimal-traffic/main.cpp +43 -0
  1442. mlsys/tasks/cpu-aosoa-tile-width-optimal-traffic/meta.json +15 -0
  1443. mlsys/tasks/cpu-aosoa-tile-width-optimal-traffic/ref.cpp +15 -0
  1444. mlsys/tasks/cpu-aosoa-tile-width-optimal-traffic/sol.hpp +34 -0
  1445. mlsys/tasks/cpu-aosoa-tile-width-optimal-traffic/starter.cpp +18 -0
  1446. mlsys/tasks/cpu-aosoa-tile-width-optimal-traffic/task.md +20 -0
  1447. mlsys/tasks/cpu-arithmetic-intensity-of-an-op-flops-byte/check.py +26 -0
  1448. mlsys/tasks/cpu-arithmetic-intensity-of-an-op-flops-byte/gen_fixtures.py +1 -0
  1449. mlsys/tasks/cpu-arithmetic-intensity-of-an-op-flops-byte/meta.json +22 -0
  1450. mlsys/tasks/cpu-arithmetic-intensity-of-an-op-flops-byte/solution_ref.py +8 -0
  1451. mlsys/tasks/cpu-arithmetic-intensity-of-an-op-flops-byte/starter.py +8 -0
  1452. mlsys/tasks/cpu-arithmetic-intensity-of-an-op-flops-byte/task.md +45 -0
  1453. mlsys/tasks/cpu-attainable-flop-s-from-the-roofline/main.cpp +20 -0
  1454. mlsys/tasks/cpu-attainable-flop-s-from-the-roofline/meta.json +13 -0
  1455. mlsys/tasks/cpu-attainable-flop-s-from-the-roofline/ref.cpp +6 -0
  1456. mlsys/tasks/cpu-attainable-flop-s-from-the-roofline/sol.hpp +17 -0
  1457. mlsys/tasks/cpu-attainable-flop-s-from-the-roofline/starter.cpp +9 -0
  1458. mlsys/tasks/cpu-attainable-flop-s-from-the-roofline/task.md +55 -0
  1459. mlsys/tasks/cpu-attention-score-matrix-line-traffic-pick-layout/main.cpp +52 -0
  1460. mlsys/tasks/cpu-attention-score-matrix-line-traffic-pick-layout/meta.json +13 -0
  1461. mlsys/tasks/cpu-attention-score-matrix-line-traffic-pick-layout/ref.cpp +36 -0
  1462. mlsys/tasks/cpu-attention-score-matrix-line-traffic-pick-layout/sol.hpp +39 -0
  1463. mlsys/tasks/cpu-attention-score-matrix-line-traffic-pick-layout/starter.cpp +15 -0
  1464. mlsys/tasks/cpu-attention-score-matrix-line-traffic-pick-layout/task.md +64 -0
  1465. mlsys/tasks/cpu-batched-embedding-lookups-maximize-mlp/main.cpp +51 -0
  1466. mlsys/tasks/cpu-batched-embedding-lookups-maximize-mlp/meta.json +1 -0
  1467. mlsys/tasks/cpu-batched-embedding-lookups-maximize-mlp/ref.cpp +30 -0
  1468. mlsys/tasks/cpu-batched-embedding-lookups-maximize-mlp/sol.hpp +57 -0
  1469. mlsys/tasks/cpu-batched-embedding-lookups-maximize-mlp/starter.cpp +11 -0
  1470. mlsys/tasks/cpu-batched-embedding-lookups-maximize-mlp/task.md +69 -0
  1471. mlsys/tasks/cpu-belady-opt-miss-count-vs-lru/main.cpp +38 -0
  1472. mlsys/tasks/cpu-belady-opt-miss-count-vs-lru/meta.json +15 -0
  1473. mlsys/tasks/cpu-belady-opt-miss-count-vs-lru/ref.cpp +60 -0
  1474. mlsys/tasks/cpu-belady-opt-miss-count-vs-lru/sol.hpp +12 -0
  1475. mlsys/tasks/cpu-belady-opt-miss-count-vs-lru/starter.cpp +12 -0
  1476. mlsys/tasks/cpu-belady-opt-miss-count-vs-lru/task.md +51 -0
  1477. mlsys/tasks/cpu-blocked-cache-aware-transpose-misses/main.cpp +60 -0
  1478. mlsys/tasks/cpu-blocked-cache-aware-transpose-misses/meta.json +2 -0
  1479. mlsys/tasks/cpu-blocked-cache-aware-transpose-misses/ref.cpp +14 -0
  1480. mlsys/tasks/cpu-blocked-cache-aware-transpose-misses/sol.hpp +24 -0
  1481. mlsys/tasks/cpu-blocked-cache-aware-transpose-misses/starter.cpp +9 -0
  1482. mlsys/tasks/cpu-blocked-cache-aware-transpose-misses/task.md +56 -0
  1483. mlsys/tasks/cpu-blocked-transpose-byte-exact/main.cpp +29 -0
  1484. mlsys/tasks/cpu-blocked-transpose-byte-exact/meta.json +13 -0
  1485. mlsys/tasks/cpu-blocked-transpose-byte-exact/ref.cpp +13 -0
  1486. mlsys/tasks/cpu-blocked-transpose-byte-exact/sol.hpp +17 -0
  1487. mlsys/tasks/cpu-blocked-transpose-byte-exact/starter.cpp +9 -0
  1488. mlsys/tasks/cpu-blocked-transpose-byte-exact/task.md +44 -0
  1489. mlsys/tasks/cpu-branchless-min-max-abs-select-correctness/check.py +38 -0
  1490. mlsys/tasks/cpu-branchless-min-max-abs-select-correctness/gen_fixtures.py +1 -0
  1491. mlsys/tasks/cpu-branchless-min-max-abs-select-correctness/meta.json +22 -0
  1492. mlsys/tasks/cpu-branchless-min-max-abs-select-correctness/solution_ref.py +13 -0
  1493. mlsys/tasks/cpu-branchless-min-max-abs-select-correctness/starter.py +8 -0
  1494. mlsys/tasks/cpu-branchless-min-max-abs-select-correctness/task.md +52 -0
  1495. mlsys/tasks/cpu-branchless-top-k-mask-for-llm-sampling/check.py +45 -0
  1496. mlsys/tasks/cpu-branchless-top-k-mask-for-llm-sampling/gen_fixtures.py +1 -0
  1497. mlsys/tasks/cpu-branchless-top-k-mask-for-llm-sampling/meta.json +27 -0
  1498. mlsys/tasks/cpu-branchless-top-k-mask-for-llm-sampling/solution_ref.py +13 -0
  1499. mlsys/tasks/cpu-branchless-top-k-mask-for-llm-sampling/starter.py +7 -0
  1500. mlsys/tasks/cpu-branchless-top-k-mask-for-llm-sampling/task.md +65 -0
  1501. mlsys/tasks/cpu-break-loop-carried-dependency-with-n-accumulators/main.cpp +36 -0
  1502. mlsys/tasks/cpu-break-loop-carried-dependency-with-n-accumulators/meta.json +16 -0
  1503. mlsys/tasks/cpu-break-loop-carried-dependency-with-n-accumulators/ref.cpp +19 -0
  1504. mlsys/tasks/cpu-break-loop-carried-dependency-with-n-accumulators/sol.hpp +26 -0
  1505. mlsys/tasks/cpu-break-loop-carried-dependency-with-n-accumulators/starter.cpp +14 -0
  1506. mlsys/tasks/cpu-break-loop-carried-dependency-with-n-accumulators/task.md +57 -0
  1507. mlsys/tasks/cpu-buddy-allocator-split-merge-correctness/main.cpp +36 -0
  1508. mlsys/tasks/cpu-buddy-allocator-split-merge-correctness/meta.json +15 -0
  1509. mlsys/tasks/cpu-buddy-allocator-split-merge-correctness/ref.cpp +59 -0
  1510. mlsys/tasks/cpu-buddy-allocator-split-merge-correctness/sol.hpp +44 -0
  1511. mlsys/tasks/cpu-buddy-allocator-split-merge-correctness/starter.cpp +53 -0
  1512. mlsys/tasks/cpu-buddy-allocator-split-merge-correctness/task.md +24 -0
  1513. mlsys/tasks/cpu-bump-arena-allocator-no-overlap-byte-exact/main.cpp +36 -0
  1514. mlsys/tasks/cpu-bump-arena-allocator-no-overlap-byte-exact/meta.json +13 -0
  1515. mlsys/tasks/cpu-bump-arena-allocator-no-overlap-byte-exact/ref.cpp +18 -0
  1516. mlsys/tasks/cpu-bump-arena-allocator-no-overlap-byte-exact/sol.hpp +24 -0
  1517. mlsys/tasks/cpu-bump-arena-allocator-no-overlap-byte-exact/starter.cpp +13 -0
  1518. mlsys/tasks/cpu-bump-arena-allocator-no-overlap-byte-exact/task.md +55 -0
  1519. mlsys/tasks/cpu-byte-efficiency-of-a-strided-walk/main.cpp +29 -0
  1520. mlsys/tasks/cpu-byte-efficiency-of-a-strided-walk/meta.json +19 -0
  1521. mlsys/tasks/cpu-byte-efficiency-of-a-strided-walk/ref.cpp +18 -0
  1522. mlsys/tasks/cpu-byte-efficiency-of-a-strided-walk/sol.hpp +20 -0
  1523. mlsys/tasks/cpu-byte-efficiency-of-a-strided-walk/starter.cpp +10 -0
  1524. mlsys/tasks/cpu-byte-efficiency-of-a-strided-walk/task.md +26 -0
  1525. mlsys/tasks/cpu-cache-line-aligned-token-record-min-footprint/main.cpp +121 -0
  1526. mlsys/tasks/cpu-cache-line-aligned-token-record-min-footprint/meta.json +18 -0
  1527. mlsys/tasks/cpu-cache-line-aligned-token-record-min-footprint/ref.cpp +22 -0
  1528. mlsys/tasks/cpu-cache-line-aligned-token-record-min-footprint/sol.hpp +39 -0
  1529. mlsys/tasks/cpu-cache-line-aligned-token-record-min-footprint/starter.cpp +31 -0
  1530. mlsys/tasks/cpu-cache-line-aligned-token-record-min-footprint/task.md +102 -0
  1531. mlsys/tasks/cpu-cache-oblivious-miss-rate-across-4-cache-sizes/main.cpp +54 -0
  1532. mlsys/tasks/cpu-cache-oblivious-miss-rate-across-4-cache-sizes/meta.json +13 -0
  1533. mlsys/tasks/cpu-cache-oblivious-miss-rate-across-4-cache-sizes/ref.cpp +22 -0
  1534. mlsys/tasks/cpu-cache-oblivious-miss-rate-across-4-cache-sizes/sol.hpp +37 -0
  1535. mlsys/tasks/cpu-cache-oblivious-miss-rate-across-4-cache-sizes/starter.cpp +9 -0
  1536. mlsys/tasks/cpu-cache-oblivious-miss-rate-across-4-cache-sizes/task.md +81 -0
  1537. mlsys/tasks/cpu-cache-oblivious-recursive-matmul-miss-count/main.cpp +57 -0
  1538. mlsys/tasks/cpu-cache-oblivious-recursive-matmul-miss-count/meta.json +13 -0
  1539. mlsys/tasks/cpu-cache-oblivious-recursive-matmul-miss-count/ref.cpp +58 -0
  1540. mlsys/tasks/cpu-cache-oblivious-recursive-matmul-miss-count/sol.hpp +36 -0
  1541. mlsys/tasks/cpu-cache-oblivious-recursive-matmul-miss-count/starter.cpp +18 -0
  1542. mlsys/tasks/cpu-cache-oblivious-recursive-matmul-miss-count/task.md +92 -0
  1543. mlsys/tasks/cpu-cache-pollution-from-a-streaming-memset/main.cpp +77 -0
  1544. mlsys/tasks/cpu-cache-pollution-from-a-streaming-memset/meta.json +17 -0
  1545. mlsys/tasks/cpu-cache-pollution-from-a-streaming-memset/ref.cpp +8 -0
  1546. mlsys/tasks/cpu-cache-pollution-from-a-streaming-memset/sol.hpp +27 -0
  1547. mlsys/tasks/cpu-cache-pollution-from-a-streaming-memset/starter.cpp +9 -0
  1548. mlsys/tasks/cpu-cache-pollution-from-a-streaming-memset/task.md +81 -0
  1549. mlsys/tasks/cpu-classify-interleave-vs-bind-benefit/main.cpp +48 -0
  1550. mlsys/tasks/cpu-classify-interleave-vs-bind-benefit/meta.json +9 -0
  1551. mlsys/tasks/cpu-classify-interleave-vs-bind-benefit/ref.cpp +26 -0
  1552. mlsys/tasks/cpu-classify-interleave-vs-bind-benefit/sol.hpp +63 -0
  1553. mlsys/tasks/cpu-classify-interleave-vs-bind-benefit/starter.cpp +8 -0
  1554. mlsys/tasks/cpu-classify-interleave-vs-bind-benefit/task.md +88 -0
  1555. mlsys/tasks/cpu-classify-latency-plateaus-to-cache-levels/main.cpp +50 -0
  1556. mlsys/tasks/cpu-classify-latency-plateaus-to-cache-levels/meta.json +22 -0
  1557. mlsys/tasks/cpu-classify-latency-plateaus-to-cache-levels/ref.cpp +14 -0
  1558. mlsys/tasks/cpu-classify-latency-plateaus-to-cache-levels/sol.hpp +24 -0
  1559. mlsys/tasks/cpu-classify-latency-plateaus-to-cache-levels/starter.cpp +7 -0
  1560. mlsys/tasks/cpu-classify-latency-plateaus-to-cache-levels/task.md +85 -0
  1561. mlsys/tasks/cpu-classify-memory-bound-vs-compute-bound/main.cpp +23 -0
  1562. mlsys/tasks/cpu-classify-memory-bound-vs-compute-bound/meta.json +13 -0
  1563. mlsys/tasks/cpu-classify-memory-bound-vs-compute-bound/ref.cpp +8 -0
  1564. mlsys/tasks/cpu-classify-memory-bound-vs-compute-bound/sol.hpp +22 -0
  1565. mlsys/tasks/cpu-classify-memory-bound-vs-compute-bound/starter.cpp +8 -0
  1566. mlsys/tasks/cpu-classify-memory-bound-vs-compute-bound/task.md +46 -0
  1567. mlsys/tasks/cpu-classify-misses-cold-capacity-conflict/main.cpp +83 -0
  1568. mlsys/tasks/cpu-classify-misses-cold-capacity-conflict/meta.json +22 -0
  1569. mlsys/tasks/cpu-classify-misses-cold-capacity-conflict/ref.cpp +72 -0
  1570. mlsys/tasks/cpu-classify-misses-cold-capacity-conflict/sol.hpp +41 -0
  1571. mlsys/tasks/cpu-classify-misses-cold-capacity-conflict/starter.cpp +12 -0
  1572. mlsys/tasks/cpu-classify-misses-cold-capacity-conflict/task.md +85 -0
  1573. mlsys/tasks/cpu-classify-when-to-densify-a-gather/main.cpp +93 -0
  1574. mlsys/tasks/cpu-classify-when-to-densify-a-gather/meta.json +15 -0
  1575. mlsys/tasks/cpu-classify-when-to-densify-a-gather/ref.cpp +33 -0
  1576. mlsys/tasks/cpu-classify-when-to-densify-a-gather/sol.hpp +53 -0
  1577. mlsys/tasks/cpu-classify-when-to-densify-a-gather/starter.cpp +12 -0
  1578. mlsys/tasks/cpu-classify-when-to-densify-a-gather/task.md +70 -0
  1579. mlsys/tasks/cpu-closed-form-stride-s-line-count-vs-simulator/main.cpp +41 -0
  1580. mlsys/tasks/cpu-closed-form-stride-s-line-count-vs-simulator/meta.json +17 -0
  1581. mlsys/tasks/cpu-closed-form-stride-s-line-count-vs-simulator/ref.cpp +9 -0
  1582. mlsys/tasks/cpu-closed-form-stride-s-line-count-vs-simulator/sol.hpp +12 -0
  1583. mlsys/tasks/cpu-closed-form-stride-s-line-count-vs-simulator/starter.cpp +8 -0
  1584. mlsys/tasks/cpu-closed-form-stride-s-line-count-vs-simulator/task.md +71 -0
  1585. mlsys/tasks/cpu-compare-4-predictors-mispredicts/main.cpp +21 -0
  1586. mlsys/tasks/cpu-compare-4-predictors-mispredicts/meta.json +13 -0
  1587. mlsys/tasks/cpu-compare-4-predictors-mispredicts/ref.cpp +47 -0
  1588. mlsys/tasks/cpu-compare-4-predictors-mispredicts/sol.hpp +31 -0
  1589. mlsys/tasks/cpu-compare-4-predictors-mispredicts/starter.cpp +8 -0
  1590. mlsys/tasks/cpu-compare-4-predictors-mispredicts/task.md +49 -0
  1591. mlsys/tasks/cpu-compensated-vs-naive-dot-product-accuracy/main.cpp +51 -0
  1592. mlsys/tasks/cpu-compensated-vs-naive-dot-product-accuracy/meta.json +13 -0
  1593. mlsys/tasks/cpu-compensated-vs-naive-dot-product-accuracy/ref.cpp +19 -0
  1594. mlsys/tasks/cpu-compensated-vs-naive-dot-product-accuracy/sol.hpp +24 -0
  1595. mlsys/tasks/cpu-compensated-vs-naive-dot-product-accuracy/starter.cpp +16 -0
  1596. mlsys/tasks/cpu-compensated-vs-naive-dot-product-accuracy/task.md +75 -0
  1597. mlsys/tasks/cpu-confirm-sqrt-c-traffic-scaling-law/main.cpp +86 -0
  1598. mlsys/tasks/cpu-confirm-sqrt-c-traffic-scaling-law/meta.json +13 -0
  1599. mlsys/tasks/cpu-confirm-sqrt-c-traffic-scaling-law/ref.cpp +22 -0
  1600. mlsys/tasks/cpu-confirm-sqrt-c-traffic-scaling-law/sol.hpp +13 -0
  1601. mlsys/tasks/cpu-confirm-sqrt-c-traffic-scaling-law/starter.cpp +9 -0
  1602. mlsys/tasks/cpu-confirm-sqrt-c-traffic-scaling-law/task.md +57 -0
  1603. mlsys/tasks/cpu-count-total-padding-bytes-for-a-record-array/main.cpp +52 -0
  1604. mlsys/tasks/cpu-count-total-padding-bytes-for-a-record-array/meta.json +17 -0
  1605. mlsys/tasks/cpu-count-total-padding-bytes-for-a-record-array/ref.cpp +23 -0
  1606. mlsys/tasks/cpu-count-total-padding-bytes-for-a-record-array/sol.hpp +16 -0
  1607. mlsys/tasks/cpu-count-total-padding-bytes-for-a-record-array/starter.cpp +12 -0
  1608. mlsys/tasks/cpu-count-total-padding-bytes-for-a-record-array/task.md +68 -0
  1609. mlsys/tasks/cpu-critical-path-length-of-an-op-dag/check.py +55 -0
  1610. mlsys/tasks/cpu-critical-path-length-of-an-op-dag/gen_fixtures.py +1 -0
  1611. mlsys/tasks/cpu-critical-path-length-of-an-op-dag/meta.json +22 -0
  1612. mlsys/tasks/cpu-critical-path-length-of-an-op-dag/solution_ref.py +22 -0
  1613. mlsys/tasks/cpu-critical-path-length-of-an-op-dag/starter.py +3 -0
  1614. mlsys/tasks/cpu-critical-path-length-of-an-op-dag/task.md +67 -0
  1615. mlsys/tasks/cpu-critical-word-first-time-to-first-word/main.cpp +31 -0
  1616. mlsys/tasks/cpu-critical-word-first-time-to-first-word/meta.json +13 -0
  1617. mlsys/tasks/cpu-critical-word-first-time-to-first-word/ref.cpp +8 -0
  1618. mlsys/tasks/cpu-critical-word-first-time-to-first-word/sol.hpp +27 -0
  1619. mlsys/tasks/cpu-critical-word-first-time-to-first-word/starter.cpp +9 -0
  1620. mlsys/tasks/cpu-critical-word-first-time-to-first-word/task.md +67 -0
  1621. mlsys/tasks/cpu-csr-sparse-matvec-vs-dense-reference/check.py +53 -0
  1622. mlsys/tasks/cpu-csr-sparse-matvec-vs-dense-reference/gen_fixtures.py +1 -0
  1623. mlsys/tasks/cpu-csr-sparse-matvec-vs-dense-reference/meta.json +22 -0
  1624. mlsys/tasks/cpu-csr-sparse-matvec-vs-dense-reference/solution_ref.py +15 -0
  1625. mlsys/tasks/cpu-csr-sparse-matvec-vs-dense-reference/starter.py +3 -0
  1626. mlsys/tasks/cpu-csr-sparse-matvec-vs-dense-reference/task.md +60 -0
  1627. mlsys/tasks/cpu-data-dependent-branch-to-arithmetic-mask/main.cpp +66 -0
  1628. mlsys/tasks/cpu-data-dependent-branch-to-arithmetic-mask/meta.json +22 -0
  1629. mlsys/tasks/cpu-data-dependent-branch-to-arithmetic-mask/ref.cpp +24 -0
  1630. mlsys/tasks/cpu-data-dependent-branch-to-arithmetic-mask/sol.hpp +26 -0
  1631. mlsys/tasks/cpu-data-dependent-branch-to-arithmetic-mask/starter.cpp +19 -0
  1632. mlsys/tasks/cpu-data-dependent-branch-to-arithmetic-mask/task.md +84 -0
  1633. mlsys/tasks/cpu-decide-when-nt-stores-help/main.cpp +77 -0
  1634. mlsys/tasks/cpu-decide-when-nt-stores-help/meta.json +13 -0
  1635. mlsys/tasks/cpu-decide-when-nt-stores-help/ref.cpp +7 -0
  1636. mlsys/tasks/cpu-decide-when-nt-stores-help/sol.hpp +38 -0
  1637. mlsys/tasks/cpu-decide-when-nt-stores-help/starter.cpp +10 -0
  1638. mlsys/tasks/cpu-decide-when-nt-stores-help/task.md +89 -0
  1639. mlsys/tasks/cpu-derive-collision-stride-verify-vs-simulator/main.cpp +60 -0
  1640. mlsys/tasks/cpu-derive-collision-stride-verify-vs-simulator/meta.json +18 -0
  1641. mlsys/tasks/cpu-derive-collision-stride-verify-vs-simulator/ref.cpp +8 -0
  1642. mlsys/tasks/cpu-derive-collision-stride-verify-vs-simulator/sol.hpp +19 -0
  1643. mlsys/tasks/cpu-derive-collision-stride-verify-vs-simulator/starter.cpp +8 -0
  1644. mlsys/tasks/cpu-derive-collision-stride-verify-vs-simulator/task.md +77 -0
  1645. mlsys/tasks/cpu-derive-min-padding-to-separate-n-thread-local-vars/main.cpp +27 -0
  1646. mlsys/tasks/cpu-derive-min-padding-to-separate-n-thread-local-vars/meta.json +13 -0
  1647. mlsys/tasks/cpu-derive-min-padding-to-separate-n-thread-local-vars/ref.cpp +12 -0
  1648. mlsys/tasks/cpu-derive-min-padding-to-separate-n-thread-local-vars/sol.hpp +23 -0
  1649. mlsys/tasks/cpu-derive-min-padding-to-separate-n-thread-local-vars/starter.cpp +14 -0
  1650. mlsys/tasks/cpu-derive-min-padding-to-separate-n-thread-local-vars/task.md +60 -0
  1651. mlsys/tasks/cpu-detect-and-count-denormal-producing-inputs/main.cpp +41 -0
  1652. mlsys/tasks/cpu-detect-and-count-denormal-producing-inputs/meta.json +15 -0
  1653. mlsys/tasks/cpu-detect-and-count-denormal-producing-inputs/ref.cpp +10 -0
  1654. mlsys/tasks/cpu-detect-and-count-denormal-producing-inputs/sol.hpp +15 -0
  1655. mlsys/tasks/cpu-detect-and-count-denormal-producing-inputs/starter.cpp +10 -0
  1656. mlsys/tasks/cpu-detect-and-count-denormal-producing-inputs/task.md +51 -0
  1657. mlsys/tasks/cpu-detect-falsely-shared-cache-lines/main.cpp +25 -0
  1658. mlsys/tasks/cpu-detect-falsely-shared-cache-lines/meta.json +13 -0
  1659. mlsys/tasks/cpu-detect-falsely-shared-cache-lines/ref.cpp +23 -0
  1660. mlsys/tasks/cpu-detect-falsely-shared-cache-lines/sol.hpp +19 -0
  1661. mlsys/tasks/cpu-detect-falsely-shared-cache-lines/starter.cpp +11 -0
  1662. mlsys/tasks/cpu-detect-falsely-shared-cache-lines/task.md +46 -0
  1663. mlsys/tasks/cpu-detect-fragmentation-induced-oom/main.cpp +65 -0
  1664. mlsys/tasks/cpu-detect-fragmentation-induced-oom/meta.json +17 -0
  1665. mlsys/tasks/cpu-detect-fragmentation-induced-oom/ref.cpp +30 -0
  1666. mlsys/tasks/cpu-detect-fragmentation-induced-oom/sol.hpp +26 -0
  1667. mlsys/tasks/cpu-detect-fragmentation-induced-oom/starter.cpp +12 -0
  1668. mlsys/tasks/cpu-detect-fragmentation-induced-oom/task.md +69 -0
  1669. mlsys/tasks/cpu-detect-raw-war-waw-hazards/check.py +67 -0
  1670. mlsys/tasks/cpu-detect-raw-war-waw-hazards/gen_fixtures.py +1 -0
  1671. mlsys/tasks/cpu-detect-raw-war-waw-hazards/meta.json +22 -0
  1672. mlsys/tasks/cpu-detect-raw-war-waw-hazards/solution_ref.py +20 -0
  1673. mlsys/tasks/cpu-detect-raw-war-waw-hazards/starter.py +3 -0
  1674. mlsys/tasks/cpu-detect-raw-war-waw-hazards/task.md +64 -0
  1675. mlsys/tasks/cpu-direct-mapped-vs-4-way-vs-full-miss-triple/main.cpp +38 -0
  1676. mlsys/tasks/cpu-direct-mapped-vs-4-way-vs-full-miss-triple/meta.json +9 -0
  1677. mlsys/tasks/cpu-direct-mapped-vs-4-way-vs-full-miss-triple/ref.cpp +49 -0
  1678. mlsys/tasks/cpu-direct-mapped-vs-4-way-vs-full-miss-triple/sol.hpp +28 -0
  1679. mlsys/tasks/cpu-direct-mapped-vs-4-way-vs-full-miss-triple/starter.cpp +19 -0
  1680. mlsys/tasks/cpu-direct-mapped-vs-4-way-vs-full-miss-triple/task.md +76 -0
  1681. mlsys/tasks/cpu-distinct-cache-lines-touched/main.cpp +15 -0
  1682. mlsys/tasks/cpu-distinct-cache-lines-touched/meta.json +13 -0
  1683. mlsys/tasks/cpu-distinct-cache-lines-touched/ref.cpp +8 -0
  1684. mlsys/tasks/cpu-distinct-cache-lines-touched/sol.hpp +7 -0
  1685. mlsys/tasks/cpu-distinct-cache-lines-touched/starter.cpp +8 -0
  1686. mlsys/tasks/cpu-distinct-cache-lines-touched/task.md +36 -0
  1687. mlsys/tasks/cpu-distinct-pages-touched-page-working-set/check.py +19 -0
  1688. mlsys/tasks/cpu-distinct-pages-touched-page-working-set/gen_fixtures.py +3 -0
  1689. mlsys/tasks/cpu-distinct-pages-touched-page-working-set/meta.json +22 -0
  1690. mlsys/tasks/cpu-distinct-pages-touched-page-working-set/solution_ref.py +7 -0
  1691. mlsys/tasks/cpu-distinct-pages-touched-page-working-set/starter.py +5 -0
  1692. mlsys/tasks/cpu-distinct-pages-touched-page-working-set/task.md +27 -0
  1693. mlsys/tasks/cpu-effect-of-fusion-on-ai-and-bound-flip/main.cpp +34 -0
  1694. mlsys/tasks/cpu-effect-of-fusion-on-ai-and-bound-flip/meta.json +13 -0
  1695. mlsys/tasks/cpu-effect-of-fusion-on-ai-and-bound-flip/ref.cpp +18 -0
  1696. mlsys/tasks/cpu-effect-of-fusion-on-ai-and-bound-flip/sol.hpp +39 -0
  1697. mlsys/tasks/cpu-effect-of-fusion-on-ai-and-bound-flip/starter.cpp +19 -0
  1698. mlsys/tasks/cpu-effect-of-fusion-on-ai-and-bound-flip/task.md +72 -0
  1699. mlsys/tasks/cpu-elements-per-register-for-fp32-fp16-int8/check.py +19 -0
  1700. mlsys/tasks/cpu-elements-per-register-for-fp32-fp16-int8/gen_fixtures.py +1 -0
  1701. mlsys/tasks/cpu-elements-per-register-for-fp32-fp16-int8/meta.json +22 -0
  1702. mlsys/tasks/cpu-elements-per-register-for-fp32-fp16-int8/solution_ref.py +12 -0
  1703. mlsys/tasks/cpu-elements-per-register-for-fp32-fp16-int8/starter.py +3 -0
  1704. mlsys/tasks/cpu-elements-per-register-for-fp32-fp16-int8/task.md +44 -0
  1705. mlsys/tasks/cpu-embedding-gather-choose-page-size/main.cpp +75 -0
  1706. mlsys/tasks/cpu-embedding-gather-choose-page-size/meta.json +22 -0
  1707. mlsys/tasks/cpu-embedding-gather-choose-page-size/ref.cpp +20 -0
  1708. mlsys/tasks/cpu-embedding-gather-choose-page-size/sol.hpp +33 -0
  1709. mlsys/tasks/cpu-embedding-gather-choose-page-size/starter.cpp +11 -0
  1710. mlsys/tasks/cpu-embedding-gather-choose-page-size/task.md +60 -0
  1711. mlsys/tasks/cpu-first-fit-vs-best-fit-vs-buddy-fragmentation/main.cpp +19 -0
  1712. mlsys/tasks/cpu-first-fit-vs-best-fit-vs-buddy-fragmentation/meta.json +15 -0
  1713. mlsys/tasks/cpu-first-fit-vs-best-fit-vs-buddy-fragmentation/ref.cpp +152 -0
  1714. mlsys/tasks/cpu-first-fit-vs-best-fit-vs-buddy-fragmentation/sol.hpp +52 -0
  1715. mlsys/tasks/cpu-first-fit-vs-best-fit-vs-buddy-fragmentation/starter.cpp +11 -0
  1716. mlsys/tasks/cpu-first-fit-vs-best-fit-vs-buddy-fragmentation/task.md +57 -0
  1717. mlsys/tasks/cpu-first-touch-page-placement-ownership/main.cpp +57 -0
  1718. mlsys/tasks/cpu-first-touch-page-placement-ownership/meta.json +22 -0
  1719. mlsys/tasks/cpu-first-touch-page-placement-ownership/ref.cpp +16 -0
  1720. mlsys/tasks/cpu-first-touch-page-placement-ownership/sol.hpp +26 -0
  1721. mlsys/tasks/cpu-first-touch-page-placement-ownership/starter.cpp +13 -0
  1722. mlsys/tasks/cpu-first-touch-page-placement-ownership/task.md +80 -0
  1723. mlsys/tasks/cpu-fit-a-roofline-from-modeled-throughput-points/main.cpp +24 -0
  1724. mlsys/tasks/cpu-fit-a-roofline-from-modeled-throughput-points/meta.json +13 -0
  1725. mlsys/tasks/cpu-fit-a-roofline-from-modeled-throughput-points/ref.cpp +11 -0
  1726. mlsys/tasks/cpu-fit-a-roofline-from-modeled-throughput-points/sol.hpp +21 -0
  1727. mlsys/tasks/cpu-fit-a-roofline-from-modeled-throughput-points/starter.cpp +11 -0
  1728. mlsys/tasks/cpu-fit-a-roofline-from-modeled-throughput-points/task.md +45 -0
  1729. mlsys/tasks/cpu-fix-a-hot-struct-field-with-large-stride/main.cpp +49 -0
  1730. mlsys/tasks/cpu-fix-a-hot-struct-field-with-large-stride/meta.json +13 -0
  1731. mlsys/tasks/cpu-fix-a-hot-struct-field-with-large-stride/ref.cpp +18 -0
  1732. mlsys/tasks/cpu-fix-a-hot-struct-field-with-large-stride/sol.hpp +27 -0
  1733. mlsys/tasks/cpu-fix-a-hot-struct-field-with-large-stride/starter.cpp +37 -0
  1734. mlsys/tasks/cpu-fix-a-hot-struct-field-with-large-stride/task.md +47 -0
  1735. mlsys/tasks/cpu-fix-a-power-of-two-leading-dimension-thrash/main.cpp +78 -0
  1736. mlsys/tasks/cpu-fix-a-power-of-two-leading-dimension-thrash/meta.json +22 -0
  1737. mlsys/tasks/cpu-fix-a-power-of-two-leading-dimension-thrash/ref.cpp +33 -0
  1738. mlsys/tasks/cpu-fix-a-power-of-two-leading-dimension-thrash/sol.hpp +34 -0
  1739. mlsys/tasks/cpu-fix-a-power-of-two-leading-dimension-thrash/starter.cpp +27 -0
  1740. mlsys/tasks/cpu-fix-a-power-of-two-leading-dimension-thrash/task.md +73 -0
  1741. mlsys/tasks/cpu-fix-a-too-large-tile-max-b-for-l2/main.cpp +63 -0
  1742. mlsys/tasks/cpu-fix-a-too-large-tile-max-b-for-l2/meta.json +17 -0
  1743. mlsys/tasks/cpu-fix-a-too-large-tile-max-b-for-l2/ref.cpp +7 -0
  1744. mlsys/tasks/cpu-fix-a-too-large-tile-max-b-for-l2/sol.hpp +12 -0
  1745. mlsys/tasks/cpu-fix-a-too-large-tile-max-b-for-l2/starter.cpp +11 -0
  1746. mlsys/tasks/cpu-fix-a-too-large-tile-max-b-for-l2/task.md +61 -0
  1747. mlsys/tasks/cpu-fix-an-einsum-axis-order-to-a-traffic-gate/main.cpp +62 -0
  1748. mlsys/tasks/cpu-fix-an-einsum-axis-order-to-a-traffic-gate/meta.json +13 -0
  1749. mlsys/tasks/cpu-fix-an-einsum-axis-order-to-a-traffic-gate/ref.cpp +28 -0
  1750. mlsys/tasks/cpu-fix-an-einsum-axis-order-to-a-traffic-gate/sol.hpp +34 -0
  1751. mlsys/tasks/cpu-fix-an-einsum-axis-order-to-a-traffic-gate/starter.cpp +31 -0
  1752. mlsys/tasks/cpu-fix-an-einsum-axis-order-to-a-traffic-gate/task.md +58 -0
  1753. mlsys/tasks/cpu-fix-bool-between-doubles-tail-padding/main.cpp +19 -0
  1754. mlsys/tasks/cpu-fix-bool-between-doubles-tail-padding/meta.json +18 -0
  1755. mlsys/tasks/cpu-fix-bool-between-doubles-tail-padding/ref.cpp +19 -0
  1756. mlsys/tasks/cpu-fix-bool-between-doubles-tail-padding/sol.hpp +30 -0
  1757. mlsys/tasks/cpu-fix-bool-between-doubles-tail-padding/starter.cpp +18 -0
  1758. mlsys/tasks/cpu-fix-bool-between-doubles-tail-padding/task.md +80 -0
  1759. mlsys/tasks/cpu-flush-to-zero-effect-on-results/check.py +67 -0
  1760. mlsys/tasks/cpu-flush-to-zero-effect-on-results/gen_fixtures.py +1 -0
  1761. mlsys/tasks/cpu-flush-to-zero-effect-on-results/meta.json +27 -0
  1762. mlsys/tasks/cpu-flush-to-zero-effect-on-results/solution_ref.py +19 -0
  1763. mlsys/tasks/cpu-flush-to-zero-effect-on-results/starter.py +6 -0
  1764. mlsys/tasks/cpu-flush-to-zero-effect-on-results/task.md +67 -0
  1765. mlsys/tasks/cpu-fma-vs-mul-then-add-rounding-difference/main.cpp +37 -0
  1766. mlsys/tasks/cpu-fma-vs-mul-then-add-rounding-difference/meta.json +9 -0
  1767. mlsys/tasks/cpu-fma-vs-mul-then-add-rounding-difference/ref.cpp +11 -0
  1768. mlsys/tasks/cpu-fma-vs-mul-then-add-rounding-difference/sol.hpp +20 -0
  1769. mlsys/tasks/cpu-fma-vs-mul-then-add-rounding-difference/starter.cpp +11 -0
  1770. mlsys/tasks/cpu-fma-vs-mul-then-add-rounding-difference/task.md +74 -0
  1771. mlsys/tasks/cpu-force-vectorization-via-settrace/main.cpp +28 -0
  1772. mlsys/tasks/cpu-force-vectorization-via-settrace/meta.json +13 -0
  1773. mlsys/tasks/cpu-force-vectorization-via-settrace/ref.cpp +12 -0
  1774. mlsys/tasks/cpu-force-vectorization-via-settrace/sol.hpp +24 -0
  1775. mlsys/tasks/cpu-force-vectorization-via-settrace/starter.cpp +8 -0
  1776. mlsys/tasks/cpu-force-vectorization-via-settrace/task.md +50 -0
  1777. mlsys/tasks/cpu-force-vectorized-gather-via-settrace/main.cpp +89 -0
  1778. mlsys/tasks/cpu-force-vectorized-gather-via-settrace/meta.json +13 -0
  1779. mlsys/tasks/cpu-force-vectorized-gather-via-settrace/ref.cpp +17 -0
  1780. mlsys/tasks/cpu-force-vectorized-gather-via-settrace/sol.hpp +29 -0
  1781. mlsys/tasks/cpu-force-vectorized-gather-via-settrace/starter.cpp +15 -0
  1782. mlsys/tasks/cpu-force-vectorized-gather-via-settrace/task.md +61 -0
  1783. mlsys/tasks/cpu-fp16-vs-fp32-accumulation-error-growth/check.py +36 -0
  1784. mlsys/tasks/cpu-fp16-vs-fp32-accumulation-error-growth/gen_fixtures.py +1 -0
  1785. mlsys/tasks/cpu-fp16-vs-fp32-accumulation-error-growth/meta.json +22 -0
  1786. mlsys/tasks/cpu-fp16-vs-fp32-accumulation-error-growth/solution_ref.py +19 -0
  1787. mlsys/tasks/cpu-fp16-vs-fp32-accumulation-error-growth/starter.py +6 -0
  1788. mlsys/tasks/cpu-fp16-vs-fp32-accumulation-error-growth/task.md +63 -0
  1789. mlsys/tasks/cpu-fp32-vs-fp16-lines-fetched-pair/main.cpp +16 -0
  1790. mlsys/tasks/cpu-fp32-vs-fp16-lines-fetched-pair/meta.json +13 -0
  1791. mlsys/tasks/cpu-fp32-vs-fp16-lines-fetched-pair/ref.cpp +16 -0
  1792. mlsys/tasks/cpu-fp32-vs-fp16-lines-fetched-pair/sol.hpp +11 -0
  1793. mlsys/tasks/cpu-fp32-vs-fp16-lines-fetched-pair/starter.cpp +10 -0
  1794. mlsys/tasks/cpu-fp32-vs-fp16-lines-fetched-pair/task.md +38 -0
  1795. mlsys/tasks/cpu-free-list-external-fragmentation-ratio/main.cpp +31 -0
  1796. mlsys/tasks/cpu-free-list-external-fragmentation-ratio/meta.json +17 -0
  1797. mlsys/tasks/cpu-free-list-external-fragmentation-ratio/ref.cpp +68 -0
  1798. mlsys/tasks/cpu-free-list-external-fragmentation-ratio/sol.hpp +30 -0
  1799. mlsys/tasks/cpu-free-list-external-fragmentation-ratio/starter.cpp +13 -0
  1800. mlsys/tasks/cpu-free-list-external-fragmentation-ratio/task.md +73 -0
  1801. mlsys/tasks/cpu-from-scratch-soa-transform-is-truly-elementwise/main.cpp +66 -0
  1802. mlsys/tasks/cpu-from-scratch-soa-transform-is-truly-elementwise/meta.json +13 -0
  1803. mlsys/tasks/cpu-from-scratch-soa-transform-is-truly-elementwise/ref.cpp +11 -0
  1804. mlsys/tasks/cpu-from-scratch-soa-transform-is-truly-elementwise/sol.hpp +31 -0
  1805. mlsys/tasks/cpu-from-scratch-soa-transform-is-truly-elementwise/starter.cpp +11 -0
  1806. mlsys/tasks/cpu-from-scratch-soa-transform-is-truly-elementwise/task.md +58 -0
  1807. mlsys/tasks/cpu-gather-via-index-array-distinct-lines/main.cpp +61 -0
  1808. mlsys/tasks/cpu-gather-via-index-array-distinct-lines/meta.json +17 -0
  1809. mlsys/tasks/cpu-gather-via-index-array-distinct-lines/ref.cpp +8 -0
  1810. mlsys/tasks/cpu-gather-via-index-array-distinct-lines/sol.hpp +21 -0
  1811. mlsys/tasks/cpu-gather-via-index-array-distinct-lines/starter.cpp +8 -0
  1812. mlsys/tasks/cpu-gather-via-index-array-distinct-lines/task.md +75 -0
  1813. mlsys/tasks/cpu-gather-vs-contiguous-load-modeled-uop-count/main.cpp +64 -0
  1814. mlsys/tasks/cpu-gather-vs-contiguous-load-modeled-uop-count/meta.json +14 -0
  1815. mlsys/tasks/cpu-gather-vs-contiguous-load-modeled-uop-count/ref.cpp +16 -0
  1816. mlsys/tasks/cpu-gather-vs-contiguous-load-modeled-uop-count/sol.hpp +33 -0
  1817. mlsys/tasks/cpu-gather-vs-contiguous-load-modeled-uop-count/starter.cpp +13 -0
  1818. mlsys/tasks/cpu-gather-vs-contiguous-load-modeled-uop-count/task.md +85 -0
  1819. mlsys/tasks/cpu-gemm-ai-as-a-function-of-m-n-k-and-reuse/main.cpp +23 -0
  1820. mlsys/tasks/cpu-gemm-ai-as-a-function-of-m-n-k-and-reuse/meta.json +15 -0
  1821. mlsys/tasks/cpu-gemm-ai-as-a-function-of-m-n-k-and-reuse/ref.cpp +10 -0
  1822. mlsys/tasks/cpu-gemm-ai-as-a-function-of-m-n-k-and-reuse/sol.hpp +33 -0
  1823. mlsys/tasks/cpu-gemm-ai-as-a-function-of-m-n-k-and-reuse/starter.cpp +9 -0
  1824. mlsys/tasks/cpu-gemm-ai-as-a-function-of-m-n-k-and-reuse/task.md +58 -0
  1825. mlsys/tasks/cpu-gshare-predictor-with-global-history/check.py +33 -0
  1826. mlsys/tasks/cpu-gshare-predictor-with-global-history/gen_fixtures.py +1 -0
  1827. mlsys/tasks/cpu-gshare-predictor-with-global-history/meta.json +20 -0
  1828. mlsys/tasks/cpu-gshare-predictor-with-global-history/solution_ref.py +16 -0
  1829. mlsys/tasks/cpu-gshare-predictor-with-global-history/starter.py +10 -0
  1830. mlsys/tasks/cpu-gshare-predictor-with-global-history/task.md +29 -0
  1831. mlsys/tasks/cpu-horizontal-sum-via-lane-reduction-byte-exact/check.py +20 -0
  1832. mlsys/tasks/cpu-horizontal-sum-via-lane-reduction-byte-exact/gen_fixtures.py +1 -0
  1833. mlsys/tasks/cpu-horizontal-sum-via-lane-reduction-byte-exact/meta.json +22 -0
  1834. mlsys/tasks/cpu-horizontal-sum-via-lane-reduction-byte-exact/solution_ref.py +11 -0
  1835. mlsys/tasks/cpu-horizontal-sum-via-lane-reduction-byte-exact/starter.py +5 -0
  1836. mlsys/tasks/cpu-horizontal-sum-via-lane-reduction-byte-exact/task.md +41 -0
  1837. mlsys/tasks/cpu-horner-fma-count-accuracy/main.cpp +18 -0
  1838. mlsys/tasks/cpu-horner-fma-count-accuracy/meta.json +13 -0
  1839. mlsys/tasks/cpu-horner-fma-count-accuracy/ref.cpp +14 -0
  1840. mlsys/tasks/cpu-horner-fma-count-accuracy/sol.hpp +19 -0
  1841. mlsys/tasks/cpu-horner-fma-count-accuracy/starter.cpp +11 -0
  1842. mlsys/tasks/cpu-horner-fma-count-accuracy/task.md +41 -0
  1843. mlsys/tasks/cpu-hot-cold-field-split-to-a-traffic-gate/check.py +44 -0
  1844. mlsys/tasks/cpu-hot-cold-field-split-to-a-traffic-gate/gen_fixtures.py +1 -0
  1845. mlsys/tasks/cpu-hot-cold-field-split-to-a-traffic-gate/meta.json +22 -0
  1846. mlsys/tasks/cpu-hot-cold-field-split-to-a-traffic-gate/solution_ref.py +2 -0
  1847. mlsys/tasks/cpu-hot-cold-field-split-to-a-traffic-gate/starter.py +3 -0
  1848. mlsys/tasks/cpu-hot-cold-field-split-to-a-traffic-gate/task.md +44 -0
  1849. mlsys/tasks/cpu-idealized-ipc-under-an-n-wide-machine/main.cpp +68 -0
  1850. mlsys/tasks/cpu-idealized-ipc-under-an-n-wide-machine/meta.json +22 -0
  1851. mlsys/tasks/cpu-idealized-ipc-under-an-n-wide-machine/ref.cpp +41 -0
  1852. mlsys/tasks/cpu-idealized-ipc-under-an-n-wide-machine/sol.hpp +33 -0
  1853. mlsys/tasks/cpu-idealized-ipc-under-an-n-wide-machine/starter.cpp +12 -0
  1854. mlsys/tasks/cpu-idealized-ipc-under-an-n-wide-machine/task.md +82 -0
  1855. mlsys/tasks/cpu-identify-reuses-in-a-tiny-trace/main.cpp +27 -0
  1856. mlsys/tasks/cpu-identify-reuses-in-a-tiny-trace/meta.json +23 -0
  1857. mlsys/tasks/cpu-identify-reuses-in-a-tiny-trace/ref.cpp +18 -0
  1858. mlsys/tasks/cpu-identify-reuses-in-a-tiny-trace/sol.hpp +13 -0
  1859. mlsys/tasks/cpu-identify-reuses-in-a-tiny-trace/starter.cpp +10 -0
  1860. mlsys/tasks/cpu-identify-reuses-in-a-tiny-trace/task.md +50 -0
  1861. mlsys/tasks/cpu-ilp-of-an-attention-inner-loop-pick-unroll-accumulate/main.cpp +50 -0
  1862. mlsys/tasks/cpu-ilp-of-an-attention-inner-loop-pick-unroll-accumulate/meta.json +13 -0
  1863. mlsys/tasks/cpu-ilp-of-an-attention-inner-loop-pick-unroll-accumulate/ref.cpp +13 -0
  1864. mlsys/tasks/cpu-ilp-of-an-attention-inner-loop-pick-unroll-accumulate/sol.hpp +31 -0
  1865. mlsys/tasks/cpu-ilp-of-an-attention-inner-loop-pick-unroll-accumulate/starter.cpp +11 -0
  1866. mlsys/tasks/cpu-ilp-of-an-attention-inner-loop-pick-unroll-accumulate/task.md +43 -0
  1867. mlsys/tasks/cpu-inclusive-vs-exclusive-hierarchy-miss-counts/main.cpp +25 -0
  1868. mlsys/tasks/cpu-inclusive-vs-exclusive-hierarchy-miss-counts/meta.json +18 -0
  1869. mlsys/tasks/cpu-inclusive-vs-exclusive-hierarchy-miss-counts/ref.cpp +105 -0
  1870. mlsys/tasks/cpu-inclusive-vs-exclusive-hierarchy-miss-counts/sol.hpp +35 -0
  1871. mlsys/tasks/cpu-inclusive-vs-exclusive-hierarchy-miss-counts/starter.cpp +9 -0
  1872. mlsys/tasks/cpu-inclusive-vs-exclusive-hierarchy-miss-counts/task.md +73 -0
  1873. mlsys/tasks/cpu-insert-software-prefetch-distance-to-hide-latency/main.cpp +24 -0
  1874. mlsys/tasks/cpu-insert-software-prefetch-distance-to-hide-latency/meta.json +9 -0
  1875. mlsys/tasks/cpu-insert-software-prefetch-distance-to-hide-latency/ref.cpp +9 -0
  1876. mlsys/tasks/cpu-insert-software-prefetch-distance-to-hide-latency/sol.hpp +26 -0
  1877. mlsys/tasks/cpu-insert-software-prefetch-distance-to-hide-latency/starter.cpp +8 -0
  1878. mlsys/tasks/cpu-insert-software-prefetch-distance-to-hide-latency/task.md +80 -0
  1879. mlsys/tasks/cpu-int8-gemv-with-simd-widening-equivalence/main.cpp +30 -0
  1880. mlsys/tasks/cpu-int8-gemv-with-simd-widening-equivalence/meta.json +2 -0
  1881. mlsys/tasks/cpu-int8-gemv-with-simd-widening-equivalence/ref.cpp +16 -0
  1882. mlsys/tasks/cpu-int8-gemv-with-simd-widening-equivalence/sol.hpp +11 -0
  1883. mlsys/tasks/cpu-int8-gemv-with-simd-widening-equivalence/starter.cpp +19 -0
  1884. mlsys/tasks/cpu-int8-gemv-with-simd-widening-equivalence/task.md +59 -0
  1885. mlsys/tasks/cpu-interleaved-vs-first-touch-remote-accesses/main.cpp +44 -0
  1886. mlsys/tasks/cpu-interleaved-vs-first-touch-remote-accesses/meta.json +13 -0
  1887. mlsys/tasks/cpu-interleaved-vs-first-touch-remote-accesses/ref.cpp +30 -0
  1888. mlsys/tasks/cpu-interleaved-vs-first-touch-remote-accesses/sol.hpp +32 -0
  1889. mlsys/tasks/cpu-interleaved-vs-first-touch-remote-accesses/starter.cpp +13 -0
  1890. mlsys/tasks/cpu-interleaved-vs-first-touch-remote-accesses/task.md +85 -0
  1891. mlsys/tasks/cpu-kahan-pairwise-summation-accuracy/main.cpp +37 -0
  1892. mlsys/tasks/cpu-kahan-pairwise-summation-accuracy/meta.json +15 -0
  1893. mlsys/tasks/cpu-kahan-pairwise-summation-accuracy/ref.cpp +12 -0
  1894. mlsys/tasks/cpu-kahan-pairwise-summation-accuracy/sol.hpp +24 -0
  1895. mlsys/tasks/cpu-kahan-pairwise-summation-accuracy/starter.cpp +9 -0
  1896. mlsys/tasks/cpu-kahan-pairwise-summation-accuracy/task.md +50 -0
  1897. mlsys/tasks/cpu-knee-detection-in-a-working-set-sweep/main.cpp +68 -0
  1898. mlsys/tasks/cpu-knee-detection-in-a-working-set-sweep/meta.json +13 -0
  1899. mlsys/tasks/cpu-knee-detection-in-a-working-set-sweep/ref.cpp +13 -0
  1900. mlsys/tasks/cpu-knee-detection-in-a-working-set-sweep/sol.hpp +22 -0
  1901. mlsys/tasks/cpu-knee-detection-in-a-working-set-sweep/starter.cpp +10 -0
  1902. mlsys/tasks/cpu-knee-detection-in-a-working-set-sweep/task.md +59 -0
  1903. mlsys/tasks/cpu-kv-record-layout-optimal-for-both-read-paths/main.cpp +98 -0
  1904. mlsys/tasks/cpu-kv-record-layout-optimal-for-both-read-paths/meta.json +13 -0
  1905. mlsys/tasks/cpu-kv-record-layout-optimal-for-both-read-paths/ref.cpp +7 -0
  1906. mlsys/tasks/cpu-kv-record-layout-optimal-for-both-read-paths/sol.hpp +31 -0
  1907. mlsys/tasks/cpu-kv-record-layout-optimal-for-both-read-paths/starter.cpp +9 -0
  1908. mlsys/tasks/cpu-kv-record-layout-optimal-for-both-read-paths/task.md +79 -0
  1909. mlsys/tasks/cpu-label-5-traces-line-efficient-vs-wasteful/main.cpp +41 -0
  1910. mlsys/tasks/cpu-label-5-traces-line-efficient-vs-wasteful/meta.json +17 -0
  1911. mlsys/tasks/cpu-label-5-traces-line-efficient-vs-wasteful/ref.cpp +13 -0
  1912. mlsys/tasks/cpu-label-5-traces-line-efficient-vs-wasteful/sol.hpp +13 -0
  1913. mlsys/tasks/cpu-label-5-traces-line-efficient-vs-wasteful/starter.cpp +9 -0
  1914. mlsys/tasks/cpu-label-5-traces-line-efficient-vs-wasteful/task.md +73 -0
  1915. mlsys/tasks/cpu-large-activation-write-out-nt-vs-temporal-traffic/main.cpp +45 -0
  1916. mlsys/tasks/cpu-large-activation-write-out-nt-vs-temporal-traffic/meta.json +13 -0
  1917. mlsys/tasks/cpu-large-activation-write-out-nt-vs-temporal-traffic/ref.cpp +38 -0
  1918. mlsys/tasks/cpu-large-activation-write-out-nt-vs-temporal-traffic/sol.hpp +50 -0
  1919. mlsys/tasks/cpu-large-activation-write-out-nt-vs-temporal-traffic/starter.cpp +8 -0
  1920. mlsys/tasks/cpu-large-activation-write-out-nt-vs-temporal-traffic/task.md +75 -0
  1921. mlsys/tasks/cpu-linked-list-to-index-array-byte-exact-mlp-up/main.cpp +73 -0
  1922. mlsys/tasks/cpu-linked-list-to-index-array-byte-exact-mlp-up/meta.json +13 -0
  1923. mlsys/tasks/cpu-linked-list-to-index-array-byte-exact-mlp-up/ref.cpp +17 -0
  1924. mlsys/tasks/cpu-linked-list-to-index-array-byte-exact-mlp-up/sol.hpp +36 -0
  1925. mlsys/tasks/cpu-linked-list-to-index-array-byte-exact-mlp-up/starter.cpp +16 -0
  1926. mlsys/tasks/cpu-linked-list-to-index-array-byte-exact-mlp-up/task.md +51 -0
  1927. mlsys/tasks/cpu-local-vs-remote-access-counts/main.cpp +27 -0
  1928. mlsys/tasks/cpu-local-vs-remote-access-counts/meta.json +21 -0
  1929. mlsys/tasks/cpu-local-vs-remote-access-counts/ref.cpp +16 -0
  1930. mlsys/tasks/cpu-local-vs-remote-access-counts/sol.hpp +21 -0
  1931. mlsys/tasks/cpu-local-vs-remote-access-counts/starter.cpp +13 -0
  1932. mlsys/tasks/cpu-local-vs-remote-access-counts/task.md +51 -0
  1933. mlsys/tasks/cpu-logsumexp-stability-across-scales/main.cpp +26 -0
  1934. mlsys/tasks/cpu-logsumexp-stability-across-scales/meta.json +21 -0
  1935. mlsys/tasks/cpu-logsumexp-stability-across-scales/ref.cpp +13 -0
  1936. mlsys/tasks/cpu-logsumexp-stability-across-scales/sol.hpp +22 -0
  1937. mlsys/tasks/cpu-logsumexp-stability-across-scales/starter.cpp +7 -0
  1938. mlsys/tasks/cpu-logsumexp-stability-across-scales/task.md +74 -0
  1939. mlsys/tasks/cpu-loop-interchange-to-a-traffic-gate/main.cpp +58 -0
  1940. mlsys/tasks/cpu-loop-interchange-to-a-traffic-gate/meta.json +9 -0
  1941. mlsys/tasks/cpu-loop-interchange-to-a-traffic-gate/ref.cpp +9 -0
  1942. mlsys/tasks/cpu-loop-interchange-to-a-traffic-gate/sol.hpp +29 -0
  1943. mlsys/tasks/cpu-loop-interchange-to-a-traffic-gate/starter.cpp +9 -0
  1944. mlsys/tasks/cpu-loop-interchange-to-a-traffic-gate/task.md +67 -0
  1945. mlsys/tasks/cpu-loop-overhead-ops-eliminated-by-unrolling/main.cpp +23 -0
  1946. mlsys/tasks/cpu-loop-overhead-ops-eliminated-by-unrolling/meta.json +10 -0
  1947. mlsys/tasks/cpu-loop-overhead-ops-eliminated-by-unrolling/ref.cpp +7 -0
  1948. mlsys/tasks/cpu-loop-overhead-ops-eliminated-by-unrolling/sol.hpp +19 -0
  1949. mlsys/tasks/cpu-loop-overhead-ops-eliminated-by-unrolling/starter.cpp +10 -0
  1950. mlsys/tasks/cpu-loop-overhead-ops-eliminated-by-unrolling/task.md +65 -0
  1951. mlsys/tasks/cpu-lru-stack-monotonicity-over-50-traces/main.cpp +42 -0
  1952. mlsys/tasks/cpu-lru-stack-monotonicity-over-50-traces/meta.json +17 -0
  1953. mlsys/tasks/cpu-lru-stack-monotonicity-over-50-traces/ref.cpp +23 -0
  1954. mlsys/tasks/cpu-lru-stack-monotonicity-over-50-traces/sol.hpp +13 -0
  1955. mlsys/tasks/cpu-lru-stack-monotonicity-over-50-traces/starter.cpp +9 -0
  1956. mlsys/tasks/cpu-lru-stack-monotonicity-over-50-traces/task.md +62 -0
  1957. mlsys/tasks/cpu-max-outstanding-misses-mlp-degree/main.cpp +28 -0
  1958. mlsys/tasks/cpu-max-outstanding-misses-mlp-degree/meta.json +17 -0
  1959. mlsys/tasks/cpu-max-outstanding-misses-mlp-degree/ref.cpp +38 -0
  1960. mlsys/tasks/cpu-max-outstanding-misses-mlp-degree/sol.hpp +14 -0
  1961. mlsys/tasks/cpu-max-outstanding-misses-mlp-degree/starter.cpp +10 -0
  1962. mlsys/tasks/cpu-max-outstanding-misses-mlp-degree/task.md +72 -0
  1963. mlsys/tasks/cpu-min-accumulators-to-hide-fma-latency/check.py +53 -0
  1964. mlsys/tasks/cpu-min-accumulators-to-hide-fma-latency/gen_fixtures.py +1 -0
  1965. mlsys/tasks/cpu-min-accumulators-to-hide-fma-latency/meta.json +27 -0
  1966. mlsys/tasks/cpu-min-accumulators-to-hide-fma-latency/solution_ref.py +7 -0
  1967. mlsys/tasks/cpu-min-accumulators-to-hide-fma-latency/starter.py +6 -0
  1968. mlsys/tasks/cpu-min-accumulators-to-hide-fma-latency/task.md +73 -0
  1969. mlsys/tasks/cpu-miss-rate-curve-from-a-reuse-histogram/main.cpp +61 -0
  1970. mlsys/tasks/cpu-miss-rate-curve-from-a-reuse-histogram/meta.json +15 -0
  1971. mlsys/tasks/cpu-miss-rate-curve-from-a-reuse-histogram/ref.cpp +10 -0
  1972. mlsys/tasks/cpu-miss-rate-curve-from-a-reuse-histogram/sol.hpp +26 -0
  1973. mlsys/tasks/cpu-miss-rate-curve-from-a-reuse-histogram/starter.cpp +10 -0
  1974. mlsys/tasks/cpu-miss-rate-curve-from-a-reuse-histogram/task.md +56 -0
  1975. mlsys/tasks/cpu-model-coherence-invalidations-for-interleaved-writes/main.cpp +31 -0
  1976. mlsys/tasks/cpu-model-coherence-invalidations-for-interleaved-writes/meta.json +13 -0
  1977. mlsys/tasks/cpu-model-coherence-invalidations-for-interleaved-writes/ref.cpp +24 -0
  1978. mlsys/tasks/cpu-model-coherence-invalidations-for-interleaved-writes/sol.hpp +22 -0
  1979. mlsys/tasks/cpu-model-coherence-invalidations-for-interleaved-writes/starter.cpp +11 -0
  1980. mlsys/tasks/cpu-model-coherence-invalidations-for-interleaved-writes/task.md +69 -0
  1981. mlsys/tasks/cpu-model-runtime-misses-mlp-latency/main.cpp +57 -0
  1982. mlsys/tasks/cpu-model-runtime-misses-mlp-latency/meta.json +2 -0
  1983. mlsys/tasks/cpu-model-runtime-misses-mlp-latency/ref.cpp +5 -0
  1984. mlsys/tasks/cpu-model-runtime-misses-mlp-latency/sol.hpp +18 -0
  1985. mlsys/tasks/cpu-model-runtime-misses-mlp-latency/starter.cpp +9 -0
  1986. mlsys/tasks/cpu-model-runtime-misses-mlp-latency/task.md +72 -0
  1987. mlsys/tasks/cpu-modeled-op-count-speedup-of-vectorized-dot/main.cpp +24 -0
  1988. mlsys/tasks/cpu-modeled-op-count-speedup-of-vectorized-dot/meta.json +22 -0
  1989. mlsys/tasks/cpu-modeled-op-count-speedup-of-vectorized-dot/ref.cpp +6 -0
  1990. mlsys/tasks/cpu-modeled-op-count-speedup-of-vectorized-dot/sol.hpp +25 -0
  1991. mlsys/tasks/cpu-modeled-op-count-speedup-of-vectorized-dot/starter.cpp +8 -0
  1992. mlsys/tasks/cpu-modeled-op-count-speedup-of-vectorized-dot/task.md +74 -0
  1993. mlsys/tasks/cpu-modulo-scheduling-initiation-interval-ii/check.py +21 -0
  1994. mlsys/tasks/cpu-modulo-scheduling-initiation-interval-ii/gen_fixtures.py +1 -0
  1995. mlsys/tasks/cpu-modulo-scheduling-initiation-interval-ii/meta.json +22 -0
  1996. mlsys/tasks/cpu-modulo-scheduling-initiation-interval-ii/solution_ref.py +2 -0
  1997. mlsys/tasks/cpu-modulo-scheduling-initiation-interval-ii/starter.py +3 -0
  1998. mlsys/tasks/cpu-modulo-scheduling-initiation-interval-ii/task.md +33 -0
  1999. mlsys/tasks/cpu-moe-expert-routing-gather-min-traffic-layout/main.cpp +57 -0
  2000. mlsys/tasks/cpu-moe-expert-routing-gather-min-traffic-layout/meta.json +13 -0
  2001. mlsys/tasks/cpu-moe-expert-routing-gather-min-traffic-layout/ref.cpp +17 -0
  2002. mlsys/tasks/cpu-moe-expert-routing-gather-min-traffic-layout/sol.hpp +32 -0
  2003. mlsys/tasks/cpu-moe-expert-routing-gather-min-traffic-layout/starter.cpp +10 -0
  2004. mlsys/tasks/cpu-moe-expert-routing-gather-min-traffic-layout/task.md +48 -0
  2005. mlsys/tasks/cpu-multi-level-page-walk-cost-model/main.cpp +32 -0
  2006. mlsys/tasks/cpu-multi-level-page-walk-cost-model/meta.json +17 -0
  2007. mlsys/tasks/cpu-multi-level-page-walk-cost-model/ref.cpp +37 -0
  2008. mlsys/tasks/cpu-multi-level-page-walk-cost-model/sol.hpp +26 -0
  2009. mlsys/tasks/cpu-multi-level-page-walk-cost-model/starter.cpp +11 -0
  2010. mlsys/tasks/cpu-multi-level-page-walk-cost-model/task.md +67 -0
  2011. mlsys/tasks/cpu-n-way-set-associative-lru-simulator/main.cpp +43 -0
  2012. mlsys/tasks/cpu-n-way-set-associative-lru-simulator/meta.json +22 -0
  2013. mlsys/tasks/cpu-n-way-set-associative-lru-simulator/ref.cpp +36 -0
  2014. mlsys/tasks/cpu-n-way-set-associative-lru-simulator/sol.hpp +19 -0
  2015. mlsys/tasks/cpu-n-way-set-associative-lru-simulator/starter.cpp +12 -0
  2016. mlsys/tasks/cpu-n-way-set-associative-lru-simulator/task.md +78 -0
  2017. mlsys/tasks/cpu-naive-vs-1-level-vs-2-level-miss-triple/main.cpp +56 -0
  2018. mlsys/tasks/cpu-naive-vs-1-level-vs-2-level-miss-triple/meta.json +13 -0
  2019. mlsys/tasks/cpu-naive-vs-1-level-vs-2-level-miss-triple/ref.cpp +52 -0
  2020. mlsys/tasks/cpu-naive-vs-1-level-vs-2-level-miss-triple/sol.hpp +40 -0
  2021. mlsys/tasks/cpu-naive-vs-1-level-vs-2-level-miss-triple/starter.cpp +14 -0
  2022. mlsys/tasks/cpu-naive-vs-1-level-vs-2-level-miss-triple/task.md +61 -0
  2023. mlsys/tasks/cpu-naive-vs-tiled-matmul-reuse-distances-fit-l2/main.cpp +58 -0
  2024. mlsys/tasks/cpu-naive-vs-tiled-matmul-reuse-distances-fit-l2/meta.json +13 -0
  2025. mlsys/tasks/cpu-naive-vs-tiled-matmul-reuse-distances-fit-l2/ref.cpp +24 -0
  2026. mlsys/tasks/cpu-naive-vs-tiled-matmul-reuse-distances-fit-l2/sol.hpp +22 -0
  2027. mlsys/tasks/cpu-naive-vs-tiled-matmul-reuse-distances-fit-l2/starter.cpp +11 -0
  2028. mlsys/tasks/cpu-naive-vs-tiled-matmul-reuse-distances-fit-l2/task.md +69 -0
  2029. mlsys/tasks/cpu-native-nt-store-intrinsic-kernel/main.cpp +41 -0
  2030. mlsys/tasks/cpu-native-nt-store-intrinsic-kernel/meta.json +18 -0
  2031. mlsys/tasks/cpu-native-nt-store-intrinsic-kernel/ref.cpp +7 -0
  2032. mlsys/tasks/cpu-native-nt-store-intrinsic-kernel/sol.hpp +33 -0
  2033. mlsys/tasks/cpu-native-nt-store-intrinsic-kernel/starter.cpp +8 -0
  2034. mlsys/tasks/cpu-native-nt-store-intrinsic-kernel/task.md +75 -0
  2035. mlsys/tasks/cpu-neon-intrinsic-elementwise-kernel/check.py +58 -0
  2036. mlsys/tasks/cpu-neon-intrinsic-elementwise-kernel/gen_fixtures.py +1 -0
  2037. mlsys/tasks/cpu-neon-intrinsic-elementwise-kernel/meta.json +29 -0
  2038. mlsys/tasks/cpu-neon-intrinsic-elementwise-kernel/solution_ref.py +12 -0
  2039. mlsys/tasks/cpu-neon-intrinsic-elementwise-kernel/starter.py +3 -0
  2040. mlsys/tasks/cpu-neon-intrinsic-elementwise-kernel/task.md +59 -0
  2041. mlsys/tasks/cpu-next-line-prefetcher-hit-miss-on-a-trace/main.cpp +17 -0
  2042. mlsys/tasks/cpu-next-line-prefetcher-hit-miss-on-a-trace/meta.json +15 -0
  2043. mlsys/tasks/cpu-next-line-prefetcher-hit-miss-on-a-trace/ref.cpp +39 -0
  2044. mlsys/tasks/cpu-next-line-prefetcher-hit-miss-on-a-trace/sol.hpp +34 -0
  2045. mlsys/tasks/cpu-next-line-prefetcher-hit-miss-on-a-trace/starter.cpp +10 -0
  2046. mlsys/tasks/cpu-next-line-prefetcher-hit-miss-on-a-trace/task.md +45 -0
  2047. mlsys/tasks/cpu-no-branch-hot-loop-enforced-via-settrace/main.cpp +52 -0
  2048. mlsys/tasks/cpu-no-branch-hot-loop-enforced-via-settrace/meta.json +9 -0
  2049. mlsys/tasks/cpu-no-branch-hot-loop-enforced-via-settrace/ref.cpp +6 -0
  2050. mlsys/tasks/cpu-no-branch-hot-loop-enforced-via-settrace/sol.hpp +42 -0
  2051. mlsys/tasks/cpu-no-branch-hot-loop-enforced-via-settrace/starter.cpp +9 -0
  2052. mlsys/tasks/cpu-no-branch-hot-loop-enforced-via-settrace/task.md +64 -0
  2053. mlsys/tasks/cpu-no-prefetch-vs-next-line-vs-stride-miss-triple/main.cpp +93 -0
  2054. mlsys/tasks/cpu-no-prefetch-vs-next-line-vs-stride-miss-triple/meta.json +13 -0
  2055. mlsys/tasks/cpu-no-prefetch-vs-next-line-vs-stride-miss-triple/ref.cpp +13 -0
  2056. mlsys/tasks/cpu-no-prefetch-vs-next-line-vs-stride-miss-triple/sol.hpp +35 -0
  2057. mlsys/tasks/cpu-no-prefetch-vs-next-line-vs-stride-miss-triple/starter.cpp +10 -0
  2058. mlsys/tasks/cpu-no-prefetch-vs-next-line-vs-stride-miss-triple/task.md +46 -0
  2059. mlsys/tasks/cpu-non-associativity-sum-orderings-vs-high-precision-ref/main.cpp +26 -0
  2060. mlsys/tasks/cpu-non-associativity-sum-orderings-vs-high-precision-ref/meta.json +22 -0
  2061. mlsys/tasks/cpu-non-associativity-sum-orderings-vs-high-precision-ref/ref.cpp +55 -0
  2062. mlsys/tasks/cpu-non-associativity-sum-orderings-vs-high-precision-ref/sol.hpp +25 -0
  2063. mlsys/tasks/cpu-non-associativity-sum-orderings-vs-high-precision-ref/starter.cpp +7 -0
  2064. mlsys/tasks/cpu-non-associativity-sum-orderings-vs-high-precision-ref/task.md +82 -0
  2065. mlsys/tasks/cpu-numa-amat-with-local-remote-latencies/main.cpp +28 -0
  2066. mlsys/tasks/cpu-numa-amat-with-local-remote-latencies/meta.json +10 -0
  2067. mlsys/tasks/cpu-numa-amat-with-local-remote-latencies/ref.cpp +13 -0
  2068. mlsys/tasks/cpu-numa-amat-with-local-remote-latencies/sol.hpp +18 -0
  2069. mlsys/tasks/cpu-numa-amat-with-local-remote-latencies/starter.cpp +15 -0
  2070. mlsys/tasks/cpu-numa-amat-with-local-remote-latencies/task.md +70 -0
  2071. mlsys/tasks/cpu-optimal-padded-leading-dim-for-a-matrix-stack/main.cpp +61 -0
  2072. mlsys/tasks/cpu-optimal-padded-leading-dim-for-a-matrix-stack/meta.json +15 -0
  2073. mlsys/tasks/cpu-optimal-padded-leading-dim-for-a-matrix-stack/ref.cpp +9 -0
  2074. mlsys/tasks/cpu-optimal-padded-leading-dim-for-a-matrix-stack/sol.hpp +25 -0
  2075. mlsys/tasks/cpu-optimal-padded-leading-dim-for-a-matrix-stack/starter.cpp +9 -0
  2076. mlsys/tasks/cpu-optimal-padded-leading-dim-for-a-matrix-stack/task.md +50 -0
  2077. mlsys/tasks/cpu-optimal-prefetch-distance-from-latency-loop-cost/main.cpp +22 -0
  2078. mlsys/tasks/cpu-optimal-prefetch-distance-from-latency-loop-cost/meta.json +21 -0
  2079. mlsys/tasks/cpu-optimal-prefetch-distance-from-latency-loop-cost/ref.cpp +17 -0
  2080. mlsys/tasks/cpu-optimal-prefetch-distance-from-latency-loop-cost/sol.hpp +23 -0
  2081. mlsys/tasks/cpu-optimal-prefetch-distance-from-latency-loop-cost/starter.cpp +13 -0
  2082. mlsys/tasks/cpu-optimal-prefetch-distance-from-latency-loop-cost/task.md +70 -0
  2083. mlsys/tasks/cpu-packed-vs-aligned-footprint-for-n-records/check.py +30 -0
  2084. mlsys/tasks/cpu-packed-vs-aligned-footprint-for-n-records/gen_fixtures.py +1 -0
  2085. mlsys/tasks/cpu-packed-vs-aligned-footprint-for-n-records/meta.json +22 -0
  2086. mlsys/tasks/cpu-packed-vs-aligned-footprint-for-n-records/solution_ref.py +26 -0
  2087. mlsys/tasks/cpu-packed-vs-aligned-footprint-for-n-records/starter.py +7 -0
  2088. mlsys/tasks/cpu-packed-vs-aligned-footprint-for-n-records/task.md +43 -0
  2089. mlsys/tasks/cpu-pad-a-multi-head-projection-weight-stack-to-a-budget/main.cpp +76 -0
  2090. mlsys/tasks/cpu-pad-a-multi-head-projection-weight-stack-to-a-budget/meta.json +13 -0
  2091. mlsys/tasks/cpu-pad-a-multi-head-projection-weight-stack-to-a-budget/ref.cpp +21 -0
  2092. mlsys/tasks/cpu-pad-a-multi-head-projection-weight-stack-to-a-budget/sol.hpp +39 -0
  2093. mlsys/tasks/cpu-pad-a-multi-head-projection-weight-stack-to-a-budget/starter.cpp +14 -0
  2094. mlsys/tasks/cpu-pad-a-multi-head-projection-weight-stack-to-a-budget/task.md +69 -0
  2095. mlsys/tasks/cpu-pad-per-thread-counters-to-kill-false-sharing/main.cpp +34 -0
  2096. mlsys/tasks/cpu-pad-per-thread-counters-to-kill-false-sharing/meta.json +17 -0
  2097. mlsys/tasks/cpu-pad-per-thread-counters-to-kill-false-sharing/ref.cpp +5 -0
  2098. mlsys/tasks/cpu-pad-per-thread-counters-to-kill-false-sharing/sol.hpp +14 -0
  2099. mlsys/tasks/cpu-pad-per-thread-counters-to-kill-false-sharing/starter.cpp +9 -0
  2100. mlsys/tasks/cpu-pad-per-thread-counters-to-kill-false-sharing/task.md +52 -0
  2101. mlsys/tasks/cpu-paged-attention-kv-block-allocator-vs-block-size/main.cpp +19 -0
  2102. mlsys/tasks/cpu-paged-attention-kv-block-allocator-vs-block-size/meta.json +22 -0
  2103. mlsys/tasks/cpu-paged-attention-kv-block-allocator-vs-block-size/ref.cpp +33 -0
  2104. mlsys/tasks/cpu-paged-attention-kv-block-allocator-vs-block-size/sol.hpp +30 -0
  2105. mlsys/tasks/cpu-paged-attention-kv-block-allocator-vs-block-size/starter.cpp +14 -0
  2106. mlsys/tasks/cpu-paged-attention-kv-block-allocator-vs-block-size/task.md +67 -0
  2107. mlsys/tasks/cpu-pick-tile-b-for-capacity-fits-flag/main.cpp +94 -0
  2108. mlsys/tasks/cpu-pick-tile-b-for-capacity-fits-flag/meta.json +18 -0
  2109. mlsys/tasks/cpu-pick-tile-b-for-capacity-fits-flag/ref.cpp +13 -0
  2110. mlsys/tasks/cpu-pick-tile-b-for-capacity-fits-flag/sol.hpp +23 -0
  2111. mlsys/tasks/cpu-pick-tile-b-for-capacity-fits-flag/starter.cpp +8 -0
  2112. mlsys/tasks/cpu-pick-tile-b-for-capacity-fits-flag/task.md +79 -0
  2113. mlsys/tasks/cpu-pick-tile-keeping-working-set-in-l2/main.cpp +42 -0
  2114. mlsys/tasks/cpu-pick-tile-keeping-working-set-in-l2/meta.json +13 -0
  2115. mlsys/tasks/cpu-pick-tile-keeping-working-set-in-l2/ref.cpp +22 -0
  2116. mlsys/tasks/cpu-pick-tile-keeping-working-set-in-l2/sol.hpp +27 -0
  2117. mlsys/tasks/cpu-pick-tile-keeping-working-set-in-l2/starter.cpp +13 -0
  2118. mlsys/tasks/cpu-pick-tile-keeping-working-set-in-l2/task.md +43 -0
  2119. mlsys/tasks/cpu-pointer-chase-vs-independent-loads-chain-length/main.cpp +56 -0
  2120. mlsys/tasks/cpu-pointer-chase-vs-independent-loads-chain-length/meta.json +22 -0
  2121. mlsys/tasks/cpu-pointer-chase-vs-independent-loads-chain-length/ref.cpp +14 -0
  2122. mlsys/tasks/cpu-pointer-chase-vs-independent-loads-chain-length/sol.hpp +22 -0
  2123. mlsys/tasks/cpu-pointer-chase-vs-independent-loads-chain-length/starter.cpp +7 -0
  2124. mlsys/tasks/cpu-pointer-chase-vs-independent-loads-chain-length/task.md +67 -0
  2125. mlsys/tasks/cpu-pool-allocator-vs-malloc-per-object-footprint/main.cpp +34 -0
  2126. mlsys/tasks/cpu-pool-allocator-vs-malloc-per-object-footprint/meta.json +9 -0
  2127. mlsys/tasks/cpu-pool-allocator-vs-malloc-per-object-footprint/ref.cpp +22 -0
  2128. mlsys/tasks/cpu-pool-allocator-vs-malloc-per-object-footprint/sol.hpp +31 -0
  2129. mlsys/tasks/cpu-pool-allocator-vs-malloc-per-object-footprint/starter.cpp +22 -0
  2130. mlsys/tasks/cpu-pool-allocator-vs-malloc-per-object-footprint/task.md +69 -0
  2131. mlsys/tasks/cpu-predict-aos-vs-soa-line-optimal/main.cpp +29 -0
  2132. mlsys/tasks/cpu-predict-aos-vs-soa-line-optimal/meta.json +17 -0
  2133. mlsys/tasks/cpu-predict-aos-vs-soa-line-optimal/ref.cpp +54 -0
  2134. mlsys/tasks/cpu-predict-aos-vs-soa-line-optimal/sol.hpp +22 -0
  2135. mlsys/tasks/cpu-predict-aos-vs-soa-line-optimal/starter.cpp +10 -0
  2136. mlsys/tasks/cpu-predict-aos-vs-soa-line-optimal/task.md +68 -0
  2137. mlsys/tasks/cpu-predict-conflict-miss-pathology-for-size-stride/main.cpp +108 -0
  2138. mlsys/tasks/cpu-predict-conflict-miss-pathology-for-size-stride/meta.json +18 -0
  2139. mlsys/tasks/cpu-predict-conflict-miss-pathology-for-size-stride/ref.cpp +11 -0
  2140. mlsys/tasks/cpu-predict-conflict-miss-pathology-for-size-stride/sol.hpp +34 -0
  2141. mlsys/tasks/cpu-predict-conflict-miss-pathology-for-size-stride/starter.cpp +8 -0
  2142. mlsys/tasks/cpu-predict-conflict-miss-pathology-for-size-stride/task.md +71 -0
  2143. mlsys/tasks/cpu-predict-tlb-thrash-for-strided-tensor-walk/main.cpp +41 -0
  2144. mlsys/tasks/cpu-predict-tlb-thrash-for-strided-tensor-walk/meta.json +22 -0
  2145. mlsys/tasks/cpu-predict-tlb-thrash-for-strided-tensor-walk/ref.cpp +15 -0
  2146. mlsys/tasks/cpu-predict-tlb-thrash-for-strided-tensor-walk/sol.hpp +32 -0
  2147. mlsys/tasks/cpu-predict-tlb-thrash-for-strided-tensor-walk/starter.cpp +12 -0
  2148. mlsys/tasks/cpu-predict-tlb-thrash-for-strided-tensor-walk/task.md +76 -0
  2149. mlsys/tasks/cpu-predict-which-of-5-layouts-false-share/main.cpp +12 -0
  2150. mlsys/tasks/cpu-predict-which-of-5-layouts-false-share/meta.json +17 -0
  2151. mlsys/tasks/cpu-predict-which-of-5-layouts-false-share/ref.cpp +38 -0
  2152. mlsys/tasks/cpu-predict-which-of-5-layouts-false-share/sol.hpp +21 -0
  2153. mlsys/tasks/cpu-predict-which-of-5-layouts-false-share/starter.cpp +10 -0
  2154. mlsys/tasks/cpu-predict-which-of-5-layouts-false-share/task.md +71 -0
  2155. mlsys/tasks/cpu-predict-which-of-5-loops-auto-vectorize/main.cpp +102 -0
  2156. mlsys/tasks/cpu-predict-which-of-5-loops-auto-vectorize/meta.json +15 -0
  2157. mlsys/tasks/cpu-predict-which-of-5-loops-auto-vectorize/ref.cpp +11 -0
  2158. mlsys/tasks/cpu-predict-which-of-5-loops-auto-vectorize/sol.hpp +40 -0
  2159. mlsys/tasks/cpu-predict-which-of-5-loops-auto-vectorize/starter.cpp +9 -0
  2160. mlsys/tasks/cpu-predict-which-of-5-loops-auto-vectorize/task.md +57 -0
  2161. mlsys/tasks/cpu-predict-which-patterns-hw-prefetch-catches/main.cpp +31 -0
  2162. mlsys/tasks/cpu-predict-which-patterns-hw-prefetch-catches/meta.json +15 -0
  2163. mlsys/tasks/cpu-predict-which-patterns-hw-prefetch-catches/ref.cpp +15 -0
  2164. mlsys/tasks/cpu-predict-which-patterns-hw-prefetch-catches/sol.hpp +18 -0
  2165. mlsys/tasks/cpu-predict-which-patterns-hw-prefetch-catches/starter.cpp +10 -0
  2166. mlsys/tasks/cpu-predict-which-patterns-hw-prefetch-catches/task.md +65 -0
  2167. mlsys/tasks/cpu-prefetch-coverage-and-accuracy/main.cpp +87 -0
  2168. mlsys/tasks/cpu-prefetch-coverage-and-accuracy/meta.json +13 -0
  2169. mlsys/tasks/cpu-prefetch-coverage-and-accuracy/ref.cpp +7 -0
  2170. mlsys/tasks/cpu-prefetch-coverage-and-accuracy/sol.hpp +23 -0
  2171. mlsys/tasks/cpu-prefetch-coverage-and-accuracy/starter.cpp +11 -0
  2172. mlsys/tasks/cpu-prefetch-coverage-and-accuracy/task.md +48 -0
  2173. mlsys/tasks/cpu-prefetch-distance-to-saturate-mlp/main.cpp +31 -0
  2174. mlsys/tasks/cpu-prefetch-distance-to-saturate-mlp/meta.json +9 -0
  2175. mlsys/tasks/cpu-prefetch-distance-to-saturate-mlp/ref.cpp +17 -0
  2176. mlsys/tasks/cpu-prefetch-distance-to-saturate-mlp/sol.hpp +28 -0
  2177. mlsys/tasks/cpu-prefetch-distance-to-saturate-mlp/starter.cpp +21 -0
  2178. mlsys/tasks/cpu-prefetch-distance-to-saturate-mlp/task.md +73 -0
  2179. mlsys/tasks/cpu-prefetch-kv-cache-reads-for-decode/main.cpp +54 -0
  2180. mlsys/tasks/cpu-prefetch-kv-cache-reads-for-decode/meta.json +15 -0
  2181. mlsys/tasks/cpu-prefetch-kv-cache-reads-for-decode/ref.cpp +26 -0
  2182. mlsys/tasks/cpu-prefetch-kv-cache-reads-for-decode/sol.hpp +42 -0
  2183. mlsys/tasks/cpu-prefetch-kv-cache-reads-for-decode/starter.cpp +17 -0
  2184. mlsys/tasks/cpu-prefetch-kv-cache-reads-for-decode/task.md +53 -0
  2185. mlsys/tasks/cpu-prefill-vs-decode-roofline-placement/check.py +34 -0
  2186. mlsys/tasks/cpu-prefill-vs-decode-roofline-placement/gen_fixtures.py +1 -0
  2187. mlsys/tasks/cpu-prefill-vs-decode-roofline-placement/meta.json +22 -0
  2188. mlsys/tasks/cpu-prefill-vs-decode-roofline-placement/solution_ref.py +14 -0
  2189. mlsys/tasks/cpu-prefill-vs-decode-roofline-placement/starter.py +3 -0
  2190. mlsys/tasks/cpu-prefill-vs-decode-roofline-placement/task.md +66 -0
  2191. mlsys/tasks/cpu-qk-t-loop-order-blocking-min-dram-bytes/main.cpp +42 -0
  2192. mlsys/tasks/cpu-qk-t-loop-order-blocking-min-dram-bytes/meta.json +2 -0
  2193. mlsys/tasks/cpu-qk-t-loop-order-blocking-min-dram-bytes/ref.cpp +22 -0
  2194. mlsys/tasks/cpu-qk-t-loop-order-blocking-min-dram-bytes/sol.hpp +28 -0
  2195. mlsys/tasks/cpu-qk-t-loop-order-blocking-min-dram-bytes/starter.cpp +18 -0
  2196. mlsys/tasks/cpu-qk-t-loop-order-blocking-min-dram-bytes/task.md +66 -0
  2197. mlsys/tasks/cpu-rank-4-traversals-by-modeled-mlp/main.cpp +55 -0
  2198. mlsys/tasks/cpu-rank-4-traversals-by-modeled-mlp/meta.json +17 -0
  2199. mlsys/tasks/cpu-rank-4-traversals-by-modeled-mlp/ref.cpp +31 -0
  2200. mlsys/tasks/cpu-rank-4-traversals-by-modeled-mlp/sol.hpp +37 -0
  2201. mlsys/tasks/cpu-rank-4-traversals-by-modeled-mlp/starter.cpp +16 -0
  2202. mlsys/tasks/cpu-rank-4-traversals-by-modeled-mlp/task.md +83 -0
  2203. mlsys/tasks/cpu-rank-5-kernels-by-roofline-attainable-perf/main.cpp +28 -0
  2204. mlsys/tasks/cpu-rank-5-kernels-by-roofline-attainable-perf/meta.json +13 -0
  2205. mlsys/tasks/cpu-rank-5-kernels-by-roofline-attainable-perf/ref.cpp +17 -0
  2206. mlsys/tasks/cpu-rank-5-kernels-by-roofline-attainable-perf/sol.hpp +19 -0
  2207. mlsys/tasks/cpu-rank-5-kernels-by-roofline-attainable-perf/starter.cpp +12 -0
  2208. mlsys/tasks/cpu-rank-5-kernels-by-roofline-attainable-perf/task.md +54 -0
  2209. mlsys/tasks/cpu-rank-ijk-ikj-jki-matmul-by-misses/main.cpp +48 -0
  2210. mlsys/tasks/cpu-rank-ijk-ikj-jki-matmul-by-misses/meta.json +22 -0
  2211. mlsys/tasks/cpu-rank-ijk-ikj-jki-matmul-by-misses/ref.cpp +69 -0
  2212. mlsys/tasks/cpu-rank-ijk-ikj-jki-matmul-by-misses/sol.hpp +40 -0
  2213. mlsys/tasks/cpu-rank-ijk-ikj-jki-matmul-by-misses/starter.cpp +15 -0
  2214. mlsys/tasks/cpu-rank-ijk-ikj-jki-matmul-by-misses/task.md +58 -0
  2215. mlsys/tasks/cpu-rank-three-kernels-by-amat-from-miss-vectors/main.cpp +20 -0
  2216. mlsys/tasks/cpu-rank-three-kernels-by-amat-from-miss-vectors/meta.json +13 -0
  2217. mlsys/tasks/cpu-rank-three-kernels-by-amat-from-miss-vectors/ref.cpp +19 -0
  2218. mlsys/tasks/cpu-rank-three-kernels-by-amat-from-miss-vectors/sol.hpp +17 -0
  2219. mlsys/tasks/cpu-rank-three-kernels-by-amat-from-miss-vectors/starter.cpp +11 -0
  2220. mlsys/tasks/cpu-rank-three-kernels-by-amat-from-miss-vectors/task.md +48 -0
  2221. mlsys/tasks/cpu-reassign-threads-to-nodes-to-min-remote-accesses/main.cpp +41 -0
  2222. mlsys/tasks/cpu-reassign-threads-to-nodes-to-min-remote-accesses/meta.json +9 -0
  2223. mlsys/tasks/cpu-reassign-threads-to-nodes-to-min-remote-accesses/ref.cpp +34 -0
  2224. mlsys/tasks/cpu-reassign-threads-to-nodes-to-min-remote-accesses/sol.hpp +24 -0
  2225. mlsys/tasks/cpu-reassign-threads-to-nodes-to-min-remote-accesses/starter.cpp +23 -0
  2226. mlsys/tasks/cpu-reassign-threads-to-nodes-to-min-remote-accesses/task.md +67 -0
  2227. mlsys/tasks/cpu-reassociate-a-reduction-to-shorten-critical-path/main.cpp +41 -0
  2228. mlsys/tasks/cpu-reassociate-a-reduction-to-shorten-critical-path/meta.json +21 -0
  2229. mlsys/tasks/cpu-reassociate-a-reduction-to-shorten-critical-path/ref.cpp +9 -0
  2230. mlsys/tasks/cpu-reassociate-a-reduction-to-shorten-critical-path/sol.hpp +29 -0
  2231. mlsys/tasks/cpu-reassociate-a-reduction-to-shorten-critical-path/starter.cpp +14 -0
  2232. mlsys/tasks/cpu-reassociate-a-reduction-to-shorten-critical-path/task.md +68 -0
  2233. mlsys/tasks/cpu-reassociate-for-parallel-sum-within-error-tol/main.cpp +34 -0
  2234. mlsys/tasks/cpu-reassociate-for-parallel-sum-within-error-tol/meta.json +18 -0
  2235. mlsys/tasks/cpu-reassociate-for-parallel-sum-within-error-tol/ref.cpp +22 -0
  2236. mlsys/tasks/cpu-reassociate-for-parallel-sum-within-error-tol/sol.hpp +28 -0
  2237. mlsys/tasks/cpu-reassociate-for-parallel-sum-within-error-tol/starter.cpp +15 -0
  2238. mlsys/tasks/cpu-reassociate-for-parallel-sum-within-error-tol/task.md +75 -0
  2239. mlsys/tasks/cpu-recursive-cache-oblivious-transpose/main.cpp +86 -0
  2240. mlsys/tasks/cpu-recursive-cache-oblivious-transpose/meta.json +13 -0
  2241. mlsys/tasks/cpu-recursive-cache-oblivious-transpose/ref.cpp +23 -0
  2242. mlsys/tasks/cpu-recursive-cache-oblivious-transpose/sol.hpp +40 -0
  2243. mlsys/tasks/cpu-recursive-cache-oblivious-transpose/starter.cpp +11 -0
  2244. mlsys/tasks/cpu-recursive-cache-oblivious-transpose/task.md +67 -0
  2245. mlsys/tasks/cpu-reduction-tree-layout-minimizing-false-sharing/main.cpp +35 -0
  2246. mlsys/tasks/cpu-reduction-tree-layout-minimizing-false-sharing/meta.json +17 -0
  2247. mlsys/tasks/cpu-reduction-tree-layout-minimizing-false-sharing/ref.cpp +12 -0
  2248. mlsys/tasks/cpu-reduction-tree-layout-minimizing-false-sharing/sol.hpp +16 -0
  2249. mlsys/tasks/cpu-reduction-tree-layout-minimizing-false-sharing/starter.cpp +8 -0
  2250. mlsys/tasks/cpu-reduction-tree-layout-minimizing-false-sharing/task.md +56 -0
  2251. mlsys/tasks/cpu-remainder-epilogue-correctness-for-non-multiple-n/main.cpp +20 -0
  2252. mlsys/tasks/cpu-remainder-epilogue-correctness-for-non-multiple-n/meta.json +13 -0
  2253. mlsys/tasks/cpu-remainder-epilogue-correctness-for-non-multiple-n/ref.cpp +16 -0
  2254. mlsys/tasks/cpu-remainder-epilogue-correctness-for-non-multiple-n/sol.hpp +10 -0
  2255. mlsys/tasks/cpu-remainder-epilogue-correctness-for-non-multiple-n/starter.cpp +16 -0
  2256. mlsys/tasks/cpu-remainder-epilogue-correctness-for-non-multiple-n/task.md +40 -0
  2257. mlsys/tasks/cpu-reorder-access-to-reduce-tlb-misses-below-gate/main.cpp +80 -0
  2258. mlsys/tasks/cpu-reorder-access-to-reduce-tlb-misses-below-gate/meta.json +22 -0
  2259. mlsys/tasks/cpu-reorder-access-to-reduce-tlb-misses-below-gate/ref.cpp +25 -0
  2260. mlsys/tasks/cpu-reorder-access-to-reduce-tlb-misses-below-gate/sol.hpp +25 -0
  2261. mlsys/tasks/cpu-reorder-access-to-reduce-tlb-misses-below-gate/starter.cpp +18 -0
  2262. mlsys/tasks/cpu-reorder-access-to-reduce-tlb-misses-below-gate/task.md +75 -0
  2263. mlsys/tasks/cpu-reorder-fields-to-minimize-size/main.cpp +7 -0
  2264. mlsys/tasks/cpu-reorder-fields-to-minimize-size/meta.json +15 -0
  2265. mlsys/tasks/cpu-reorder-fields-to-minimize-size/ref.cpp +15 -0
  2266. mlsys/tasks/cpu-reorder-fields-to-minimize-size/sol.hpp +37 -0
  2267. mlsys/tasks/cpu-reorder-fields-to-minimize-size/starter.cpp +9 -0
  2268. mlsys/tasks/cpu-reorder-fields-to-minimize-size/task.md +48 -0
  2269. mlsys/tasks/cpu-reorder-loop-indices-to-minimize-lines-fetched/main.cpp +43 -0
  2270. mlsys/tasks/cpu-reorder-loop-indices-to-minimize-lines-fetched/meta.json +13 -0
  2271. mlsys/tasks/cpu-reorder-loop-indices-to-minimize-lines-fetched/ref.cpp +16 -0
  2272. mlsys/tasks/cpu-reorder-loop-indices-to-minimize-lines-fetched/sol.hpp +24 -0
  2273. mlsys/tasks/cpu-reorder-loop-indices-to-minimize-lines-fetched/starter.cpp +10 -0
  2274. mlsys/tasks/cpu-reorder-loop-indices-to-minimize-lines-fetched/task.md +44 -0
  2275. mlsys/tasks/cpu-reuse-distance-histogram-stack-distance/main.cpp +25 -0
  2276. mlsys/tasks/cpu-reuse-distance-histogram-stack-distance/meta.json +17 -0
  2277. mlsys/tasks/cpu-reuse-distance-histogram-stack-distance/ref.cpp +29 -0
  2278. mlsys/tasks/cpu-reuse-distance-histogram-stack-distance/sol.hpp +22 -0
  2279. mlsys/tasks/cpu-reuse-distance-histogram-stack-distance/starter.cpp +10 -0
  2280. mlsys/tasks/cpu-reuse-distance-histogram-stack-distance/task.md +69 -0
  2281. mlsys/tasks/cpu-rfo-traffic-normal-vs-streaming-stores/main.cpp +24 -0
  2282. mlsys/tasks/cpu-rfo-traffic-normal-vs-streaming-stores/meta.json +9 -0
  2283. mlsys/tasks/cpu-rfo-traffic-normal-vs-streaming-stores/ref.cpp +15 -0
  2284. mlsys/tasks/cpu-rfo-traffic-normal-vs-streaming-stores/sol.hpp +30 -0
  2285. mlsys/tasks/cpu-rfo-traffic-normal-vs-streaming-stores/starter.cpp +17 -0
  2286. mlsys/tasks/cpu-rfo-traffic-normal-vs-streaming-stores/task.md +62 -0
  2287. mlsys/tasks/cpu-ridge-point-computation/main.cpp +17 -0
  2288. mlsys/tasks/cpu-ridge-point-computation/meta.json +13 -0
  2289. mlsys/tasks/cpu-ridge-point-computation/ref.cpp +5 -0
  2290. mlsys/tasks/cpu-ridge-point-computation/sol.hpp +15 -0
  2291. mlsys/tasks/cpu-ridge-point-computation/starter.cpp +7 -0
  2292. mlsys/tasks/cpu-ridge-point-computation/task.md +44 -0
  2293. mlsys/tasks/cpu-rolled-vs-unrolled-critical-path-with-accumulators/check.py +63 -0
  2294. mlsys/tasks/cpu-rolled-vs-unrolled-critical-path-with-accumulators/gen_fixtures.py +1 -0
  2295. mlsys/tasks/cpu-rolled-vs-unrolled-critical-path-with-accumulators/meta.json +27 -0
  2296. mlsys/tasks/cpu-rolled-vs-unrolled-critical-path-with-accumulators/solution_ref.py +6 -0
  2297. mlsys/tasks/cpu-rolled-vs-unrolled-critical-path-with-accumulators/starter.py +3 -0
  2298. mlsys/tasks/cpu-rolled-vs-unrolled-critical-path-with-accumulators/task.md +62 -0
  2299. mlsys/tasks/cpu-row-gather-vs-column-gather-embedding-traffic/main.cpp +15 -0
  2300. mlsys/tasks/cpu-row-gather-vs-column-gather-embedding-traffic/meta.json +15 -0
  2301. mlsys/tasks/cpu-row-gather-vs-column-gather-embedding-traffic/ref.cpp +18 -0
  2302. mlsys/tasks/cpu-row-gather-vs-column-gather-embedding-traffic/sol.hpp +31 -0
  2303. mlsys/tasks/cpu-row-gather-vs-column-gather-embedding-traffic/starter.cpp +9 -0
  2304. mlsys/tasks/cpu-row-gather-vs-column-gather-embedding-traffic/task.md +53 -0
  2305. mlsys/tasks/cpu-scatter-with-duplicate-indices-byte-exact-accumulate/check.py +22 -0
  2306. mlsys/tasks/cpu-scatter-with-duplicate-indices-byte-exact-accumulate/gen_fixtures.py +1 -0
  2307. mlsys/tasks/cpu-scatter-with-duplicate-indices-byte-exact-accumulate/meta.json +17 -0
  2308. mlsys/tasks/cpu-scatter-with-duplicate-indices-byte-exact-accumulate/solution_ref.py +5 -0
  2309. mlsys/tasks/cpu-scatter-with-duplicate-indices-byte-exact-accumulate/starter.py +8 -0
  2310. mlsys/tasks/cpu-scatter-with-duplicate-indices-byte-exact-accumulate/task.md +29 -0
  2311. mlsys/tasks/cpu-segment-the-gather-to-reuse-lines/main.cpp +69 -0
  2312. mlsys/tasks/cpu-segment-the-gather-to-reuse-lines/meta.json +17 -0
  2313. mlsys/tasks/cpu-segment-the-gather-to-reuse-lines/ref.cpp +20 -0
  2314. mlsys/tasks/cpu-segment-the-gather-to-reuse-lines/sol.hpp +22 -0
  2315. mlsys/tasks/cpu-segment-the-gather-to-reuse-lines/starter.cpp +9 -0
  2316. mlsys/tasks/cpu-segment-the-gather-to-reuse-lines/task.md +66 -0
  2317. mlsys/tasks/cpu-serial-vs-tree-reduction-critical-path/check.py +29 -0
  2318. mlsys/tasks/cpu-serial-vs-tree-reduction-critical-path/gen_fixtures.py +1 -0
  2319. mlsys/tasks/cpu-serial-vs-tree-reduction-critical-path/meta.json +22 -0
  2320. mlsys/tasks/cpu-serial-vs-tree-reduction-critical-path/solution_ref.py +29 -0
  2321. mlsys/tasks/cpu-serial-vs-tree-reduction-critical-path/starter.py +3 -0
  2322. mlsys/tasks/cpu-serial-vs-tree-reduction-critical-path/task.md +62 -0
  2323. mlsys/tasks/cpu-shard-embedding-table-across-numa-nodes/check.py +45 -0
  2324. mlsys/tasks/cpu-shard-embedding-table-across-numa-nodes/gen_fixtures.py +1 -0
  2325. mlsys/tasks/cpu-shard-embedding-table-across-numa-nodes/meta.json +22 -0
  2326. mlsys/tasks/cpu-shard-embedding-table-across-numa-nodes/solution_ref.py +11 -0
  2327. mlsys/tasks/cpu-shard-embedding-table-across-numa-nodes/starter.py +3 -0
  2328. mlsys/tasks/cpu-shard-embedding-table-across-numa-nodes/task.md +58 -0
  2329. mlsys/tasks/cpu-sharded-histogram-invalidation-budget-token-counting/main.cpp +81 -0
  2330. mlsys/tasks/cpu-sharded-histogram-invalidation-budget-token-counting/meta.json +18 -0
  2331. mlsys/tasks/cpu-sharded-histogram-invalidation-budget-token-counting/ref.cpp +6 -0
  2332. mlsys/tasks/cpu-sharded-histogram-invalidation-budget-token-counting/sol.hpp +32 -0
  2333. mlsys/tasks/cpu-sharded-histogram-invalidation-budget-token-counting/starter.cpp +6 -0
  2334. mlsys/tasks/cpu-sharded-histogram-invalidation-budget-token-counting/task.md +84 -0
  2335. mlsys/tasks/cpu-simd-lane-utilization-for-a-masked-op/main.cpp +20 -0
  2336. mlsys/tasks/cpu-simd-lane-utilization-for-a-masked-op/meta.json +13 -0
  2337. mlsys/tasks/cpu-simd-lane-utilization-for-a-masked-op/ref.cpp +15 -0
  2338. mlsys/tasks/cpu-simd-lane-utilization-for-a-masked-op/sol.hpp +22 -0
  2339. mlsys/tasks/cpu-simd-lane-utilization-for-a-masked-op/starter.cpp +10 -0
  2340. mlsys/tasks/cpu-simd-lane-utilization-for-a-masked-op/task.md +39 -0
  2341. mlsys/tasks/cpu-simd-load-line-straddle-labels/main.cpp +31 -0
  2342. mlsys/tasks/cpu-simd-load-line-straddle-labels/meta.json +22 -0
  2343. mlsys/tasks/cpu-simd-load-line-straddle-labels/ref.cpp +6 -0
  2344. mlsys/tasks/cpu-simd-load-line-straddle-labels/sol.hpp +19 -0
  2345. mlsys/tasks/cpu-simd-load-line-straddle-labels/starter.cpp +9 -0
  2346. mlsys/tasks/cpu-simd-load-line-straddle-labels/task.md +62 -0
  2347. mlsys/tasks/cpu-single-field-aos-vs-soa-line-fetches/main.cpp +62 -0
  2348. mlsys/tasks/cpu-single-field-aos-vs-soa-line-fetches/meta.json +13 -0
  2349. mlsys/tasks/cpu-single-field-aos-vs-soa-line-fetches/ref.cpp +7 -0
  2350. mlsys/tasks/cpu-single-field-aos-vs-soa-line-fetches/sol.hpp +24 -0
  2351. mlsys/tasks/cpu-single-field-aos-vs-soa-line-fetches/starter.cpp +8 -0
  2352. mlsys/tasks/cpu-single-field-aos-vs-soa-line-fetches/task.md +50 -0
  2353. mlsys/tasks/cpu-single-level-lru-cache-simulator/main.cpp +41 -0
  2354. mlsys/tasks/cpu-single-level-lru-cache-simulator/meta.json +9 -0
  2355. mlsys/tasks/cpu-single-level-lru-cache-simulator/ref.cpp +37 -0
  2356. mlsys/tasks/cpu-single-level-lru-cache-simulator/sol.hpp +27 -0
  2357. mlsys/tasks/cpu-single-level-lru-cache-simulator/starter.cpp +10 -0
  2358. mlsys/tasks/cpu-single-level-lru-cache-simulator/task.md +51 -0
  2359. mlsys/tasks/cpu-size-sliding-window-attention-to-fit-l2/main.cpp +24 -0
  2360. mlsys/tasks/cpu-size-sliding-window-attention-to-fit-l2/meta.json +15 -0
  2361. mlsys/tasks/cpu-size-sliding-window-attention-to-fit-l2/ref.cpp +15 -0
  2362. mlsys/tasks/cpu-size-sliding-window-attention-to-fit-l2/sol.hpp +28 -0
  2363. mlsys/tasks/cpu-size-sliding-window-attention-to-fit-l2/starter.cpp +17 -0
  2364. mlsys/tasks/cpu-size-sliding-window-attention-to-fit-l2/task.md +47 -0
  2365. mlsys/tasks/cpu-slab-internal-fragmentation-ratio/main.cpp +15 -0
  2366. mlsys/tasks/cpu-slab-internal-fragmentation-ratio/meta.json +13 -0
  2367. mlsys/tasks/cpu-slab-internal-fragmentation-ratio/ref.cpp +17 -0
  2368. mlsys/tasks/cpu-slab-internal-fragmentation-ratio/sol.hpp +14 -0
  2369. mlsys/tasks/cpu-slab-internal-fragmentation-ratio/starter.cpp +9 -0
  2370. mlsys/tasks/cpu-slab-internal-fragmentation-ratio/task.md +38 -0
  2371. mlsys/tasks/cpu-software-pipelined-producer-consumer-stalls/main.cpp +21 -0
  2372. mlsys/tasks/cpu-software-pipelined-producer-consumer-stalls/meta.json +22 -0
  2373. mlsys/tasks/cpu-software-pipelined-producer-consumer-stalls/ref.cpp +8 -0
  2374. mlsys/tasks/cpu-software-pipelined-producer-consumer-stalls/sol.hpp +32 -0
  2375. mlsys/tasks/cpu-software-pipelined-producer-consumer-stalls/starter.cpp +8 -0
  2376. mlsys/tasks/cpu-software-pipelined-producer-consumer-stalls/task.md +65 -0
  2377. mlsys/tasks/cpu-sort-indices-to-improve-gather-locality/main.cpp +78 -0
  2378. mlsys/tasks/cpu-sort-indices-to-improve-gather-locality/meta.json +13 -0
  2379. mlsys/tasks/cpu-sort-indices-to-improve-gather-locality/ref.cpp +20 -0
  2380. mlsys/tasks/cpu-sort-indices-to-improve-gather-locality/sol.hpp +24 -0
  2381. mlsys/tasks/cpu-sort-indices-to-improve-gather-locality/starter.cpp +10 -0
  2382. mlsys/tasks/cpu-sort-indices-to-improve-gather-locality/task.md +60 -0
  2383. mlsys/tasks/cpu-sorted-vs-unsorted-branch-mispredicts-the-classic/check.py +79 -0
  2384. mlsys/tasks/cpu-sorted-vs-unsorted-branch-mispredicts-the-classic/gen_fixtures.py +1 -0
  2385. mlsys/tasks/cpu-sorted-vs-unsorted-branch-mispredicts-the-classic/meta.json +22 -0
  2386. mlsys/tasks/cpu-sorted-vs-unsorted-branch-mispredicts-the-classic/solution_ref.py +20 -0
  2387. mlsys/tasks/cpu-sorted-vs-unsorted-branch-mispredicts-the-classic/starter.py +3 -0
  2388. mlsys/tasks/cpu-sorted-vs-unsorted-branch-mispredicts-the-classic/task.md +76 -0
  2389. mlsys/tasks/cpu-stable-vs-naive-softmax-kl-to-reference/check.py +78 -0
  2390. mlsys/tasks/cpu-stable-vs-naive-softmax-kl-to-reference/gen_fixtures.py +1 -0
  2391. mlsys/tasks/cpu-stable-vs-naive-softmax-kl-to-reference/meta.json +27 -0
  2392. mlsys/tasks/cpu-stable-vs-naive-softmax-kl-to-reference/solution_ref.py +19 -0
  2393. mlsys/tasks/cpu-stable-vs-naive-softmax-kl-to-reference/starter.py +6 -0
  2394. mlsys/tasks/cpu-stable-vs-naive-softmax-kl-to-reference/task.md +61 -0
  2395. mlsys/tasks/cpu-steady-state-mispredict-rate-for-p-biased-branch/main.cpp +61 -0
  2396. mlsys/tasks/cpu-steady-state-mispredict-rate-for-p-biased-branch/meta.json +9 -0
  2397. mlsys/tasks/cpu-steady-state-mispredict-rate-for-p-biased-branch/ref.cpp +6 -0
  2398. mlsys/tasks/cpu-steady-state-mispredict-rate-for-p-biased-branch/sol.hpp +33 -0
  2399. mlsys/tasks/cpu-steady-state-mispredict-rate-for-p-biased-branch/starter.cpp +7 -0
  2400. mlsys/tasks/cpu-steady-state-mispredict-rate-for-p-biased-branch/task.md +76 -0
  2401. mlsys/tasks/cpu-stride-arithmetic-address-line-count/main.cpp +36 -0
  2402. mlsys/tasks/cpu-stride-arithmetic-address-line-count/meta.json +17 -0
  2403. mlsys/tasks/cpu-stride-arithmetic-address-line-count/ref.cpp +31 -0
  2404. mlsys/tasks/cpu-stride-arithmetic-address-line-count/sol.hpp +24 -0
  2405. mlsys/tasks/cpu-stride-arithmetic-address-line-count/starter.cpp +19 -0
  2406. mlsys/tasks/cpu-stride-arithmetic-address-line-count/task.md +70 -0
  2407. mlsys/tasks/cpu-stride-prefetcher-detect-stride-prefetched-count/main.cpp +17 -0
  2408. mlsys/tasks/cpu-stride-prefetcher-detect-stride-prefetched-count/meta.json +13 -0
  2409. mlsys/tasks/cpu-stride-prefetcher-detect-stride-prefetched-count/ref.cpp +28 -0
  2410. mlsys/tasks/cpu-stride-prefetcher-detect-stride-prefetched-count/sol.hpp +24 -0
  2411. mlsys/tasks/cpu-stride-prefetcher-detect-stride-prefetched-count/starter.cpp +10 -0
  2412. mlsys/tasks/cpu-stride-prefetcher-detect-stride-prefetched-count/task.md +41 -0
  2413. mlsys/tasks/cpu-struct-size-and-field-offsets/check.py +57 -0
  2414. mlsys/tasks/cpu-struct-size-and-field-offsets/gen_fixtures.py +1 -0
  2415. mlsys/tasks/cpu-struct-size-and-field-offsets/meta.json +22 -0
  2416. mlsys/tasks/cpu-struct-size-and-field-offsets/solution_ref.py +31 -0
  2417. mlsys/tasks/cpu-struct-size-and-field-offsets/starter.py +3 -0
  2418. mlsys/tasks/cpu-struct-size-and-field-offsets/task.md +51 -0
  2419. mlsys/tasks/cpu-tail-masking-for-n-not-multiple-of-width/main.cpp +22 -0
  2420. mlsys/tasks/cpu-tail-masking-for-n-not-multiple-of-width/meta.json +17 -0
  2421. mlsys/tasks/cpu-tail-masking-for-n-not-multiple-of-width/ref.cpp +16 -0
  2422. mlsys/tasks/cpu-tail-masking-for-n-not-multiple-of-width/sol.hpp +15 -0
  2423. mlsys/tasks/cpu-tail-masking-for-n-not-multiple-of-width/starter.cpp +12 -0
  2424. mlsys/tasks/cpu-tail-masking-for-n-not-multiple-of-width/task.md +63 -0
  2425. mlsys/tasks/cpu-tile-ijk-to-hit-an-l2-miss-gate/main.cpp +62 -0
  2426. mlsys/tasks/cpu-tile-ijk-to-hit-an-l2-miss-gate/meta.json +15 -0
  2427. mlsys/tasks/cpu-tile-ijk-to-hit-an-l2-miss-gate/ref.cpp +23 -0
  2428. mlsys/tasks/cpu-tile-ijk-to-hit-an-l2-miss-gate/sol.hpp +25 -0
  2429. mlsys/tasks/cpu-tile-ijk-to-hit-an-l2-miss-gate/starter.cpp +9 -0
  2430. mlsys/tasks/cpu-tile-ijk-to-hit-an-l2-miss-gate/task.md +49 -0
  2431. mlsys/tasks/cpu-tile-so-page-working-set-fits-tlb-reach/main.cpp +60 -0
  2432. mlsys/tasks/cpu-tile-so-page-working-set-fits-tlb-reach/meta.json +13 -0
  2433. mlsys/tasks/cpu-tile-so-page-working-set-fits-tlb-reach/ref.cpp +13 -0
  2434. mlsys/tasks/cpu-tile-so-page-working-set-fits-tlb-reach/sol.hpp +24 -0
  2435. mlsys/tasks/cpu-tile-so-page-working-set-fits-tlb-reach/starter.cpp +10 -0
  2436. mlsys/tasks/cpu-tile-so-page-working-set-fits-tlb-reach/task.md +42 -0
  2437. mlsys/tasks/cpu-tlb-miss-count-for-a-trace/check.py +44 -0
  2438. mlsys/tasks/cpu-tlb-miss-count-for-a-trace/gen_fixtures.py +1 -0
  2439. mlsys/tasks/cpu-tlb-miss-count-for-a-trace/meta.json +22 -0
  2440. mlsys/tasks/cpu-tlb-miss-count-for-a-trace/solution_ref.py +2 -0
  2441. mlsys/tasks/cpu-tlb-miss-count-for-a-trace/starter.py +3 -0
  2442. mlsys/tasks/cpu-tlb-miss-count-for-a-trace/task.md +50 -0
  2443. mlsys/tasks/cpu-transformer-layer-tensor-residency-budget/main.cpp +52 -0
  2444. mlsys/tasks/cpu-transformer-layer-tensor-residency-budget/meta.json +13 -0
  2445. mlsys/tasks/cpu-transformer-layer-tensor-residency-budget/ref.cpp +19 -0
  2446. mlsys/tasks/cpu-transformer-layer-tensor-residency-budget/sol.hpp +28 -0
  2447. mlsys/tasks/cpu-transformer-layer-tensor-residency-budget/starter.cpp +13 -0
  2448. mlsys/tasks/cpu-transformer-layer-tensor-residency-budget/task.md +62 -0
  2449. mlsys/tasks/cpu-two-level-l1-l2-tiling-per-level-misses/main.cpp +110 -0
  2450. mlsys/tasks/cpu-two-level-l1-l2-tiling-per-level-misses/meta.json +23 -0
  2451. mlsys/tasks/cpu-two-level-l1-l2-tiling-per-level-misses/ref.cpp +47 -0
  2452. mlsys/tasks/cpu-two-level-l1-l2-tiling-per-level-misses/sol.hpp +51 -0
  2453. mlsys/tasks/cpu-two-level-l1-l2-tiling-per-level-misses/starter.cpp +15 -0
  2454. mlsys/tasks/cpu-two-level-l1-l2-tiling-per-level-misses/task.md +71 -0
  2455. mlsys/tasks/cpu-two-pass-to-one-pass-reuse-distance-shrink/main.cpp +67 -0
  2456. mlsys/tasks/cpu-two-pass-to-one-pass-reuse-distance-shrink/meta.json +18 -0
  2457. mlsys/tasks/cpu-two-pass-to-one-pass-reuse-distance-shrink/ref.cpp +13 -0
  2458. mlsys/tasks/cpu-two-pass-to-one-pass-reuse-distance-shrink/sol.hpp +23 -0
  2459. mlsys/tasks/cpu-two-pass-to-one-pass-reuse-distance-shrink/starter.cpp +19 -0
  2460. mlsys/tasks/cpu-two-pass-to-one-pass-reuse-distance-shrink/task.md +68 -0
  2461. mlsys/tasks/cpu-unroll-a-loop-by-factor-u-byte-exact/main.cpp +37 -0
  2462. mlsys/tasks/cpu-unroll-a-loop-by-factor-u-byte-exact/meta.json +9 -0
  2463. mlsys/tasks/cpu-unroll-a-loop-by-factor-u-byte-exact/ref.cpp +10 -0
  2464. mlsys/tasks/cpu-unroll-a-loop-by-factor-u-byte-exact/sol.hpp +18 -0
  2465. mlsys/tasks/cpu-unroll-a-loop-by-factor-u-byte-exact/starter.cpp +10 -0
  2466. mlsys/tasks/cpu-unroll-a-loop-by-factor-u-byte-exact/task.md +52 -0
  2467. mlsys/tasks/cpu-unroll-factor-minimizing-overhead-register-pressure/main.cpp +19 -0
  2468. mlsys/tasks/cpu-unroll-factor-minimizing-overhead-register-pressure/meta.json +15 -0
  2469. mlsys/tasks/cpu-unroll-factor-minimizing-overhead-register-pressure/ref.cpp +21 -0
  2470. mlsys/tasks/cpu-unroll-factor-minimizing-overhead-register-pressure/sol.hpp +27 -0
  2471. mlsys/tasks/cpu-unroll-factor-minimizing-overhead-register-pressure/starter.cpp +16 -0
  2472. mlsys/tasks/cpu-unroll-factor-minimizing-overhead-register-pressure/task.md +54 -0
  2473. mlsys/tasks/cpu-veb-recursive-layout-vs-bfs-layout-misses/main.cpp +47 -0
  2474. mlsys/tasks/cpu-veb-recursive-layout-vs-bfs-layout-misses/meta.json +17 -0
  2475. mlsys/tasks/cpu-veb-recursive-layout-vs-bfs-layout-misses/ref.cpp +34 -0
  2476. mlsys/tasks/cpu-veb-recursive-layout-vs-bfs-layout-misses/sol.hpp +20 -0
  2477. mlsys/tasks/cpu-veb-recursive-layout-vs-bfs-layout-misses/starter.cpp +10 -0
  2478. mlsys/tasks/cpu-veb-recursive-layout-vs-bfs-layout-misses/task.md +76 -0
  2479. mlsys/tasks/cpu-vectorized-softmax-numerically-equivalent/main.cpp +18 -0
  2480. mlsys/tasks/cpu-vectorized-softmax-numerically-equivalent/meta.json +17 -0
  2481. mlsys/tasks/cpu-vectorized-softmax-numerically-equivalent/ref.cpp +19 -0
  2482. mlsys/tasks/cpu-vectorized-softmax-numerically-equivalent/sol.hpp +18 -0
  2483. mlsys/tasks/cpu-vectorized-softmax-numerically-equivalent/starter.cpp +7 -0
  2484. mlsys/tasks/cpu-vectorized-softmax-numerically-equivalent/task.md +64 -0
  2485. mlsys/tasks/cpu-verify-tiled-matmul-equals-naive/main.cpp +22 -0
  2486. mlsys/tasks/cpu-verify-tiled-matmul-equals-naive/meta.json +13 -0
  2487. mlsys/tasks/cpu-verify-tiled-matmul-equals-naive/ref.cpp +24 -0
  2488. mlsys/tasks/cpu-verify-tiled-matmul-equals-naive/sol.hpp +12 -0
  2489. mlsys/tasks/cpu-verify-tiled-matmul-equals-naive/starter.cpp +10 -0
  2490. mlsys/tasks/cpu-verify-tiled-matmul-equals-naive/task.md +39 -0
  2491. mlsys/tasks/cpu-working-set-curve-plateau-detection/main.cpp +42 -0
  2492. mlsys/tasks/cpu-working-set-curve-plateau-detection/meta.json +13 -0
  2493. mlsys/tasks/cpu-working-set-curve-plateau-detection/ref.cpp +18 -0
  2494. mlsys/tasks/cpu-working-set-curve-plateau-detection/sol.hpp +21 -0
  2495. mlsys/tasks/cpu-working-set-curve-plateau-detection/starter.cpp +11 -0
  2496. mlsys/tasks/cpu-working-set-curve-plateau-detection/task.md +56 -0
  2497. mlsys/tasks/cpu-working-set-size-of-a-loop-window/main.cpp +21 -0
  2498. mlsys/tasks/cpu-working-set-size-of-a-loop-window/meta.json +13 -0
  2499. mlsys/tasks/cpu-working-set-size-of-a-loop-window/ref.cpp +13 -0
  2500. mlsys/tasks/cpu-working-set-size-of-a-loop-window/sol.hpp +23 -0
  2501. mlsys/tasks/cpu-working-set-size-of-a-loop-window/starter.cpp +8 -0
  2502. mlsys/tasks/cpu-working-set-size-of-a-loop-window/task.md +50 -0
  2503. mlsys/tasks/cpu-write-combining-buffer-full-vs-partial-flushes/main.cpp +27 -0
  2504. mlsys/tasks/cpu-write-combining-buffer-full-vs-partial-flushes/meta.json +19 -0
  2505. mlsys/tasks/cpu-write-combining-buffer-full-vs-partial-flushes/ref.cpp +57 -0
  2506. mlsys/tasks/cpu-write-combining-buffer-full-vs-partial-flushes/sol.hpp +20 -0
  2507. mlsys/tasks/cpu-write-combining-buffer-full-vs-partial-flushes/starter.cpp +13 -0
  2508. mlsys/tasks/cpu-write-combining-buffer-full-vs-partial-flushes/task.md +66 -0
  2509. mlsys/tasks/gpu-1-padding-for-a-conflict-free-transpose-tile/check.py +65 -0
  2510. mlsys/tasks/gpu-1-padding-for-a-conflict-free-transpose-tile/meta.json +10 -0
  2511. mlsys/tasks/gpu-1-padding-for-a-conflict-free-transpose-tile/ref.cu +25 -0
  2512. mlsys/tasks/gpu-1-padding-for-a-conflict-free-transpose-tile/starter.cu +16 -0
  2513. mlsys/tasks/gpu-1-padding-for-a-conflict-free-transpose-tile/task.md +54 -0
  2514. mlsys/tasks/gpu-1-padding-to-remove-transpose-bank-conflicts/check.py +84 -0
  2515. mlsys/tasks/gpu-1-padding-to-remove-transpose-bank-conflicts/meta.json +28 -0
  2516. mlsys/tasks/gpu-1-padding-to-remove-transpose-bank-conflicts/ref.cu +18 -0
  2517. mlsys/tasks/gpu-1-padding-to-remove-transpose-bank-conflicts/starter.cu +13 -0
  2518. mlsys/tasks/gpu-1-padding-to-remove-transpose-bank-conflicts/task.md +35 -0
  2519. mlsys/tasks/gpu-1d-launch-index-table/check.py +32 -0
  2520. mlsys/tasks/gpu-1d-launch-index-table/gen_fixtures.py +1 -0
  2521. mlsys/tasks/gpu-1d-launch-index-table/meta.json +22 -0
  2522. mlsys/tasks/gpu-1d-launch-index-table/solution_ref.py +22 -0
  2523. mlsys/tasks/gpu-1d-launch-index-table/starter.py +3 -0
  2524. mlsys/tasks/gpu-1d-launch-index-table/task.md +45 -0
  2525. mlsys/tasks/gpu-aos-vs-soa-embedding-gather-bandwidth-fraction/check.py +69 -0
  2526. mlsys/tasks/gpu-aos-vs-soa-embedding-gather-bandwidth-fraction/meta.json +18 -0
  2527. mlsys/tasks/gpu-aos-vs-soa-embedding-gather-bandwidth-fraction/ref.cu +15 -0
  2528. mlsys/tasks/gpu-aos-vs-soa-embedding-gather-bandwidth-fraction/starter.cu +10 -0
  2529. mlsys/tasks/gpu-aos-vs-soa-embedding-gather-bandwidth-fraction/task.md +56 -0
  2530. mlsys/tasks/gpu-argmax-reduction-value-index/check.py +71 -0
  2531. mlsys/tasks/gpu-argmax-reduction-value-index/meta.json +19 -0
  2532. mlsys/tasks/gpu-argmax-reduction-value-index/ref.cu +31 -0
  2533. mlsys/tasks/gpu-argmax-reduction-value-index/starter.cu +11 -0
  2534. mlsys/tasks/gpu-argmax-reduction-value-index/task.md +68 -0
  2535. mlsys/tasks/gpu-batched-attention-transpose-b-h-s-d-b-h-d-s/check.py +65 -0
  2536. mlsys/tasks/gpu-batched-attention-transpose-b-h-s-d-b-h-d-s/meta.json +10 -0
  2537. mlsys/tasks/gpu-batched-attention-transpose-b-h-s-d-b-h-d-s/ref.cu +32 -0
  2538. mlsys/tasks/gpu-batched-attention-transpose-b-h-s-d-b-h-d-s/starter.cu +7 -0
  2539. mlsys/tasks/gpu-batched-attention-transpose-b-h-s-d-b-h-d-s/task.md +79 -0
  2540. mlsys/tasks/gpu-bf16-vs-fp16-dynamic-range-classification/check.py +82 -0
  2541. mlsys/tasks/gpu-bf16-vs-fp16-dynamic-range-classification/meta.json +13 -0
  2542. mlsys/tasks/gpu-bf16-vs-fp16-dynamic-range-classification/ref.cu +13 -0
  2543. mlsys/tasks/gpu-bf16-vs-fp16-dynamic-range-classification/starter.cu +9 -0
  2544. mlsys/tasks/gpu-bf16-vs-fp16-dynamic-range-classification/task.md +57 -0
  2545. mlsys/tasks/gpu-blelloch-work-efficient-scan-up-sweep-down-sweep/check.py +62 -0
  2546. mlsys/tasks/gpu-blelloch-work-efficient-scan-up-sweep-down-sweep/meta.json +17 -0
  2547. mlsys/tasks/gpu-blelloch-work-efficient-scan-up-sweep-down-sweep/ref.cu +48 -0
  2548. mlsys/tasks/gpu-blelloch-work-efficient-scan-up-sweep-down-sweep/starter.cu +20 -0
  2549. mlsys/tasks/gpu-blelloch-work-efficient-scan-up-sweep-down-sweep/task.md +64 -0
  2550. mlsys/tasks/gpu-block-reduction-sequential-addressing-from-scratch/check.py +63 -0
  2551. mlsys/tasks/gpu-block-reduction-sequential-addressing-from-scratch/meta.json +28 -0
  2552. mlsys/tasks/gpu-block-reduction-sequential-addressing-from-scratch/ref.cu +22 -0
  2553. mlsys/tasks/gpu-block-reduction-sequential-addressing-from-scratch/starter.cu +12 -0
  2554. mlsys/tasks/gpu-block-reduction-sequential-addressing-from-scratch/task.md +68 -0
  2555. mlsys/tasks/gpu-blocked-attention-without-materializing-full-scores/check.py +75 -0
  2556. mlsys/tasks/gpu-blocked-attention-without-materializing-full-scores/meta.json +9 -0
  2557. mlsys/tasks/gpu-blocked-attention-without-materializing-full-scores/ref.cu +46 -0
  2558. mlsys/tasks/gpu-blocked-attention-without-materializing-full-scores/starter.cu +11 -0
  2559. mlsys/tasks/gpu-blocked-attention-without-materializing-full-scores/task.md +53 -0
  2560. mlsys/tasks/gpu-bound-float-atomicadd-non-determinism/check.py +100 -0
  2561. mlsys/tasks/gpu-bound-float-atomicadd-non-determinism/meta.json +16 -0
  2562. mlsys/tasks/gpu-bound-float-atomicadd-non-determinism/ref.cu +28 -0
  2563. mlsys/tasks/gpu-bound-float-atomicadd-non-determinism/starter.cu +12 -0
  2564. mlsys/tasks/gpu-bound-float-atomicadd-non-determinism/task.md +74 -0
  2565. mlsys/tasks/gpu-bound-the-spread-of-an-order-dependent-reduction/check.py +79 -0
  2566. mlsys/tasks/gpu-bound-the-spread-of-an-order-dependent-reduction/meta.json +1 -0
  2567. mlsys/tasks/gpu-bound-the-spread-of-an-order-dependent-reduction/ref.cu +23 -0
  2568. mlsys/tasks/gpu-bound-the-spread-of-an-order-dependent-reduction/starter.cu +13 -0
  2569. mlsys/tasks/gpu-bound-the-spread-of-an-order-dependent-reduction/task.md +71 -0
  2570. mlsys/tasks/gpu-branchless-causal-mask-via-predicated-select/check.py +66 -0
  2571. mlsys/tasks/gpu-branchless-causal-mask-via-predicated-select/meta.json +18 -0
  2572. mlsys/tasks/gpu-branchless-causal-mask-via-predicated-select/ref.cu +14 -0
  2573. mlsys/tasks/gpu-branchless-causal-mask-via-predicated-select/starter.cu +16 -0
  2574. mlsys/tasks/gpu-branchless-causal-mask-via-predicated-select/task.md +64 -0
  2575. mlsys/tasks/gpu-broadcast-shape-compatibility-classifier/check.py +54 -0
  2576. mlsys/tasks/gpu-broadcast-shape-compatibility-classifier/gen_fixtures.py +1 -0
  2577. mlsys/tasks/gpu-broadcast-shape-compatibility-classifier/meta.json +16 -0
  2578. mlsys/tasks/gpu-broadcast-shape-compatibility-classifier/solution_ref.py +21 -0
  2579. mlsys/tasks/gpu-broadcast-shape-compatibility-classifier/starter.py +3 -0
  2580. mlsys/tasks/gpu-broadcast-shape-compatibility-classifier/task.md +53 -0
  2581. mlsys/tasks/gpu-broadcasting-add-from-scratch-manual-index-math/check.py +65 -0
  2582. mlsys/tasks/gpu-broadcasting-add-from-scratch-manual-index-math/meta.json +18 -0
  2583. mlsys/tasks/gpu-broadcasting-add-from-scratch-manual-index-math/ref.cu +13 -0
  2584. mlsys/tasks/gpu-broadcasting-add-from-scratch-manual-index-math/starter.cu +9 -0
  2585. mlsys/tasks/gpu-broadcasting-add-from-scratch-manual-index-math/task.md +50 -0
  2586. mlsys/tasks/gpu-byte-accounting-of-an-attention-tile-through-the-hierarchy/check.py +67 -0
  2587. mlsys/tasks/gpu-byte-accounting-of-an-attention-tile-through-the-hierarchy/meta.json +11 -0
  2588. mlsys/tasks/gpu-byte-accounting-of-an-attention-tile-through-the-hierarchy/ref.cu +32 -0
  2589. mlsys/tasks/gpu-byte-accounting-of-an-attention-tile-through-the-hierarchy/starter.cu +9 -0
  2590. mlsys/tasks/gpu-byte-accounting-of-an-attention-tile-through-the-hierarchy/task.md +75 -0
  2591. mlsys/tasks/gpu-byte-exact-int4-packing-round-trip/check.py +69 -0
  2592. mlsys/tasks/gpu-byte-exact-int4-packing-round-trip/meta.json +15 -0
  2593. mlsys/tasks/gpu-byte-exact-int4-packing-round-trip/ref.cu +20 -0
  2594. mlsys/tasks/gpu-byte-exact-int4-packing-round-trip/starter.cu +8 -0
  2595. mlsys/tasks/gpu-byte-exact-int4-packing-round-trip/task.md +47 -0
  2596. mlsys/tasks/gpu-causal-masked-flash-step-predicated/check.py +77 -0
  2597. mlsys/tasks/gpu-causal-masked-flash-step-predicated/meta.json +26 -0
  2598. mlsys/tasks/gpu-causal-masked-flash-step-predicated/ref.cu +47 -0
  2599. mlsys/tasks/gpu-causal-masked-flash-step-predicated/starter.cu +17 -0
  2600. mlsys/tasks/gpu-causal-masked-flash-step-predicated/task.md +65 -0
  2601. mlsys/tasks/gpu-choose-tile-size-to-minimize-modeled-dram-traffic/check.py +97 -0
  2602. mlsys/tasks/gpu-choose-tile-size-to-minimize-modeled-dram-traffic/meta.json +20 -0
  2603. mlsys/tasks/gpu-choose-tile-size-to-minimize-modeled-dram-traffic/ref.cu +30 -0
  2604. mlsys/tasks/gpu-choose-tile-size-to-minimize-modeled-dram-traffic/starter.cu +15 -0
  2605. mlsys/tasks/gpu-choose-tile-size-to-minimize-modeled-dram-traffic/task.md +63 -0
  2606. mlsys/tasks/gpu-classify-atomics-two-pass-embarrassingly-parallel/check.py +72 -0
  2607. mlsys/tasks/gpu-classify-atomics-two-pass-embarrassingly-parallel/meta.json +22 -0
  2608. mlsys/tasks/gpu-classify-atomics-two-pass-embarrassingly-parallel/ref.cu +19 -0
  2609. mlsys/tasks/gpu-classify-atomics-two-pass-embarrassingly-parallel/starter.cu +12 -0
  2610. mlsys/tasks/gpu-classify-atomics-two-pass-embarrassingly-parallel/task.md +63 -0
  2611. mlsys/tasks/gpu-classify-conflict-free-broadcast-n-way/check.py +75 -0
  2612. mlsys/tasks/gpu-classify-conflict-free-broadcast-n-way/meta.json +20 -0
  2613. mlsys/tasks/gpu-classify-conflict-free-broadcast-n-way/ref.cu +26 -0
  2614. mlsys/tasks/gpu-classify-conflict-free-broadcast-n-way/starter.cu +12 -0
  2615. mlsys/tasks/gpu-classify-conflict-free-broadcast-n-way/task.md +69 -0
  2616. mlsys/tasks/gpu-classify-memory-bound-vs-compute-bound/check.py +62 -0
  2617. mlsys/tasks/gpu-classify-memory-bound-vs-compute-bound/meta.json +1 -0
  2618. mlsys/tasks/gpu-classify-memory-bound-vs-compute-bound/ref.cu +9 -0
  2619. mlsys/tasks/gpu-classify-memory-bound-vs-compute-bound/starter.cu +7 -0
  2620. mlsys/tasks/gpu-classify-memory-bound-vs-compute-bound/task.md +51 -0
  2621. mlsys/tasks/gpu-coalesced-kv-cache-read-layout-design/check.py +66 -0
  2622. mlsys/tasks/gpu-coalesced-kv-cache-read-layout-design/meta.json +18 -0
  2623. mlsys/tasks/gpu-coalesced-kv-cache-read-layout-design/ref.cu +20 -0
  2624. mlsys/tasks/gpu-coalesced-kv-cache-read-layout-design/starter.cu +17 -0
  2625. mlsys/tasks/gpu-coalesced-kv-cache-read-layout-design/task.md +76 -0
  2626. mlsys/tasks/gpu-coalesced-vs-strided-access/check.py +25 -0
  2627. mlsys/tasks/gpu-coalesced-vs-strided-access/gen_fixtures.py +1 -0
  2628. mlsys/tasks/gpu-coalesced-vs-strided-access/meta.json +22 -0
  2629. mlsys/tasks/gpu-coalesced-vs-strided-access/solution_ref.py +11 -0
  2630. mlsys/tasks/gpu-coalesced-vs-strided-access/starter.py +2 -0
  2631. mlsys/tasks/gpu-coalesced-vs-strided-access/task.md +54 -0
  2632. mlsys/tasks/gpu-compare-fp32-vs-tf32-vs-bf16-matmul-accuracy/check.py +86 -0
  2633. mlsys/tasks/gpu-compare-fp32-vs-tf32-vs-bf16-matmul-accuracy/meta.json +19 -0
  2634. mlsys/tasks/gpu-compare-fp32-vs-tf32-vs-bf16-matmul-accuracy/ref.cu +36 -0
  2635. mlsys/tasks/gpu-compare-fp32-vs-tf32-vs-bf16-matmul-accuracy/starter.cu +14 -0
  2636. mlsys/tasks/gpu-compare-fp32-vs-tf32-vs-bf16-matmul-accuracy/task.md +71 -0
  2637. mlsys/tasks/gpu-compute-arithmetic-intensity-of-an-op/check.py +27 -0
  2638. mlsys/tasks/gpu-compute-arithmetic-intensity-of-an-op/gen_fixtures.py +1 -0
  2639. mlsys/tasks/gpu-compute-arithmetic-intensity-of-an-op/meta.json +22 -0
  2640. mlsys/tasks/gpu-compute-arithmetic-intensity-of-an-op/solution_ref.py +8 -0
  2641. mlsys/tasks/gpu-compute-arithmetic-intensity-of-an-op/starter.py +3 -0
  2642. mlsys/tasks/gpu-compute-arithmetic-intensity-of-an-op/task.md +46 -0
  2643. mlsys/tasks/gpu-compute-shared-memory-bank-conflict-degree/check.py +83 -0
  2644. mlsys/tasks/gpu-compute-shared-memory-bank-conflict-degree/meta.json +18 -0
  2645. mlsys/tasks/gpu-compute-shared-memory-bank-conflict-degree/ref.cu +15 -0
  2646. mlsys/tasks/gpu-compute-shared-memory-bank-conflict-degree/starter.cu +11 -0
  2647. mlsys/tasks/gpu-compute-shared-memory-bank-conflict-degree/task.md +53 -0
  2648. mlsys/tasks/gpu-compute-theoretical-occupancy/check.py +62 -0
  2649. mlsys/tasks/gpu-compute-theoretical-occupancy/meta.json +10 -0
  2650. mlsys/tasks/gpu-compute-theoretical-occupancy/solution_ref.py +35 -0
  2651. mlsys/tasks/gpu-compute-theoretical-occupancy/starter.py +11 -0
  2652. mlsys/tasks/gpu-compute-theoretical-occupancy/task.md +95 -0
  2653. mlsys/tasks/gpu-compute-wave-quantization-tail-effect/check.py +77 -0
  2654. mlsys/tasks/gpu-compute-wave-quantization-tail-effect/meta.json +15 -0
  2655. mlsys/tasks/gpu-compute-wave-quantization-tail-effect/ref.cu +11 -0
  2656. mlsys/tasks/gpu-compute-wave-quantization-tail-effect/starter.cu +5 -0
  2657. mlsys/tasks/gpu-compute-wave-quantization-tail-effect/task.md +63 -0
  2658. mlsys/tasks/gpu-conflict-free-double-buffered-gemm-tile/check.py +108 -0
  2659. mlsys/tasks/gpu-conflict-free-double-buffered-gemm-tile/meta.json +29 -0
  2660. mlsys/tasks/gpu-conflict-free-double-buffered-gemm-tile/ref.cu +50 -0
  2661. mlsys/tasks/gpu-conflict-free-double-buffered-gemm-tile/starter.cu +20 -0
  2662. mlsys/tasks/gpu-conflict-free-double-buffered-gemm-tile/task.md +84 -0
  2663. mlsys/tasks/gpu-conflict-free-shared-staging-for-a-gemm-tile/check.py +90 -0
  2664. mlsys/tasks/gpu-conflict-free-shared-staging-for-a-gemm-tile/meta.json +1 -0
  2665. mlsys/tasks/gpu-conflict-free-shared-staging-for-a-gemm-tile/ref.cu +27 -0
  2666. mlsys/tasks/gpu-conflict-free-shared-staging-for-a-gemm-tile/starter.cu +22 -0
  2667. mlsys/tasks/gpu-conflict-free-shared-staging-for-a-gemm-tile/task.md +67 -0
  2668. mlsys/tasks/gpu-conflict-free-swizzle-index-function/check.py +64 -0
  2669. mlsys/tasks/gpu-conflict-free-swizzle-index-function/meta.json +16 -0
  2670. mlsys/tasks/gpu-conflict-free-swizzle-index-function/ref.cu +21 -0
  2671. mlsys/tasks/gpu-conflict-free-swizzle-index-function/starter.cu +11 -0
  2672. mlsys/tasks/gpu-conflict-free-swizzle-index-function/task.md +71 -0
  2673. mlsys/tasks/gpu-count-32-128-byte-transactions-for-a-warp-access/check.py +42 -0
  2674. mlsys/tasks/gpu-count-32-128-byte-transactions-for-a-warp-access/gen_fixtures.py +1 -0
  2675. mlsys/tasks/gpu-count-32-128-byte-transactions-for-a-warp-access/meta.json +16 -0
  2676. mlsys/tasks/gpu-count-32-128-byte-transactions-for-a-warp-access/solution_ref.py +12 -0
  2677. mlsys/tasks/gpu-count-32-128-byte-transactions-for-a-warp-access/starter.py +3 -0
  2678. mlsys/tasks/gpu-count-32-128-byte-transactions-for-a-warp-access/task.md +39 -0
  2679. mlsys/tasks/gpu-count-adds-hillis-steele-vs-blelloch/check.py +73 -0
  2680. mlsys/tasks/gpu-count-adds-hillis-steele-vs-blelloch/meta.json +19 -0
  2681. mlsys/tasks/gpu-count-adds-hillis-steele-vs-blelloch/ref.cu +73 -0
  2682. mlsys/tasks/gpu-count-adds-hillis-steele-vs-blelloch/starter.cu +18 -0
  2683. mlsys/tasks/gpu-count-adds-hillis-steele-vs-blelloch/task.md +76 -0
  2684. mlsys/tasks/gpu-count-global-round-trips-saved-by-fusion/check.py +65 -0
  2685. mlsys/tasks/gpu-count-global-round-trips-saved-by-fusion/meta.json +18 -0
  2686. mlsys/tasks/gpu-count-global-round-trips-saved-by-fusion/ref.cu +11 -0
  2687. mlsys/tasks/gpu-count-global-round-trips-saved-by-fusion/starter.cu +8 -0
  2688. mlsys/tasks/gpu-count-global-round-trips-saved-by-fusion/task.md +53 -0
  2689. mlsys/tasks/gpu-count-syncs-active-threads-per-step-1024-thread-reduce/check.py +79 -0
  2690. mlsys/tasks/gpu-count-syncs-active-threads-per-step-1024-thread-reduce/meta.json +16 -0
  2691. mlsys/tasks/gpu-count-syncs-active-threads-per-step-1024-thread-reduce/ref.cu +20 -0
  2692. mlsys/tasks/gpu-count-syncs-active-threads-per-step-1024-thread-reduce/starter.cu +12 -0
  2693. mlsys/tasks/gpu-count-syncs-active-threads-per-step-1024-thread-reduce/task.md +77 -0
  2694. mlsys/tasks/gpu-counter-based-philox-style-rng-from-scratch/check.py +73 -0
  2695. mlsys/tasks/gpu-counter-based-philox-style-rng-from-scratch/meta.json +15 -0
  2696. mlsys/tasks/gpu-counter-based-philox-style-rng-from-scratch/ref.cu +20 -0
  2697. mlsys/tasks/gpu-counter-based-philox-style-rng-from-scratch/starter.cu +9 -0
  2698. mlsys/tasks/gpu-counter-based-philox-style-rng-from-scratch/task.md +48 -0
  2699. mlsys/tasks/gpu-cut-registers-to-lift-occupancy-past-a-target/check.py +105 -0
  2700. mlsys/tasks/gpu-cut-registers-to-lift-occupancy-past-a-target/meta.json +19 -0
  2701. mlsys/tasks/gpu-cut-registers-to-lift-occupancy-past-a-target/ref.cu +15 -0
  2702. mlsys/tasks/gpu-cut-registers-to-lift-occupancy-past-a-target/starter.cu +19 -0
  2703. mlsys/tasks/gpu-cut-registers-to-lift-occupancy-past-a-target/task.md +66 -0
  2704. mlsys/tasks/gpu-decide-the-fusion-boundary-when-not-to-fuse/check.py +96 -0
  2705. mlsys/tasks/gpu-decide-the-fusion-boundary-when-not-to-fuse/meta.json +1 -0
  2706. mlsys/tasks/gpu-decide-the-fusion-boundary-when-not-to-fuse/ref.cu +19 -0
  2707. mlsys/tasks/gpu-decide-the-fusion-boundary-when-not-to-fuse/starter.cu +17 -0
  2708. mlsys/tasks/gpu-decide-the-fusion-boundary-when-not-to-fuse/task.md +70 -0
  2709. mlsys/tasks/gpu-dequant-fused-kernel-load-int8-dequant-in-register-accumulate/check.py +70 -0
  2710. mlsys/tasks/gpu-dequant-fused-kernel-load-int8-dequant-in-register-accumulate/meta.json +11 -0
  2711. mlsys/tasks/gpu-dequant-fused-kernel-load-int8-dequant-in-register-accumulate/ref.cu +28 -0
  2712. mlsys/tasks/gpu-dequant-fused-kernel-load-int8-dequant-in-register-accumulate/starter.cu +9 -0
  2713. mlsys/tasks/gpu-dequant-fused-kernel-load-int8-dequant-in-register-accumulate/task.md +76 -0
  2714. mlsys/tasks/gpu-derive-flash-tile-sizes-from-the-sram-budget/check.py +66 -0
  2715. mlsys/tasks/gpu-derive-flash-tile-sizes-from-the-sram-budget/meta.json +13 -0
  2716. mlsys/tasks/gpu-derive-flash-tile-sizes-from-the-sram-budget/ref.cu +18 -0
  2717. mlsys/tasks/gpu-derive-flash-tile-sizes-from-the-sram-budget/starter.cu +9 -0
  2718. mlsys/tasks/gpu-derive-flash-tile-sizes-from-the-sram-budget/task.md +56 -0
  2719. mlsys/tasks/gpu-derive-pipeline-stage-count-to-hide-latency/check.py +66 -0
  2720. mlsys/tasks/gpu-derive-pipeline-stage-count-to-hide-latency/meta.json +15 -0
  2721. mlsys/tasks/gpu-derive-pipeline-stage-count-to-hide-latency/ref.cu +9 -0
  2722. mlsys/tasks/gpu-derive-pipeline-stage-count-to-hide-latency/starter.cu +6 -0
  2723. mlsys/tasks/gpu-derive-pipeline-stage-count-to-hide-latency/task.md +46 -0
  2724. mlsys/tasks/gpu-derive-the-rescale-factor-when-the-max-updates/check.py +64 -0
  2725. mlsys/tasks/gpu-derive-the-rescale-factor-when-the-max-updates/meta.json +18 -0
  2726. mlsys/tasks/gpu-derive-the-rescale-factor-when-the-max-updates/ref.cu +17 -0
  2727. mlsys/tasks/gpu-derive-the-rescale-factor-when-the-max-updates/starter.cu +12 -0
  2728. mlsys/tasks/gpu-derive-the-rescale-factor-when-the-max-updates/task.md +67 -0
  2729. mlsys/tasks/gpu-deterministic-dropout-under-backward-recompute/check.py +86 -0
  2730. mlsys/tasks/gpu-deterministic-dropout-under-backward-recompute/meta.json +15 -0
  2731. mlsys/tasks/gpu-deterministic-dropout-under-backward-recompute/ref.cu +26 -0
  2732. mlsys/tasks/gpu-deterministic-dropout-under-backward-recompute/starter.cu +13 -0
  2733. mlsys/tasks/gpu-deterministic-dropout-under-backward-recompute/task.md +54 -0
  2734. mlsys/tasks/gpu-diagnose-and-eliminate-a-register-spill/check.py +65 -0
  2735. mlsys/tasks/gpu-diagnose-and-eliminate-a-register-spill/meta.json +16 -0
  2736. mlsys/tasks/gpu-diagnose-and-eliminate-a-register-spill/ref.cu +17 -0
  2737. mlsys/tasks/gpu-diagnose-and-eliminate-a-register-spill/starter.cu +20 -0
  2738. mlsys/tasks/gpu-diagnose-and-eliminate-a-register-spill/task.md +62 -0
  2739. mlsys/tasks/gpu-double-buffered-tiled-loop-numpy-model/check.py +97 -0
  2740. mlsys/tasks/gpu-double-buffered-tiled-loop-numpy-model/meta.json +1 -0
  2741. mlsys/tasks/gpu-double-buffered-tiled-loop-numpy-model/ref.cu +35 -0
  2742. mlsys/tasks/gpu-double-buffered-tiled-loop-numpy-model/starter.cu +31 -0
  2743. mlsys/tasks/gpu-double-buffered-tiled-loop-numpy-model/task.md +70 -0
  2744. mlsys/tasks/gpu-dram-bytes-tiled-vs-untiled-matmul/check.py +107 -0
  2745. mlsys/tasks/gpu-dram-bytes-tiled-vs-untiled-matmul/meta.json +18 -0
  2746. mlsys/tasks/gpu-dram-bytes-tiled-vs-untiled-matmul/ref.cu +46 -0
  2747. mlsys/tasks/gpu-dram-bytes-tiled-vs-untiled-matmul/starter.cu +30 -0
  2748. mlsys/tasks/gpu-dram-bytes-tiled-vs-untiled-matmul/task.md +75 -0
  2749. mlsys/tasks/gpu-evolve-naive-reduction-to-conflict-free-first-add-on-load-shuffle-tail/check.py +62 -0
  2750. mlsys/tasks/gpu-evolve-naive-reduction-to-conflict-free-first-add-on-load-shuffle-tail/meta.json +20 -0
  2751. mlsys/tasks/gpu-evolve-naive-reduction-to-conflict-free-first-add-on-load-shuffle-tail/ref.cu +36 -0
  2752. mlsys/tasks/gpu-evolve-naive-reduction-to-conflict-free-first-add-on-load-shuffle-tail/starter.cu +25 -0
  2753. mlsys/tasks/gpu-evolve-naive-reduction-to-conflict-free-first-add-on-load-shuffle-tail/task.md +70 -0
  2754. mlsys/tasks/gpu-ex-cuda-coalesced-scale/check.py +62 -0
  2755. mlsys/tasks/gpu-ex-cuda-coalesced-scale/meta.json +1 -0
  2756. mlsys/tasks/gpu-ex-cuda-coalesced-scale/ref.cu +10 -0
  2757. mlsys/tasks/gpu-ex-cuda-coalesced-scale/starter.cu +7 -0
  2758. mlsys/tasks/gpu-ex-cuda-coalesced-scale/task.md +55 -0
  2759. mlsys/tasks/gpu-find-the-ridge-point-of-a-device/check.py +66 -0
  2760. mlsys/tasks/gpu-find-the-ridge-point-of-a-device/meta.json +15 -0
  2761. mlsys/tasks/gpu-find-the-ridge-point-of-a-device/ref.cu +7 -0
  2762. mlsys/tasks/gpu-find-the-ridge-point-of-a-device/starter.cu +5 -0
  2763. mlsys/tasks/gpu-find-the-ridge-point-of-a-device/task.md +40 -0
  2764. mlsys/tasks/gpu-fix-a-flash-kernel-that-mis-merges-block-statistics/check.py +81 -0
  2765. mlsys/tasks/gpu-fix-a-flash-kernel-that-mis-merges-block-statistics/meta.json +23 -0
  2766. mlsys/tasks/gpu-fix-a-flash-kernel-that-mis-merges-block-statistics/ref.cu +63 -0
  2767. mlsys/tasks/gpu-fix-a-flash-kernel-that-mis-merges-block-statistics/starter.cu +62 -0
  2768. mlsys/tasks/gpu-fix-a-flash-kernel-that-mis-merges-block-statistics/task.md +62 -0
  2769. mlsys/tasks/gpu-fix-a-non-atomic-read-modify-write-race/check.py +58 -0
  2770. mlsys/tasks/gpu-fix-a-non-atomic-read-modify-write-race/meta.json +23 -0
  2771. mlsys/tasks/gpu-fix-a-non-atomic-read-modify-write-race/ref.cu +23 -0
  2772. mlsys/tasks/gpu-fix-a-non-atomic-read-modify-write-race/starter.cu +29 -0
  2773. mlsys/tasks/gpu-fix-a-non-atomic-read-modify-write-race/task.md +60 -0
  2774. mlsys/tasks/gpu-fix-a-pipeline-missing-the-final-drain/check.py +60 -0
  2775. mlsys/tasks/gpu-fix-a-pipeline-missing-the-final-drain/meta.json +13 -0
  2776. mlsys/tasks/gpu-fix-a-pipeline-missing-the-final-drain/ref.cu +21 -0
  2777. mlsys/tasks/gpu-fix-a-pipeline-missing-the-final-drain/starter.cu +22 -0
  2778. mlsys/tasks/gpu-fix-a-pipeline-missing-the-final-drain/task.md +54 -0
  2779. mlsys/tasks/gpu-fix-a-reduction-with-2-way-then-4-way-conflicts/check.py +64 -0
  2780. mlsys/tasks/gpu-fix-a-reduction-with-2-way-then-4-way-conflicts/meta.json +18 -0
  2781. mlsys/tasks/gpu-fix-a-reduction-with-2-way-then-4-way-conflicts/ref.cu +21 -0
  2782. mlsys/tasks/gpu-fix-a-reduction-with-2-way-then-4-way-conflicts/starter.cu +24 -0
  2783. mlsys/tasks/gpu-fix-a-reduction-with-2-way-then-4-way-conflicts/task.md +46 -0
  2784. mlsys/tasks/gpu-fix-a-reduction-with-a-missing-syncthreads/check.py +65 -0
  2785. mlsys/tasks/gpu-fix-a-reduction-with-a-missing-syncthreads/meta.json +9 -0
  2786. mlsys/tasks/gpu-fix-a-reduction-with-a-missing-syncthreads/ref.cu +23 -0
  2787. mlsys/tasks/gpu-fix-a-reduction-with-a-missing-syncthreads/starter.cu +23 -0
  2788. mlsys/tasks/gpu-fix-a-reduction-with-a-missing-syncthreads/task.md +78 -0
  2789. mlsys/tasks/gpu-fix-a-transpose-that-writes-uncoalesced/check.py +61 -0
  2790. mlsys/tasks/gpu-fix-a-transpose-that-writes-uncoalesced/meta.json +16 -0
  2791. mlsys/tasks/gpu-fix-a-transpose-that-writes-uncoalesced/ref.cu +19 -0
  2792. mlsys/tasks/gpu-fix-a-transpose-that-writes-uncoalesced/starter.cu +13 -0
  2793. mlsys/tasks/gpu-fix-a-transpose-that-writes-uncoalesced/task.md +63 -0
  2794. mlsys/tasks/gpu-fix-a-triton-kernel-with-a-wrong-tail-mask/check.py +73 -0
  2795. mlsys/tasks/gpu-fix-a-triton-kernel-with-a-wrong-tail-mask/meta.json +1 -0
  2796. mlsys/tasks/gpu-fix-a-triton-kernel-with-a-wrong-tail-mask/ref.cu +11 -0
  2797. mlsys/tasks/gpu-fix-a-triton-kernel-with-a-wrong-tail-mask/starter.cu +14 -0
  2798. mlsys/tasks/gpu-fix-a-triton-kernel-with-a-wrong-tail-mask/task.md +52 -0
  2799. mlsys/tasks/gpu-fix-boundary-handling-for-non-multiple-of-tile-dims/check.py +76 -0
  2800. mlsys/tasks/gpu-fix-boundary-handling-for-non-multiple-of-tile-dims/meta.json +23 -0
  2801. mlsys/tasks/gpu-fix-boundary-handling-for-non-multiple-of-tile-dims/ref.cu +56 -0
  2802. mlsys/tasks/gpu-fix-boundary-handling-for-non-multiple-of-tile-dims/starter.cu +37 -0
  2803. mlsys/tasks/gpu-fix-boundary-handling-for-non-multiple-of-tile-dims/task.md +59 -0
  2804. mlsys/tasks/gpu-fix-catastrophic-cancellation-in-variance/check.py +64 -0
  2805. mlsys/tasks/gpu-fix-catastrophic-cancellation-in-variance/meta.json +15 -0
  2806. mlsys/tasks/gpu-fix-catastrophic-cancellation-in-variance/ref.cu +31 -0
  2807. mlsys/tasks/gpu-fix-catastrophic-cancellation-in-variance/starter.cu +27 -0
  2808. mlsys/tasks/gpu-fix-catastrophic-cancellation-in-variance/task.md +49 -0
  2809. mlsys/tasks/gpu-fix-grid-stride-loop-that-drops-the-tail/check.py +61 -0
  2810. mlsys/tasks/gpu-fix-grid-stride-loop-that-drops-the-tail/meta.json +17 -0
  2811. mlsys/tasks/gpu-fix-grid-stride-loop-that-drops-the-tail/ref.cu +12 -0
  2812. mlsys/tasks/gpu-fix-grid-stride-loop-that-drops-the-tail/starter.cu +10 -0
  2813. mlsys/tasks/gpu-fix-grid-stride-loop-that-drops-the-tail/task.md +55 -0
  2814. mlsys/tasks/gpu-fix-kernel-relying-on-removed-reconvergence-guarantee/check.py +72 -0
  2815. mlsys/tasks/gpu-fix-kernel-relying-on-removed-reconvergence-guarantee/meta.json +9 -0
  2816. mlsys/tasks/gpu-fix-kernel-relying-on-removed-reconvergence-guarantee/ref.cu +17 -0
  2817. mlsys/tasks/gpu-fix-kernel-relying-on-removed-reconvergence-guarantee/starter.cu +21 -0
  2818. mlsys/tasks/gpu-fix-kernel-relying-on-removed-reconvergence-guarantee/task.md +62 -0
  2819. mlsys/tasks/gpu-fix-online-softmax-that-forgets-to-rescale-the-running-sum/check.py +64 -0
  2820. mlsys/tasks/gpu-fix-online-softmax-that-forgets-to-rescale-the-running-sum/meta.json +17 -0
  2821. mlsys/tasks/gpu-fix-online-softmax-that-forgets-to-rescale-the-running-sum/ref.cu +29 -0
  2822. mlsys/tasks/gpu-fix-online-softmax-that-forgets-to-rescale-the-running-sum/starter.cu +30 -0
  2823. mlsys/tasks/gpu-fix-online-softmax-that-forgets-to-rescale-the-running-sum/task.md +64 -0
  2824. mlsys/tasks/gpu-fix-over-coarsening-that-spills-registers/check.py +115 -0
  2825. mlsys/tasks/gpu-fix-over-coarsening-that-spills-registers/meta.json +1 -0
  2826. mlsys/tasks/gpu-fix-over-coarsening-that-spills-registers/ref.cu +11 -0
  2827. mlsys/tasks/gpu-fix-over-coarsening-that-spills-registers/starter.cu +35 -0
  2828. mlsys/tasks/gpu-fix-over-coarsening-that-spills-registers/task.md +65 -0
  2829. mlsys/tasks/gpu-fix-per-thread-stride-array-width/check.py +64 -0
  2830. mlsys/tasks/gpu-fix-per-thread-stride-array-width/meta.json +19 -0
  2831. mlsys/tasks/gpu-fix-per-thread-stride-array-width/ref.cu +9 -0
  2832. mlsys/tasks/gpu-fix-per-thread-stride-array-width/starter.cu +17 -0
  2833. mlsys/tasks/gpu-fix-per-thread-stride-array-width/task.md +52 -0
  2834. mlsys/tasks/gpu-fix-rng-correlated-across-threads/check.py +61 -0
  2835. mlsys/tasks/gpu-fix-rng-correlated-across-threads/meta.json +13 -0
  2836. mlsys/tasks/gpu-fix-rng-correlated-across-threads/ref.cu +13 -0
  2837. mlsys/tasks/gpu-fix-rng-correlated-across-threads/starter.cu +15 -0
  2838. mlsys/tasks/gpu-fix-rng-correlated-across-threads/task.md +58 -0
  2839. mlsys/tasks/gpu-fix-vectorized-kernel-oob-on-non-multiple-of-4-tail/check.py +64 -0
  2840. mlsys/tasks/gpu-fix-vectorized-kernel-oob-on-non-multiple-of-4-tail/meta.json +1 -0
  2841. mlsys/tasks/gpu-fix-vectorized-kernel-oob-on-non-multiple-of-4-tail/ref.cu +8 -0
  2842. mlsys/tasks/gpu-fix-vectorized-kernel-oob-on-non-multiple-of-4-tail/starter.cu +12 -0
  2843. mlsys/tasks/gpu-fix-vectorized-kernel-oob-on-non-multiple-of-4-tail/task.md +51 -0
  2844. mlsys/tasks/gpu-fixed-tree-reduction-vs-atomic-reduction-reproducibility/check.py +109 -0
  2845. mlsys/tasks/gpu-fixed-tree-reduction-vs-atomic-reduction-reproducibility/meta.json +15 -0
  2846. mlsys/tasks/gpu-fixed-tree-reduction-vs-atomic-reduction-reproducibility/ref.cu +38 -0
  2847. mlsys/tasks/gpu-fixed-tree-reduction-vs-atomic-reduction-reproducibility/starter.cu +17 -0
  2848. mlsys/tasks/gpu-fixed-tree-reduction-vs-atomic-reduction-reproducibility/task.md +57 -0
  2849. mlsys/tasks/gpu-float4-vectorized-copy-in-a-load-counting-model/check.py +69 -0
  2850. mlsys/tasks/gpu-float4-vectorized-copy-in-a-load-counting-model/meta.json +1 -0
  2851. mlsys/tasks/gpu-float4-vectorized-copy-in-a-load-counting-model/ref.cu +29 -0
  2852. mlsys/tasks/gpu-float4-vectorized-copy-in-a-load-counting-model/starter.cu +16 -0
  2853. mlsys/tasks/gpu-float4-vectorized-copy-in-a-load-counting-model/task.md +57 -0
  2854. mlsys/tasks/gpu-footprint-compare-fp16-vs-int8-vs-int4-weights/check.py +56 -0
  2855. mlsys/tasks/gpu-footprint-compare-fp16-vs-int8-vs-int4-weights/gen_fixtures.py +1 -0
  2856. mlsys/tasks/gpu-footprint-compare-fp16-vs-int8-vs-int4-weights/meta.json +27 -0
  2857. mlsys/tasks/gpu-footprint-compare-fp16-vs-int8-vs-int4-weights/solution_ref.py +39 -0
  2858. mlsys/tasks/gpu-footprint-compare-fp16-vs-int8-vs-int4-weights/starter.py +11 -0
  2859. mlsys/tasks/gpu-footprint-compare-fp16-vs-int8-vs-int4-weights/task.md +94 -0
  2860. mlsys/tasks/gpu-fp16-accumulation-overflow-demonstration/check.py +71 -0
  2861. mlsys/tasks/gpu-fp16-accumulation-overflow-demonstration/meta.json +16 -0
  2862. mlsys/tasks/gpu-fp16-accumulation-overflow-demonstration/ref.cu +20 -0
  2863. mlsys/tasks/gpu-fp16-accumulation-overflow-demonstration/starter.cu +7 -0
  2864. mlsys/tasks/gpu-fp16-accumulation-overflow-demonstration/task.md +51 -0
  2865. mlsys/tasks/gpu-fuse-bias-gelu-into-a-matmul-epilogue/check.py +76 -0
  2866. mlsys/tasks/gpu-fuse-bias-gelu-into-a-matmul-epilogue/meta.json +11 -0
  2867. mlsys/tasks/gpu-fuse-bias-gelu-into-a-matmul-epilogue/ref.cu +28 -0
  2868. mlsys/tasks/gpu-fuse-bias-gelu-into-a-matmul-epilogue/starter.cu +9 -0
  2869. mlsys/tasks/gpu-fuse-bias-gelu-into-a-matmul-epilogue/task.md +68 -0
  2870. mlsys/tasks/gpu-fuse-elementwise-chain-add-mul-relu/check.py +67 -0
  2871. mlsys/tasks/gpu-fuse-elementwise-chain-add-mul-relu/meta.json +2 -0
  2872. mlsys/tasks/gpu-fuse-elementwise-chain-add-mul-relu/ref.cu +12 -0
  2873. mlsys/tasks/gpu-fuse-elementwise-chain-add-mul-relu/starter.cu +10 -0
  2874. mlsys/tasks/gpu-fuse-elementwise-chain-add-mul-relu/task.md +73 -0
  2875. mlsys/tasks/gpu-fuse-layernorm-residual-add/check.py +127 -0
  2876. mlsys/tasks/gpu-fuse-layernorm-residual-add/meta.json +29 -0
  2877. mlsys/tasks/gpu-fuse-layernorm-residual-add/ref.cu +28 -0
  2878. mlsys/tasks/gpu-fuse-layernorm-residual-add/starter.cu +14 -0
  2879. mlsys/tasks/gpu-fuse-layernorm-residual-add/task.md +72 -0
  2880. mlsys/tasks/gpu-fused-dropout-add-layernorm-training-block/check.py +83 -0
  2881. mlsys/tasks/gpu-fused-dropout-add-layernorm-training-block/meta.json +18 -0
  2882. mlsys/tasks/gpu-fused-dropout-add-layernorm-training-block/ref.cu +61 -0
  2883. mlsys/tasks/gpu-fused-dropout-add-layernorm-training-block/starter.cu +21 -0
  2884. mlsys/tasks/gpu-fused-dropout-add-layernorm-training-block/task.md +69 -0
  2885. mlsys/tasks/gpu-fused-gelu-silu-pointwise-from-scratch/check.py +70 -0
  2886. mlsys/tasks/gpu-fused-gelu-silu-pointwise-from-scratch/meta.json +1 -0
  2887. mlsys/tasks/gpu-fused-gelu-silu-pointwise-from-scratch/ref.cu +21 -0
  2888. mlsys/tasks/gpu-fused-gelu-silu-pointwise-from-scratch/starter.cu +13 -0
  2889. mlsys/tasks/gpu-fused-gelu-silu-pointwise-from-scratch/task.md +55 -0
  2890. mlsys/tasks/gpu-global-loads-reduced-by-register-blocking/check.py +62 -0
  2891. mlsys/tasks/gpu-global-loads-reduced-by-register-blocking/meta.json +13 -0
  2892. mlsys/tasks/gpu-global-loads-reduced-by-register-blocking/ref.cu +15 -0
  2893. mlsys/tasks/gpu-global-loads-reduced-by-register-blocking/starter.cu +10 -0
  2894. mlsys/tasks/gpu-global-loads-reduced-by-register-blocking/task.md +57 -0
  2895. mlsys/tasks/gpu-grid-stride-loop-decoupling-grid-size-from-n/check.py +69 -0
  2896. mlsys/tasks/gpu-grid-stride-loop-decoupling-grid-size-from-n/meta.json +1 -0
  2897. mlsys/tasks/gpu-grid-stride-loop-decoupling-grid-size-from-n/ref.cu +15 -0
  2898. mlsys/tasks/gpu-grid-stride-loop-decoupling-grid-size-from-n/starter.cu +13 -0
  2899. mlsys/tasks/gpu-grid-stride-loop-decoupling-grid-size-from-n/task.md +53 -0
  2900. mlsys/tasks/gpu-group-wise-quant-scale-handling/check.py +68 -0
  2901. mlsys/tasks/gpu-group-wise-quant-scale-handling/meta.json +15 -0
  2902. mlsys/tasks/gpu-group-wise-quant-scale-handling/ref.cu +10 -0
  2903. mlsys/tasks/gpu-group-wise-quant-scale-handling/starter.cu +7 -0
  2904. mlsys/tasks/gpu-group-wise-quant-scale-handling/task.md +45 -0
  2905. mlsys/tasks/gpu-half2-packed-feed-into-a-mixed-precision-matmul/check.py +63 -0
  2906. mlsys/tasks/gpu-half2-packed-feed-into-a-mixed-precision-matmul/meta.json +18 -0
  2907. mlsys/tasks/gpu-half2-packed-feed-into-a-mixed-precision-matmul/ref.cu +37 -0
  2908. mlsys/tasks/gpu-half2-packed-feed-into-a-mixed-precision-matmul/starter.cu +12 -0
  2909. mlsys/tasks/gpu-half2-packed-feed-into-a-mixed-precision-matmul/task.md +57 -0
  2910. mlsys/tasks/gpu-high-occupancy-low-ilp-vs-low-occupancy-high-ilp/check.py +64 -0
  2911. mlsys/tasks/gpu-high-occupancy-low-ilp-vs-low-occupancy-high-ilp/meta.json +13 -0
  2912. mlsys/tasks/gpu-high-occupancy-low-ilp-vs-low-occupancy-high-ilp/ref.cu +18 -0
  2913. mlsys/tasks/gpu-high-occupancy-low-ilp-vs-low-occupancy-high-ilp/starter.cu +8 -0
  2914. mlsys/tasks/gpu-high-occupancy-low-ilp-vs-low-occupancy-high-ilp/task.md +57 -0
  2915. mlsys/tasks/gpu-hillis-steele-inclusive-scan-from-scratch/check.py +60 -0
  2916. mlsys/tasks/gpu-hillis-steele-inclusive-scan-from-scratch/meta.json +9 -0
  2917. mlsys/tasks/gpu-hillis-steele-inclusive-scan-from-scratch/ref.cu +29 -0
  2918. mlsys/tasks/gpu-hillis-steele-inclusive-scan-from-scratch/starter.cu +7 -0
  2919. mlsys/tasks/gpu-hillis-steele-inclusive-scan-from-scratch/task.md +57 -0
  2920. mlsys/tasks/gpu-identify-the-occupancy-limiter/check.py +37 -0
  2921. mlsys/tasks/gpu-identify-the-occupancy-limiter/gen_fixtures.py +1 -0
  2922. mlsys/tasks/gpu-identify-the-occupancy-limiter/meta.json +22 -0
  2923. mlsys/tasks/gpu-identify-the-occupancy-limiter/solution_ref.py +51 -0
  2924. mlsys/tasks/gpu-identify-the-occupancy-limiter/starter.py +5 -0
  2925. mlsys/tasks/gpu-identify-the-occupancy-limiter/task.md +111 -0
  2926. mlsys/tasks/gpu-in-place-vs-out-of-place-transpose-tradeoff/check.py +79 -0
  2927. mlsys/tasks/gpu-in-place-vs-out-of-place-transpose-tradeoff/meta.json +1 -0
  2928. mlsys/tasks/gpu-in-place-vs-out-of-place-transpose-tradeoff/ref.cu +31 -0
  2929. mlsys/tasks/gpu-in-place-vs-out-of-place-transpose-tradeoff/starter.cu +23 -0
  2930. mlsys/tasks/gpu-in-place-vs-out-of-place-transpose-tradeoff/task.md +69 -0
  2931. mlsys/tasks/gpu-instruction-reduction-factor-float4-vs-float1-with-tail/check.py +61 -0
  2932. mlsys/tasks/gpu-instruction-reduction-factor-float4-vs-float1-with-tail/meta.json +18 -0
  2933. mlsys/tasks/gpu-instruction-reduction-factor-float4-vs-float1-with-tail/ref.cu +14 -0
  2934. mlsys/tasks/gpu-instruction-reduction-factor-float4-vs-float1-with-tail/starter.cu +12 -0
  2935. mlsys/tasks/gpu-instruction-reduction-factor-float4-vs-float1-with-tail/task.md +58 -0
  2936. mlsys/tasks/gpu-int4-nibble-unpack-dequant-matmul/check.py +73 -0
  2937. mlsys/tasks/gpu-int4-nibble-unpack-dequant-matmul/meta.json +15 -0
  2938. mlsys/tasks/gpu-int4-nibble-unpack-dequant-matmul/ref.cu +25 -0
  2939. mlsys/tasks/gpu-int4-nibble-unpack-dequant-matmul/starter.cu +13 -0
  2940. mlsys/tasks/gpu-int4-nibble-unpack-dequant-matmul/task.md +47 -0
  2941. mlsys/tasks/gpu-int8-symmetric-matmul-with-fp32-dequant/check.py +66 -0
  2942. mlsys/tasks/gpu-int8-symmetric-matmul-with-fp32-dequant/meta.json +16 -0
  2943. mlsys/tasks/gpu-int8-symmetric-matmul-with-fp32-dequant/ref.cu +28 -0
  2944. mlsys/tasks/gpu-int8-symmetric-matmul-with-fp32-dequant/starter.cu +13 -0
  2945. mlsys/tasks/gpu-int8-symmetric-matmul-with-fp32-dequant/task.md +64 -0
  2946. mlsys/tasks/gpu-intra-warp-inclusive-scan-via-shfl-up/check.py +63 -0
  2947. mlsys/tasks/gpu-intra-warp-inclusive-scan-via-shfl-up/meta.json +23 -0
  2948. mlsys/tasks/gpu-intra-warp-inclusive-scan-via-shfl-up/ref.cu +31 -0
  2949. mlsys/tasks/gpu-intra-warp-inclusive-scan-via-shfl-up/starter.cu +16 -0
  2950. mlsys/tasks/gpu-intra-warp-inclusive-scan-via-shfl-up/task.md +56 -0
  2951. mlsys/tasks/gpu-inverted-dropout-scaling-correctness/check.py +64 -0
  2952. mlsys/tasks/gpu-inverted-dropout-scaling-correctness/meta.json +1 -0
  2953. mlsys/tasks/gpu-inverted-dropout-scaling-correctness/ref.cu +10 -0
  2954. mlsys/tasks/gpu-inverted-dropout-scaling-correctness/starter.cu +7 -0
  2955. mlsys/tasks/gpu-inverted-dropout-scaling-correctness/task.md +43 -0
  2956. mlsys/tasks/gpu-label-variable-residency-flag-spills/check.py +95 -0
  2957. mlsys/tasks/gpu-label-variable-residency-flag-spills/meta.json +15 -0
  2958. mlsys/tasks/gpu-label-variable-residency-flag-spills/ref.cu +38 -0
  2959. mlsys/tasks/gpu-label-variable-residency-flag-spills/starter.cu +11 -0
  2960. mlsys/tasks/gpu-label-variable-residency-flag-spills/task.md +53 -0
  2961. mlsys/tasks/gpu-launch-geometry-minimizing-idle-lanes-ragged-rows/check.py +118 -0
  2962. mlsys/tasks/gpu-launch-geometry-minimizing-idle-lanes-ragged-rows/meta.json +17 -0
  2963. mlsys/tasks/gpu-launch-geometry-minimizing-idle-lanes-ragged-rows/ref.cu +22 -0
  2964. mlsys/tasks/gpu-launch-geometry-minimizing-idle-lanes-ragged-rows/starter.cu +12 -0
  2965. mlsys/tasks/gpu-launch-geometry-minimizing-idle-lanes-ragged-rows/task.md +63 -0
  2966. mlsys/tasks/gpu-layernorm-backward-dx-dgamma-dbeta/check.py +91 -0
  2967. mlsys/tasks/gpu-layernorm-backward-dx-dgamma-dbeta/meta.json +9 -0
  2968. mlsys/tasks/gpu-layernorm-backward-dx-dgamma-dbeta/ref.cu +65 -0
  2969. mlsys/tasks/gpu-layernorm-backward-dx-dgamma-dbeta/starter.cu +7 -0
  2970. mlsys/tasks/gpu-layernorm-backward-dx-dgamma-dbeta/task.md +78 -0
  2971. mlsys/tasks/gpu-layernorm-forward-from-scratch/check.py +68 -0
  2972. mlsys/tasks/gpu-layernorm-forward-from-scratch/meta.json +13 -0
  2973. mlsys/tasks/gpu-layernorm-forward-from-scratch/ref.cu +28 -0
  2974. mlsys/tasks/gpu-layernorm-forward-from-scratch/starter.cu +11 -0
  2975. mlsys/tasks/gpu-layernorm-forward-from-scratch/task.md +60 -0
  2976. mlsys/tasks/gpu-log-step-warp-reduction-via-shuffle-model/check.py +64 -0
  2977. mlsys/tasks/gpu-log-step-warp-reduction-via-shuffle-model/meta.json +15 -0
  2978. mlsys/tasks/gpu-log-step-warp-reduction-via-shuffle-model/ref.cu +29 -0
  2979. mlsys/tasks/gpu-log-step-warp-reduction-via-shuffle-model/starter.cu +17 -0
  2980. mlsys/tasks/gpu-log-step-warp-reduction-via-shuffle-model/task.md +46 -0
  2981. mlsys/tasks/gpu-loop-count-divergence-penalty/check.py +59 -0
  2982. mlsys/tasks/gpu-loop-count-divergence-penalty/meta.json +17 -0
  2983. mlsys/tasks/gpu-loop-count-divergence-penalty/ref.cu +21 -0
  2984. mlsys/tasks/gpu-loop-count-divergence-penalty/starter.cu +9 -0
  2985. mlsys/tasks/gpu-loop-count-divergence-penalty/task.md +63 -0
  2986. mlsys/tasks/gpu-map-multi-head-attention-onto-the-thread-hierarchy/check.py +103 -0
  2987. mlsys/tasks/gpu-map-multi-head-attention-onto-the-thread-hierarchy/meta.json +21 -0
  2988. mlsys/tasks/gpu-map-multi-head-attention-onto-the-thread-hierarchy/ref.cu +19 -0
  2989. mlsys/tasks/gpu-map-multi-head-attention-onto-the-thread-hierarchy/starter.cu +10 -0
  2990. mlsys/tasks/gpu-map-multi-head-attention-onto-the-thread-hierarchy/task.md +53 -0
  2991. mlsys/tasks/gpu-merge-two-partial-online-softmax-blocks-associativity/check.py +87 -0
  2992. mlsys/tasks/gpu-merge-two-partial-online-softmax-blocks-associativity/meta.json +1 -0
  2993. mlsys/tasks/gpu-merge-two-partial-online-softmax-blocks-associativity/ref.cu +21 -0
  2994. mlsys/tasks/gpu-merge-two-partial-online-softmax-blocks-associativity/starter.cu +13 -0
  2995. mlsys/tasks/gpu-merge-two-partial-online-softmax-blocks-associativity/task.md +66 -0
  2996. mlsys/tasks/gpu-mixed-precision-matmul-fp16-inputs-fp32-accumulate/check.py +72 -0
  2997. mlsys/tasks/gpu-mixed-precision-matmul-fp16-inputs-fp32-accumulate/meta.json +16 -0
  2998. mlsys/tasks/gpu-mixed-precision-matmul-fp16-inputs-fp32-accumulate/ref.cu +47 -0
  2999. mlsys/tasks/gpu-mixed-precision-matmul-fp16-inputs-fp32-accumulate/starter.cu +14 -0
  3000. mlsys/tasks/gpu-mixed-precision-matmul-fp16-inputs-fp32-accumulate/task.md +60 -0
  3001. mlsys/tasks/gpu-model-compute-cycles-hidden-by-prefetch/check.py +73 -0
  3002. mlsys/tasks/gpu-model-compute-cycles-hidden-by-prefetch/meta.json +15 -0
  3003. mlsys/tasks/gpu-model-compute-cycles-hidden-by-prefetch/ref.cu +13 -0
  3004. mlsys/tasks/gpu-model-compute-cycles-hidden-by-prefetch/starter.cu +8 -0
  3005. mlsys/tasks/gpu-model-compute-cycles-hidden-by-prefetch/task.md +49 -0
  3006. mlsys/tasks/gpu-model-launch-overhead-amortization/check.py +59 -0
  3007. mlsys/tasks/gpu-model-launch-overhead-amortization/meta.json +17 -0
  3008. mlsys/tasks/gpu-model-launch-overhead-amortization/ref.cu +9 -0
  3009. mlsys/tasks/gpu-model-launch-overhead-amortization/starter.cu +9 -0
  3010. mlsys/tasks/gpu-model-launch-overhead-amortization/task.md +54 -0
  3011. mlsys/tasks/gpu-model-memory-saved-flashattention-vs-materialized-scores/check.py +71 -0
  3012. mlsys/tasks/gpu-model-memory-saved-flashattention-vs-materialized-scores/meta.json +22 -0
  3013. mlsys/tasks/gpu-model-memory-saved-flashattention-vs-materialized-scores/ref.cu +17 -0
  3014. mlsys/tasks/gpu-model-memory-saved-flashattention-vs-materialized-scores/starter.cu +10 -0
  3015. mlsys/tasks/gpu-model-memory-saved-flashattention-vs-materialized-scores/task.md +66 -0
  3016. mlsys/tasks/gpu-model-serialized-atomic-ops-naive-vs-privatized/check.py +81 -0
  3017. mlsys/tasks/gpu-model-serialized-atomic-ops-naive-vs-privatized/meta.json +1 -0
  3018. mlsys/tasks/gpu-model-serialized-atomic-ops-naive-vs-privatized/ref.cu +25 -0
  3019. mlsys/tasks/gpu-model-serialized-atomic-ops-naive-vs-privatized/starter.cu +17 -0
  3020. mlsys/tasks/gpu-model-serialized-atomic-ops-naive-vs-privatized/task.md +57 -0
  3021. mlsys/tasks/gpu-model-serialized-issue-count-for-a-divergent-branch/check.py +67 -0
  3022. mlsys/tasks/gpu-model-serialized-issue-count-for-a-divergent-branch/meta.json +13 -0
  3023. mlsys/tasks/gpu-model-serialized-issue-count-for-a-divergent-branch/ref.cu +24 -0
  3024. mlsys/tasks/gpu-model-serialized-issue-count-for-a-divergent-branch/starter.cu +12 -0
  3025. mlsys/tasks/gpu-model-serialized-issue-count-for-a-divergent-branch/task.md +64 -0
  3026. mlsys/tasks/gpu-modeled-cycle-cost-of-a-multi-level-access-pattern/check.py +67 -0
  3027. mlsys/tasks/gpu-modeled-cycle-cost-of-a-multi-level-access-pattern/meta.json +15 -0
  3028. mlsys/tasks/gpu-modeled-cycle-cost-of-a-multi-level-access-pattern/ref.cu +14 -0
  3029. mlsys/tasks/gpu-modeled-cycle-cost-of-a-multi-level-access-pattern/starter.cu +7 -0
  3030. mlsys/tasks/gpu-modeled-cycle-cost-of-a-multi-level-access-pattern/task.md +40 -0
  3031. mlsys/tasks/gpu-multi-block-scan-with-block-sum-carry/check.py +70 -0
  3032. mlsys/tasks/gpu-multi-block-scan-with-block-sum-carry/meta.json +23 -0
  3033. mlsys/tasks/gpu-multi-block-scan-with-block-sum-carry/ref.cu +60 -0
  3034. mlsys/tasks/gpu-multi-block-scan-with-block-sum-carry/starter.cu +16 -0
  3035. mlsys/tasks/gpu-multi-block-scan-with-block-sum-carry/task.md +68 -0
  3036. mlsys/tasks/gpu-naive-matmul-from-scratch-forced-loop/check.py +33 -0
  3037. mlsys/tasks/gpu-naive-matmul-from-scratch-forced-loop/gen_fixtures.py +1 -0
  3038. mlsys/tasks/gpu-naive-matmul-from-scratch-forced-loop/meta.json +27 -0
  3039. mlsys/tasks/gpu-naive-matmul-from-scratch-forced-loop/solution_ref.py +28 -0
  3040. mlsys/tasks/gpu-naive-matmul-from-scratch-forced-loop/starter.py +2 -0
  3041. mlsys/tasks/gpu-naive-matmul-from-scratch-forced-loop/task.md +66 -0
  3042. mlsys/tasks/gpu-naive-transpose-transaction-count/check.py +62 -0
  3043. mlsys/tasks/gpu-naive-transpose-transaction-count/meta.json +18 -0
  3044. mlsys/tasks/gpu-naive-transpose-transaction-count/ref.cu +14 -0
  3045. mlsys/tasks/gpu-naive-transpose-transaction-count/starter.cu +9 -0
  3046. mlsys/tasks/gpu-naive-transpose-transaction-count/task.md +46 -0
  3047. mlsys/tasks/gpu-numpy-simt-simulator-for-saxpy/check.py +64 -0
  3048. mlsys/tasks/gpu-numpy-simt-simulator-for-saxpy/meta.json +1 -0
  3049. mlsys/tasks/gpu-numpy-simt-simulator-for-saxpy/ref.cu +6 -0
  3050. mlsys/tasks/gpu-numpy-simt-simulator-for-saxpy/starter.cu +4 -0
  3051. mlsys/tasks/gpu-numpy-simt-simulator-for-saxpy/task.md +58 -0
  3052. mlsys/tasks/gpu-online-streaming-softmax-with-running-max-rescale/check.py +73 -0
  3053. mlsys/tasks/gpu-online-streaming-softmax-with-running-max-rescale/meta.json +15 -0
  3054. mlsys/tasks/gpu-online-streaming-softmax-with-running-max-rescale/ref.cu +23 -0
  3055. mlsys/tasks/gpu-online-streaming-softmax-with-running-max-rescale/starter.cu +8 -0
  3056. mlsys/tasks/gpu-online-streaming-softmax-with-running-max-rescale/task.md +51 -0
  3057. mlsys/tasks/gpu-pack-operands-into-an-mma-thread-fragment-layout/check.py +94 -0
  3058. mlsys/tasks/gpu-pack-operands-into-an-mma-thread-fragment-layout/meta.json +1 -0
  3059. mlsys/tasks/gpu-pack-operands-into-an-mma-thread-fragment-layout/ref.cu +39 -0
  3060. mlsys/tasks/gpu-pack-operands-into-an-mma-thread-fragment-layout/starter.cu +15 -0
  3061. mlsys/tasks/gpu-pack-operands-into-an-mma-thread-fragment-layout/task.md +80 -0
  3062. mlsys/tasks/gpu-persistent-kernel-vs-relaunch-tradeoff/check.py +95 -0
  3063. mlsys/tasks/gpu-persistent-kernel-vs-relaunch-tradeoff/meta.json +17 -0
  3064. mlsys/tasks/gpu-persistent-kernel-vs-relaunch-tradeoff/ref.cu +30 -0
  3065. mlsys/tasks/gpu-persistent-kernel-vs-relaunch-tradeoff/starter.cu +9 -0
  3066. mlsys/tasks/gpu-persistent-kernel-vs-relaunch-tradeoff/task.md +74 -0
  3067. mlsys/tasks/gpu-pick-coarsening-factor-maximizing-modeled-arithmetic-intensity/check.py +67 -0
  3068. mlsys/tasks/gpu-pick-coarsening-factor-maximizing-modeled-arithmetic-intensity/meta.json +18 -0
  3069. mlsys/tasks/gpu-pick-coarsening-factor-maximizing-modeled-arithmetic-intensity/ref.cu +17 -0
  3070. mlsys/tasks/gpu-pick-coarsening-factor-maximizing-modeled-arithmetic-intensity/starter.cu +13 -0
  3071. mlsys/tasks/gpu-pick-coarsening-factor-maximizing-modeled-arithmetic-intensity/task.md +52 -0
  3072. mlsys/tasks/gpu-pick-grid-size-to-minimize-tail-waste/check.py +75 -0
  3073. mlsys/tasks/gpu-pick-grid-size-to-minimize-tail-waste/meta.json +17 -0
  3074. mlsys/tasks/gpu-pick-grid-size-to-minimize-tail-waste/ref.cu +22 -0
  3075. mlsys/tasks/gpu-pick-grid-size-to-minimize-tail-waste/starter.cu +9 -0
  3076. mlsys/tasks/gpu-pick-grid-size-to-minimize-tail-waste/task.md +64 -0
  3077. mlsys/tasks/gpu-predict-achievable-flops-from-the-roofline/check.py +70 -0
  3078. mlsys/tasks/gpu-predict-achievable-flops-from-the-roofline/meta.json +15 -0
  3079. mlsys/tasks/gpu-predict-achievable-flops-from-the-roofline/ref.cu +9 -0
  3080. mlsys/tasks/gpu-predict-achievable-flops-from-the-roofline/starter.cu +6 -0
  3081. mlsys/tasks/gpu-predict-achievable-flops-from-the-roofline/task.md +41 -0
  3082. mlsys/tasks/gpu-predict-per-warp-divergence-path-count/check.py +87 -0
  3083. mlsys/tasks/gpu-predict-per-warp-divergence-path-count/meta.json +13 -0
  3084. mlsys/tasks/gpu-predict-per-warp-divergence-path-count/ref.cu +11 -0
  3085. mlsys/tasks/gpu-predict-per-warp-divergence-path-count/starter.cu +7 -0
  3086. mlsys/tasks/gpu-predict-per-warp-divergence-path-count/task.md +58 -0
  3087. mlsys/tasks/gpu-privatized-shared-histogram-with-one-atomic-flush/check.py +73 -0
  3088. mlsys/tasks/gpu-privatized-shared-histogram-with-one-atomic-flush/meta.json +19 -0
  3089. mlsys/tasks/gpu-privatized-shared-histogram-with-one-atomic-flush/ref.cu +26 -0
  3090. mlsys/tasks/gpu-privatized-shared-histogram-with-one-atomic-flush/starter.cu +8 -0
  3091. mlsys/tasks/gpu-privatized-shared-histogram-with-one-atomic-flush/task.md +59 -0
  3092. mlsys/tasks/gpu-program-id-block-offset-math-with-masking/check.py +73 -0
  3093. mlsys/tasks/gpu-program-id-block-offset-math-with-masking/meta.json +1 -0
  3094. mlsys/tasks/gpu-program-id-block-offset-math-with-masking/ref.cu +13 -0
  3095. mlsys/tasks/gpu-program-id-block-offset-math-with-masking/starter.cu +9 -0
  3096. mlsys/tasks/gpu-program-id-block-offset-math-with-masking/task.md +48 -0
  3097. mlsys/tasks/gpu-prove-fp16-accumulate-loses-precision-vs-fp32/check.py +79 -0
  3098. mlsys/tasks/gpu-prove-fp16-accumulate-loses-precision-vs-fp32/meta.json +15 -0
  3099. mlsys/tasks/gpu-prove-fp16-accumulate-loses-precision-vs-fp32/ref.cu +22 -0
  3100. mlsys/tasks/gpu-prove-fp16-accumulate-loses-precision-vs-fp32/starter.cu +10 -0
  3101. mlsys/tasks/gpu-prove-fp16-accumulate-loses-precision-vs-fp32/task.md +47 -0
  3102. mlsys/tasks/gpu-prove-geometry-independent-rng-gives-a-reproducible-mask/check.py +85 -0
  3103. mlsys/tasks/gpu-prove-geometry-independent-rng-gives-a-reproducible-mask/meta.json +18 -0
  3104. mlsys/tasks/gpu-prove-geometry-independent-rng-gives-a-reproducible-mask/ref.cu +20 -0
  3105. mlsys/tasks/gpu-prove-geometry-independent-rng-gives-a-reproducible-mask/starter.cu +9 -0
  3106. mlsys/tasks/gpu-prove-geometry-independent-rng-gives-a-reproducible-mask/task.md +62 -0
  3107. mlsys/tasks/gpu-prove-naive-exp-overflows-safe-does-not/check.py +76 -0
  3108. mlsys/tasks/gpu-prove-naive-exp-overflows-safe-does-not/meta.json +23 -0
  3109. mlsys/tasks/gpu-prove-naive-exp-overflows-safe-does-not/ref.cu +25 -0
  3110. mlsys/tasks/gpu-prove-naive-exp-overflows-safe-does-not/starter.cu +10 -0
  3111. mlsys/tasks/gpu-prove-naive-exp-overflows-safe-does-not/task.md +64 -0
  3112. mlsys/tasks/gpu-rank-access-patterns-coalesced-scattered/check.py +98 -0
  3113. mlsys/tasks/gpu-rank-access-patterns-coalesced-scattered/meta.json +7 -0
  3114. mlsys/tasks/gpu-rank-access-patterns-coalesced-scattered/ref.cu +31 -0
  3115. mlsys/tasks/gpu-rank-access-patterns-coalesced-scattered/starter.cu +21 -0
  3116. mlsys/tasks/gpu-rank-access-patterns-coalesced-scattered/task.md +61 -0
  3117. mlsys/tasks/gpu-rank-llm-ops-on-the-roofline/check.py +69 -0
  3118. mlsys/tasks/gpu-rank-llm-ops-on-the-roofline/meta.json +17 -0
  3119. mlsys/tasks/gpu-rank-llm-ops-on-the-roofline/ref.cu +44 -0
  3120. mlsys/tasks/gpu-rank-llm-ops-on-the-roofline/starter.cu +13 -0
  3121. mlsys/tasks/gpu-rank-llm-ops-on-the-roofline/task.md +73 -0
  3122. mlsys/tasks/gpu-re-place-hot-constant-vector-into-the-broadcast-path/check.py +63 -0
  3123. mlsys/tasks/gpu-re-place-hot-constant-vector-into-the-broadcast-path/meta.json +16 -0
  3124. mlsys/tasks/gpu-re-place-hot-constant-vector-into-the-broadcast-path/ref.cu +18 -0
  3125. mlsys/tasks/gpu-re-place-hot-constant-vector-into-the-broadcast-path/starter.cu +19 -0
  3126. mlsys/tasks/gpu-re-place-hot-constant-vector-into-the-broadcast-path/task.md +51 -0
  3127. mlsys/tasks/gpu-reconstruct-predicate-true-lanes/check.py +29 -0
  3128. mlsys/tasks/gpu-reconstruct-predicate-true-lanes/gen_fixtures.py +1 -0
  3129. mlsys/tasks/gpu-reconstruct-predicate-true-lanes/meta.json +22 -0
  3130. mlsys/tasks/gpu-reconstruct-predicate-true-lanes/solution_ref.py +6 -0
  3131. mlsys/tasks/gpu-reconstruct-predicate-true-lanes/starter.py +5 -0
  3132. mlsys/tasks/gpu-reconstruct-predicate-true-lanes/task.md +33 -0
  3133. mlsys/tasks/gpu-register-blocked-gemm-microkernel-outer-product-accumulate/check.py +94 -0
  3134. mlsys/tasks/gpu-register-blocked-gemm-microkernel-outer-product-accumulate/meta.json +17 -0
  3135. mlsys/tasks/gpu-register-blocked-gemm-microkernel-outer-product-accumulate/ref.cu +41 -0
  3136. mlsys/tasks/gpu-register-blocked-gemm-microkernel-outer-product-accumulate/starter.cu +20 -0
  3137. mlsys/tasks/gpu-register-blocked-gemm-microkernel-outer-product-accumulate/task.md +65 -0
  3138. mlsys/tasks/gpu-relayout-column-major-gather-to-coalesced-row-major/check.py +61 -0
  3139. mlsys/tasks/gpu-relayout-column-major-gather-to-coalesced-row-major/meta.json +1 -0
  3140. mlsys/tasks/gpu-relayout-column-major-gather-to-coalesced-row-major/ref.cu +27 -0
  3141. mlsys/tasks/gpu-relayout-column-major-gather-to-coalesced-row-major/starter.cu +15 -0
  3142. mlsys/tasks/gpu-relayout-column-major-gather-to-coalesced-row-major/task.md +63 -0
  3143. mlsys/tasks/gpu-replace-shared-memory-warp-final-reduce-with-shuffle-only/check.py +62 -0
  3144. mlsys/tasks/gpu-replace-shared-memory-warp-final-reduce-with-shuffle-only/meta.json +28 -0
  3145. mlsys/tasks/gpu-replace-shared-memory-warp-final-reduce-with-shuffle-only/ref.cu +17 -0
  3146. mlsys/tasks/gpu-replace-shared-memory-warp-final-reduce-with-shuffle-only/starter.cu +12 -0
  3147. mlsys/tasks/gpu-replace-shared-memory-warp-final-reduce-with-shuffle-only/task.md +66 -0
  3148. mlsys/tasks/gpu-reverse-engineer-block-grid-mapping-from-outputs/check.py +77 -0
  3149. mlsys/tasks/gpu-reverse-engineer-block-grid-mapping-from-outputs/meta.json +13 -0
  3150. mlsys/tasks/gpu-reverse-engineer-block-grid-mapping-from-outputs/ref.cu +32 -0
  3151. mlsys/tasks/gpu-reverse-engineer-block-grid-mapping-from-outputs/starter.cu +10 -0
  3152. mlsys/tasks/gpu-reverse-engineer-block-grid-mapping-from-outputs/task.md +62 -0
  3153. mlsys/tasks/gpu-rmsnorm-forward/check.py +69 -0
  3154. mlsys/tasks/gpu-rmsnorm-forward/meta.json +15 -0
  3155. mlsys/tasks/gpu-rmsnorm-forward/ref.cu +20 -0
  3156. mlsys/tasks/gpu-rmsnorm-forward/starter.cu +11 -0
  3157. mlsys/tasks/gpu-rmsnorm-forward/task.md +40 -0
  3158. mlsys/tasks/gpu-roofline-of-decode-vs-prefill-batch-1/check.py +63 -0
  3159. mlsys/tasks/gpu-roofline-of-decode-vs-prefill-batch-1/meta.json +17 -0
  3160. mlsys/tasks/gpu-roofline-of-decode-vs-prefill-batch-1/ref.cu +30 -0
  3161. mlsys/tasks/gpu-roofline-of-decode-vs-prefill-batch-1/starter.cu +10 -0
  3162. mlsys/tasks/gpu-roofline-of-decode-vs-prefill-batch-1/task.md +70 -0
  3163. mlsys/tasks/gpu-safe-softmax-max-subtraction-from-scratch/check.py +77 -0
  3164. mlsys/tasks/gpu-safe-softmax-max-subtraction-from-scratch/meta.json +15 -0
  3165. mlsys/tasks/gpu-safe-softmax-max-subtraction-from-scratch/ref.cu +20 -0
  3166. mlsys/tasks/gpu-safe-softmax-max-subtraction-from-scratch/starter.cu +7 -0
  3167. mlsys/tasks/gpu-safe-softmax-max-subtraction-from-scratch/task.md +43 -0
  3168. mlsys/tasks/gpu-scan-for-radix-sort-digit-offsets/check.py +64 -0
  3169. mlsys/tasks/gpu-scan-for-radix-sort-digit-offsets/meta.json +13 -0
  3170. mlsys/tasks/gpu-scan-for-radix-sort-digit-offsets/ref.cu +54 -0
  3171. mlsys/tasks/gpu-scan-for-radix-sort-digit-offsets/starter.cu +13 -0
  3172. mlsys/tasks/gpu-scan-for-radix-sort-digit-offsets/task.md +71 -0
  3173. mlsys/tasks/gpu-seeded-dropout-mask-matches-reference/check.py +69 -0
  3174. mlsys/tasks/gpu-seeded-dropout-mask-matches-reference/meta.json +1 -0
  3175. mlsys/tasks/gpu-seeded-dropout-mask-matches-reference/ref.cu +16 -0
  3176. mlsys/tasks/gpu-seeded-dropout-mask-matches-reference/starter.cu +13 -0
  3177. mlsys/tasks/gpu-seeded-dropout-mask-matches-reference/task.md +60 -0
  3178. mlsys/tasks/gpu-segmented-scan/check.py +75 -0
  3179. mlsys/tasks/gpu-segmented-scan/meta.json +23 -0
  3180. mlsys/tasks/gpu-segmented-scan/ref.cu +54 -0
  3181. mlsys/tasks/gpu-segmented-scan/starter.cu +18 -0
  3182. mlsys/tasks/gpu-segmented-scan/task.md +66 -0
  3183. mlsys/tasks/gpu-sequential-vs-pairwise-vs-kahan-summation-error/check.py +61 -0
  3184. mlsys/tasks/gpu-sequential-vs-pairwise-vs-kahan-summation-error/meta.json +18 -0
  3185. mlsys/tasks/gpu-sequential-vs-pairwise-vs-kahan-summation-error/ref.cu +16 -0
  3186. mlsys/tasks/gpu-sequential-vs-pairwise-vs-kahan-summation-error/starter.cu +9 -0
  3187. mlsys/tasks/gpu-sequential-vs-pairwise-vs-kahan-summation-error/task.md +66 -0
  3188. mlsys/tasks/gpu-shared-memory-tiled-matmul-numpy-model/check.py +74 -0
  3189. mlsys/tasks/gpu-shared-memory-tiled-matmul-numpy-model/meta.json +18 -0
  3190. mlsys/tasks/gpu-shared-memory-tiled-matmul-numpy-model/ref.cu +37 -0
  3191. mlsys/tasks/gpu-shared-memory-tiled-matmul-numpy-model/starter.cu +19 -0
  3192. mlsys/tasks/gpu-shared-memory-tiled-matmul-numpy-model/task.md +48 -0
  3193. mlsys/tasks/gpu-shared-memory-tiled-transpose-coalesced-r-w/check.py +60 -0
  3194. mlsys/tasks/gpu-shared-memory-tiled-transpose-coalesced-r-w/meta.json +1 -0
  3195. mlsys/tasks/gpu-shared-memory-tiled-transpose-coalesced-r-w/ref.cu +28 -0
  3196. mlsys/tasks/gpu-shared-memory-tiled-transpose-coalesced-r-w/starter.cu +15 -0
  3197. mlsys/tasks/gpu-shared-memory-tiled-transpose-coalesced-r-w/task.md +59 -0
  3198. mlsys/tasks/gpu-shfl-xor-butterfly-source-lane-derivation/check.py +60 -0
  3199. mlsys/tasks/gpu-shfl-xor-butterfly-source-lane-derivation/meta.json +23 -0
  3200. mlsys/tasks/gpu-shfl-xor-butterfly-source-lane-derivation/ref.cu +15 -0
  3201. mlsys/tasks/gpu-shfl-xor-butterfly-source-lane-derivation/starter.cu +11 -0
  3202. mlsys/tasks/gpu-shfl-xor-butterfly-source-lane-derivation/task.md +57 -0
  3203. mlsys/tasks/gpu-single-buffer-vs-double-buffer-stall-cycles/check.py +62 -0
  3204. mlsys/tasks/gpu-single-buffer-vs-double-buffer-stall-cycles/meta.json +13 -0
  3205. mlsys/tasks/gpu-single-buffer-vs-double-buffer-stall-cycles/ref.cu +20 -0
  3206. mlsys/tasks/gpu-single-buffer-vs-double-buffer-stall-cycles/starter.cu +11 -0
  3207. mlsys/tasks/gpu-single-buffer-vs-double-buffer-stall-cycles/task.md +54 -0
  3208. mlsys/tasks/gpu-split-accumulate-blocked-pairwise-reduction/check.py +63 -0
  3209. mlsys/tasks/gpu-split-accumulate-blocked-pairwise-reduction/meta.json +18 -0
  3210. mlsys/tasks/gpu-split-accumulate-blocked-pairwise-reduction/ref.cu +22 -0
  3211. mlsys/tasks/gpu-split-accumulate-blocked-pairwise-reduction/starter.cu +10 -0
  3212. mlsys/tasks/gpu-split-accumulate-blocked-pairwise-reduction/task.md +59 -0
  3213. mlsys/tasks/gpu-stride-0-broadcast-without-materializing/check.py +74 -0
  3214. mlsys/tasks/gpu-stride-0-broadcast-without-materializing/meta.json +1 -0
  3215. mlsys/tasks/gpu-stride-0-broadcast-without-materializing/ref.cu +13 -0
  3216. mlsys/tasks/gpu-stride-0-broadcast-without-materializing/starter.cu +11 -0
  3217. mlsys/tasks/gpu-stride-0-broadcast-without-materializing/task.md +46 -0
  3218. mlsys/tasks/gpu-tensor-core-tiled-qk-t-mixed-precision-model/check.py +75 -0
  3219. mlsys/tasks/gpu-tensor-core-tiled-qk-t-mixed-precision-model/meta.json +15 -0
  3220. mlsys/tasks/gpu-tensor-core-tiled-qk-t-mixed-precision-model/ref.cu +25 -0
  3221. mlsys/tasks/gpu-tensor-core-tiled-qk-t-mixed-precision-model/starter.cu +11 -0
  3222. mlsys/tasks/gpu-tensor-core-tiled-qk-t-mixed-precision-model/task.md +51 -0
  3223. mlsys/tasks/gpu-thread-coarsening-each-thread-computes-a-cxc-output-tile/check.py +64 -0
  3224. mlsys/tasks/gpu-thread-coarsening-each-thread-computes-a-cxc-output-tile/meta.json +13 -0
  3225. mlsys/tasks/gpu-thread-coarsening-each-thread-computes-a-cxc-output-tile/ref.cu +45 -0
  3226. mlsys/tasks/gpu-thread-coarsening-each-thread-computes-a-cxc-output-tile/starter.cu +18 -0
  3227. mlsys/tasks/gpu-thread-coarsening-each-thread-computes-a-cxc-output-tile/task.md +55 -0
  3228. mlsys/tasks/gpu-tree-vs-sequential-summation-error-bound/check.py +69 -0
  3229. mlsys/tasks/gpu-tree-vs-sequential-summation-error-bound/meta.json +24 -0
  3230. mlsys/tasks/gpu-tree-vs-sequential-summation-error-bound/ref.cu +26 -0
  3231. mlsys/tasks/gpu-tree-vs-sequential-summation-error-bound/starter.cu +13 -0
  3232. mlsys/tasks/gpu-tree-vs-sequential-summation-error-bound/task.md +61 -0
  3233. mlsys/tasks/gpu-triton-dropout-with-seeded-rng/check.py +75 -0
  3234. mlsys/tasks/gpu-triton-dropout-with-seeded-rng/meta.json +1 -0
  3235. mlsys/tasks/gpu-triton-dropout-with-seeded-rng/ref.cu +19 -0
  3236. mlsys/tasks/gpu-triton-dropout-with-seeded-rng/starter.cu +11 -0
  3237. mlsys/tasks/gpu-triton-dropout-with-seeded-rng/task.md +53 -0
  3238. mlsys/tasks/gpu-triton-flashattention-forward-interpret-mode/check.py +75 -0
  3239. mlsys/tasks/gpu-triton-flashattention-forward-interpret-mode/meta.json +13 -0
  3240. mlsys/tasks/gpu-triton-flashattention-forward-interpret-mode/ref.cu +62 -0
  3241. mlsys/tasks/gpu-triton-flashattention-forward-interpret-mode/starter.cu +18 -0
  3242. mlsys/tasks/gpu-triton-flashattention-forward-interpret-mode/task.md +69 -0
  3243. mlsys/tasks/gpu-triton-fused-elementwise-add-scale-activation/check.py +72 -0
  3244. mlsys/tasks/gpu-triton-fused-elementwise-add-scale-activation/meta.json +18 -0
  3245. mlsys/tasks/gpu-triton-fused-elementwise-add-scale-activation/ref.cu +11 -0
  3246. mlsys/tasks/gpu-triton-fused-elementwise-add-scale-activation/starter.cu +8 -0
  3247. mlsys/tasks/gpu-triton-fused-elementwise-add-scale-activation/task.md +39 -0
  3248. mlsys/tasks/gpu-triton-fused-softmax-row-per-program/check.py +74 -0
  3249. mlsys/tasks/gpu-triton-fused-softmax-row-per-program/meta.json +1 -0
  3250. mlsys/tasks/gpu-triton-fused-softmax-row-per-program/ref.cu +26 -0
  3251. mlsys/tasks/gpu-triton-fused-softmax-row-per-program/starter.cu +14 -0
  3252. mlsys/tasks/gpu-triton-fused-softmax-row-per-program/task.md +51 -0
  3253. mlsys/tasks/gpu-triton-matmul-with-tl-dot/check.py +72 -0
  3254. mlsys/tasks/gpu-triton-matmul-with-tl-dot/meta.json +15 -0
  3255. mlsys/tasks/gpu-triton-matmul-with-tl-dot/ref.cu +24 -0
  3256. mlsys/tasks/gpu-triton-matmul-with-tl-dot/starter.cu +13 -0
  3257. mlsys/tasks/gpu-triton-matmul-with-tl-dot/task.md +43 -0
  3258. mlsys/tasks/gpu-triton-tiled-matmul-interpret-mode/check.py +62 -0
  3259. mlsys/tasks/gpu-triton-tiled-matmul-interpret-mode/meta.json +13 -0
  3260. mlsys/tasks/gpu-triton-tiled-matmul-interpret-mode/ref.cu +35 -0
  3261. mlsys/tasks/gpu-triton-tiled-matmul-interpret-mode/starter.cu +15 -0
  3262. mlsys/tasks/gpu-triton-tiled-matmul-interpret-mode/task.md +65 -0
  3263. mlsys/tasks/gpu-triton-vector-add-interpret/check.py +62 -0
  3264. mlsys/tasks/gpu-triton-vector-add-interpret/meta.json +1 -0
  3265. mlsys/tasks/gpu-triton-vector-add-interpret/ref.cu +9 -0
  3266. mlsys/tasks/gpu-triton-vector-add-interpret/starter.cu +6 -0
  3267. mlsys/tasks/gpu-triton-vector-add-interpret/task.md +29 -0
  3268. mlsys/tasks/gpu-tune-blockdim-shared-budget-for-max-occupancy/check.py +79 -0
  3269. mlsys/tasks/gpu-tune-blockdim-shared-budget-for-max-occupancy/meta.json +23 -0
  3270. mlsys/tasks/gpu-tune-blockdim-shared-budget-for-max-occupancy/ref.cu +34 -0
  3271. mlsys/tasks/gpu-tune-blockdim-shared-budget-for-max-occupancy/starter.cu +13 -0
  3272. mlsys/tasks/gpu-tune-blockdim-shared-budget-for-max-occupancy/task.md +81 -0
  3273. mlsys/tasks/gpu-warp-aggregated-atomics-one-atomic-per-warp/check.py +71 -0
  3274. mlsys/tasks/gpu-warp-aggregated-atomics-one-atomic-per-warp/meta.json +1 -0
  3275. mlsys/tasks/gpu-warp-aggregated-atomics-one-atomic-per-warp/ref.cu +18 -0
  3276. mlsys/tasks/gpu-warp-aggregated-atomics-one-atomic-per-warp/starter.cu +15 -0
  3277. mlsys/tasks/gpu-warp-aggregated-atomics-one-atomic-per-warp/task.md +52 -0
  3278. mlsys/tasks/gpu-warp-cooperative-softmax-max-sum/check.py +68 -0
  3279. mlsys/tasks/gpu-warp-cooperative-softmax-max-sum/meta.json +15 -0
  3280. mlsys/tasks/gpu-warp-cooperative-softmax-max-sum/ref.cu +27 -0
  3281. mlsys/tasks/gpu-warp-cooperative-softmax-max-sum/starter.cu +14 -0
  3282. mlsys/tasks/gpu-warp-cooperative-softmax-max-sum/task.md +45 -0
  3283. mlsys/tasks/gpu-warp-reduction-layernorm-over-the-hidden-dim/check.py +68 -0
  3284. mlsys/tasks/gpu-warp-reduction-layernorm-over-the-hidden-dim/meta.json +13 -0
  3285. mlsys/tasks/gpu-warp-reduction-layernorm-over-the-hidden-dim/ref.cu +59 -0
  3286. mlsys/tasks/gpu-warp-reduction-layernorm-over-the-hidden-dim/starter.cu +19 -0
  3287. mlsys/tasks/gpu-warp-reduction-layernorm-over-the-hidden-dim/task.md +63 -0
  3288. mlsys/tasks/gpu-warp-uniform-check-helper/check.py +20 -0
  3289. mlsys/tasks/gpu-warp-uniform-check-helper/gen_fixtures.py +1 -0
  3290. mlsys/tasks/gpu-warp-uniform-check-helper/meta.json +22 -0
  3291. mlsys/tasks/gpu-warp-uniform-check-helper/solution_ref.py +18 -0
  3292. mlsys/tasks/gpu-warp-uniform-check-helper/starter.py +7 -0
  3293. mlsys/tasks/gpu-warp-uniform-check-helper/task.md +43 -0
  3294. mlsys/tasks/gpu-warps-launched-wasted-lane-fraction/check.py +34 -0
  3295. mlsys/tasks/gpu-warps-launched-wasted-lane-fraction/gen_fixtures.py +1 -0
  3296. mlsys/tasks/gpu-warps-launched-wasted-lane-fraction/meta.json +22 -0
  3297. mlsys/tasks/gpu-warps-launched-wasted-lane-fraction/solution_ref.py +23 -0
  3298. mlsys/tasks/gpu-warps-launched-wasted-lane-fraction/starter.py +3 -0
  3299. mlsys/tasks/gpu-warps-launched-wasted-lane-fraction/task.md +48 -0
  3300. mlsys/tasks/gpu-warps-needed-to-fully-hide-memory-latency/check.py +27 -0
  3301. mlsys/tasks/gpu-warps-needed-to-fully-hide-memory-latency/gen_fixtures.py +1 -0
  3302. mlsys/tasks/gpu-warps-needed-to-fully-hide-memory-latency/meta.json +16 -0
  3303. mlsys/tasks/gpu-warps-needed-to-fully-hide-memory-latency/solution_ref.py +10 -0
  3304. mlsys/tasks/gpu-warps-needed-to-fully-hide-memory-latency/starter.py +10 -0
  3305. mlsys/tasks/gpu-warps-needed-to-fully-hide-memory-latency/task.md +44 -0
  3306. mlsys/tasks/gpu-welford-one-pass-mean-variance/check.py +71 -0
  3307. mlsys/tasks/gpu-welford-one-pass-mean-variance/meta.json +15 -0
  3308. mlsys/tasks/gpu-welford-one-pass-mean-variance/ref.cu +22 -0
  3309. mlsys/tasks/gpu-welford-one-pass-mean-variance/starter.cu +10 -0
  3310. mlsys/tasks/gpu-welford-one-pass-mean-variance/task.md +51 -0
  3311. mlsys/tasks/gpu-which-pointers-may-legally-vectorize-to-float4/check.py +23 -0
  3312. mlsys/tasks/gpu-which-pointers-may-legally-vectorize-to-float4/gen_fixtures.py +1 -0
  3313. mlsys/tasks/gpu-which-pointers-may-legally-vectorize-to-float4/meta.json +16 -0
  3314. mlsys/tasks/gpu-which-pointers-may-legally-vectorize-to-float4/solution_ref.py +6 -0
  3315. mlsys/tasks/gpu-which-pointers-may-legally-vectorize-to-float4/starter.py +7 -0
  3316. mlsys/tasks/gpu-which-pointers-may-legally-vectorize-to-float4/task.md +38 -0
  3317. mlsys/tasks/gpu-wmma-16x16x16-fragment-tiling-math/check.py +66 -0
  3318. mlsys/tasks/gpu-wmma-16x16x16-fragment-tiling-math/meta.json +18 -0
  3319. mlsys/tasks/gpu-wmma-16x16x16-fragment-tiling-math/ref.cu +21 -0
  3320. mlsys/tasks/gpu-wmma-16x16x16-fragment-tiling-math/starter.cu +9 -0
  3321. mlsys/tasks/gpu-wmma-16x16x16-fragment-tiling-math/task.md +52 -0
  3322. mlsys/tasks/llm-additive-inf-vs-multiplicative-0-1-mask-kl/check.py +38 -0
  3323. mlsys/tasks/llm-additive-inf-vs-multiplicative-0-1-mask-kl/gen_fixtures.py +1 -0
  3324. mlsys/tasks/llm-additive-inf-vs-multiplicative-0-1-mask-kl/meta.json +22 -0
  3325. mlsys/tasks/llm-additive-inf-vs-multiplicative-0-1-mask-kl/solution_ref.py +29 -0
  3326. mlsys/tasks/llm-additive-inf-vs-multiplicative-0-1-mask-kl/starter.py +6 -0
  3327. mlsys/tasks/llm-additive-inf-vs-multiplicative-0-1-mask-kl/task.md +57 -0
  3328. mlsys/tasks/llm-alibi-bias-matrix-head-slopes-from-scratch/check.py +28 -0
  3329. mlsys/tasks/llm-alibi-bias-matrix-head-slopes-from-scratch/gen_fixtures.py +1 -0
  3330. mlsys/tasks/llm-alibi-bias-matrix-head-slopes-from-scratch/meta.json +22 -0
  3331. mlsys/tasks/llm-alibi-bias-matrix-head-slopes-from-scratch/solution_ref.py +23 -0
  3332. mlsys/tasks/llm-alibi-bias-matrix-head-slopes-from-scratch/starter.py +6 -0
  3333. mlsys/tasks/llm-alibi-bias-matrix-head-slopes-from-scratch/task.md +47 -0
  3334. mlsys/tasks/llm-alibi-slope-closed-form-for-n-heads/check.py +27 -0
  3335. mlsys/tasks/llm-alibi-slope-closed-form-for-n-heads/gen_fixtures.py +1 -0
  3336. mlsys/tasks/llm-alibi-slope-closed-form-for-n-heads/meta.json +22 -0
  3337. mlsys/tasks/llm-alibi-slope-closed-form-for-n-heads/solution_ref.py +33 -0
  3338. mlsys/tasks/llm-alibi-slope-closed-form-for-n-heads/starter.py +4 -0
  3339. mlsys/tasks/llm-alibi-slope-closed-form-for-n-heads/task.md +49 -0
  3340. mlsys/tasks/llm-alibi-vs-rope-extrapolation/check.py +36 -0
  3341. mlsys/tasks/llm-alibi-vs-rope-extrapolation/gen_fixtures.py +1 -0
  3342. mlsys/tasks/llm-alibi-vs-rope-extrapolation/meta.json +22 -0
  3343. mlsys/tasks/llm-alibi-vs-rope-extrapolation/solution_ref.py +17 -0
  3344. mlsys/tasks/llm-alibi-vs-rope-extrapolation/starter.py +4 -0
  3345. mlsys/tasks/llm-alibi-vs-rope-extrapolation/task.md +85 -0
  3346. mlsys/tasks/llm-apply-bpe-merges-to-token-ids-byte-exact/check.py +47 -0
  3347. mlsys/tasks/llm-apply-bpe-merges-to-token-ids-byte-exact/gen_fixtures.py +1 -0
  3348. mlsys/tasks/llm-apply-bpe-merges-to-token-ids-byte-exact/meta.json +22 -0
  3349. mlsys/tasks/llm-apply-bpe-merges-to-token-ids-byte-exact/solution_ref.py +20 -0
  3350. mlsys/tasks/llm-apply-bpe-merges-to-token-ids-byte-exact/starter.py +2 -0
  3351. mlsys/tasks/llm-apply-bpe-merges-to-token-ids-byte-exact/task.md +48 -0
  3352. mlsys/tasks/llm-apply-logit-bias-map/check.py +30 -0
  3353. mlsys/tasks/llm-apply-logit-bias-map/gen_fixtures.py +1 -0
  3354. mlsys/tasks/llm-apply-logit-bias-map/meta.json +22 -0
  3355. mlsys/tasks/llm-apply-logit-bias-map/solution_ref.py +13 -0
  3356. mlsys/tasks/llm-apply-logit-bias-map/starter.py +4 -0
  3357. mlsys/tasks/llm-apply-logit-bias-map/task.md +48 -0
  3358. mlsys/tasks/llm-apply-rope-to-q-k-match/check.py +34 -0
  3359. mlsys/tasks/llm-apply-rope-to-q-k-match/gen_fixtures.py +1 -0
  3360. mlsys/tasks/llm-apply-rope-to-q-k-match/meta.json +22 -0
  3361. mlsys/tasks/llm-apply-rope-to-q-k-match/solution_ref.py +34 -0
  3362. mlsys/tasks/llm-apply-rope-to-q-k-match/starter.py +5 -0
  3363. mlsys/tasks/llm-apply-rope-to-q-k-match/task.md +66 -0
  3364. mlsys/tasks/llm-asymmetric-zero-point-int8-round-trip/check.py +41 -0
  3365. mlsys/tasks/llm-asymmetric-zero-point-int8-round-trip/gen_fixtures.py +1 -0
  3366. mlsys/tasks/llm-asymmetric-zero-point-int8-round-trip/meta.json +27 -0
  3367. mlsys/tasks/llm-asymmetric-zero-point-int8-round-trip/solution_ref.py +17 -0
  3368. mlsys/tasks/llm-asymmetric-zero-point-int8-round-trip/starter.py +4 -0
  3369. mlsys/tasks/llm-asymmetric-zero-point-int8-round-trip/task.md +65 -0
  3370. mlsys/tasks/llm-awq-int4-vs-rtn-int4-quality-size-tradeoff/check.py +48 -0
  3371. mlsys/tasks/llm-awq-int4-vs-rtn-int4-quality-size-tradeoff/gen_fixtures.py +1 -0
  3372. mlsys/tasks/llm-awq-int4-vs-rtn-int4-quality-size-tradeoff/meta.json +27 -0
  3373. mlsys/tasks/llm-awq-int4-vs-rtn-int4-quality-size-tradeoff/solution_ref.py +22 -0
  3374. mlsys/tasks/llm-awq-int4-vs-rtn-int4-quality-size-tradeoff/starter.py +4 -0
  3375. mlsys/tasks/llm-awq-int4-vs-rtn-int4-quality-size-tradeoff/task.md +53 -0
  3376. mlsys/tasks/llm-awq-vs-rtn-protecting-salient-channels/check.py +56 -0
  3377. mlsys/tasks/llm-awq-vs-rtn-protecting-salient-channels/gen_fixtures.py +1 -0
  3378. mlsys/tasks/llm-awq-vs-rtn-protecting-salient-channels/meta.json +27 -0
  3379. mlsys/tasks/llm-awq-vs-rtn-protecting-salient-channels/solution_ref.py +21 -0
  3380. mlsys/tasks/llm-awq-vs-rtn-protecting-salient-channels/starter.py +5 -0
  3381. mlsys/tasks/llm-awq-vs-rtn-protecting-salient-channels/task.md +57 -0
  3382. mlsys/tasks/llm-banned-tokens-inf-mask/check.py +28 -0
  3383. mlsys/tasks/llm-banned-tokens-inf-mask/gen_fixtures.py +1 -0
  3384. mlsys/tasks/llm-banned-tokens-inf-mask/meta.json +22 -0
  3385. mlsys/tasks/llm-banned-tokens-inf-mask/solution_ref.py +9 -0
  3386. mlsys/tasks/llm-banned-tokens-inf-mask/starter.py +4 -0
  3387. mlsys/tasks/llm-banned-tokens-inf-mask/task.md +44 -0
  3388. mlsys/tasks/llm-bf16-matmul-with-fp32-accum-vs-full-fp16/check.py +52 -0
  3389. mlsys/tasks/llm-bf16-matmul-with-fp32-accum-vs-full-fp16/gen_fixtures.py +1 -0
  3390. mlsys/tasks/llm-bf16-matmul-with-fp32-accum-vs-full-fp16/meta.json +27 -0
  3391. mlsys/tasks/llm-bf16-matmul-with-fp32-accum-vs-full-fp16/solution_ref.py +21 -0
  3392. mlsys/tasks/llm-bf16-matmul-with-fp32-accum-vs-full-fp16/starter.py +5 -0
  3393. mlsys/tasks/llm-bf16-matmul-with-fp32-accum-vs-full-fp16/task.md +52 -0
  3394. mlsys/tasks/llm-block-diagonal-mask-for-packed-sequences/check.py +41 -0
  3395. mlsys/tasks/llm-block-diagonal-mask-for-packed-sequences/gen_fixtures.py +1 -0
  3396. mlsys/tasks/llm-block-diagonal-mask-for-packed-sequences/meta.json +22 -0
  3397. mlsys/tasks/llm-block-diagonal-mask-for-packed-sequences/solution_ref.py +11 -0
  3398. mlsys/tasks/llm-block-diagonal-mask-for-packed-sequences/starter.py +4 -0
  3399. mlsys/tasks/llm-block-diagonal-mask-for-packed-sequences/task.md +46 -0
  3400. mlsys/tasks/llm-bpe-encode-decode-byte-round-trip/check.py +65 -0
  3401. mlsys/tasks/llm-bpe-encode-decode-byte-round-trip/gen_fixtures.py +1 -0
  3402. mlsys/tasks/llm-bpe-encode-decode-byte-round-trip/meta.json +28 -0
  3403. mlsys/tasks/llm-bpe-encode-decode-byte-round-trip/solution_ref.py +28 -0
  3404. mlsys/tasks/llm-bpe-encode-decode-byte-round-trip/starter.py +5 -0
  3405. mlsys/tasks/llm-bpe-encode-decode-byte-round-trip/task.md +58 -0
  3406. mlsys/tasks/llm-broadcast-reconstruct-full-k-v-from-gqa-heads/check.py +48 -0
  3407. mlsys/tasks/llm-broadcast-reconstruct-full-k-v-from-gqa-heads/gen_fixtures.py +1 -0
  3408. mlsys/tasks/llm-broadcast-reconstruct-full-k-v-from-gqa-heads/meta.json +22 -0
  3409. mlsys/tasks/llm-broadcast-reconstruct-full-k-v-from-gqa-heads/solution_ref.py +6 -0
  3410. mlsys/tasks/llm-broadcast-reconstruct-full-k-v-from-gqa-heads/starter.py +4 -0
  3411. mlsys/tasks/llm-broadcast-reconstruct-full-k-v-from-gqa-heads/task.md +76 -0
  3412. mlsys/tasks/llm-byte-level-bpe-with-utf-8-fallback/check.py +93 -0
  3413. mlsys/tasks/llm-byte-level-bpe-with-utf-8-fallback/gen_fixtures.py +1 -0
  3414. mlsys/tasks/llm-byte-level-bpe-with-utf-8-fallback/meta.json +22 -0
  3415. mlsys/tasks/llm-byte-level-bpe-with-utf-8-fallback/solution_ref.py +30 -0
  3416. mlsys/tasks/llm-byte-level-bpe-with-utf-8-fallback/starter.py +2 -0
  3417. mlsys/tasks/llm-byte-level-bpe-with-utf-8-fallback/task.md +75 -0
  3418. mlsys/tasks/llm-causal-additive-mask-applied-before-softmax/check.py +33 -0
  3419. mlsys/tasks/llm-causal-additive-mask-applied-before-softmax/gen_fixtures.py +1 -0
  3420. mlsys/tasks/llm-causal-additive-mask-applied-before-softmax/meta.json +22 -0
  3421. mlsys/tasks/llm-causal-additive-mask-applied-before-softmax/solution_ref.py +9 -0
  3422. mlsys/tasks/llm-causal-additive-mask-applied-before-softmax/starter.py +4 -0
  3423. mlsys/tasks/llm-causal-additive-mask-applied-before-softmax/task.md +49 -0
  3424. mlsys/tasks/llm-causal-alibi-applied-before-softmax/check.py +26 -0
  3425. mlsys/tasks/llm-causal-alibi-applied-before-softmax/gen_fixtures.py +1 -0
  3426. mlsys/tasks/llm-causal-alibi-applied-before-softmax/meta.json +22 -0
  3427. mlsys/tasks/llm-causal-alibi-applied-before-softmax/solution_ref.py +29 -0
  3428. mlsys/tasks/llm-causal-alibi-applied-before-softmax/starter.py +4 -0
  3429. mlsys/tasks/llm-causal-alibi-applied-before-softmax/task.md +55 -0
  3430. mlsys/tasks/llm-causal-streaming-softmax-with-block-skipping/check.py +39 -0
  3431. mlsys/tasks/llm-causal-streaming-softmax-with-block-skipping/gen_fixtures.py +1 -0
  3432. mlsys/tasks/llm-causal-streaming-softmax-with-block-skipping/meta.json +22 -0
  3433. mlsys/tasks/llm-causal-streaming-softmax-with-block-skipping/solution_ref.py +43 -0
  3434. mlsys/tasks/llm-causal-streaming-softmax-with-block-skipping/starter.py +6 -0
  3435. mlsys/tasks/llm-causal-streaming-softmax-with-block-skipping/task.md +73 -0
  3436. mlsys/tasks/llm-ce-backward-softmax-onehot/check.py +55 -0
  3437. mlsys/tasks/llm-ce-backward-softmax-onehot/gen_fixtures.py +1 -0
  3438. mlsys/tasks/llm-ce-backward-softmax-onehot/meta.json +22 -0
  3439. mlsys/tasks/llm-ce-backward-softmax-onehot/solution_ref.py +11 -0
  3440. mlsys/tasks/llm-ce-backward-softmax-onehot/starter.py +11 -0
  3441. mlsys/tasks/llm-ce-backward-softmax-onehot/task.md +62 -0
  3442. mlsys/tasks/llm-classify-checkpoint-mha-gqa-mqa-from-shapes/check.py +45 -0
  3443. mlsys/tasks/llm-classify-checkpoint-mha-gqa-mqa-from-shapes/gen_fixtures.py +1 -0
  3444. mlsys/tasks/llm-classify-checkpoint-mha-gqa-mqa-from-shapes/meta.json +22 -0
  3445. mlsys/tasks/llm-classify-checkpoint-mha-gqa-mqa-from-shapes/solution_ref.py +13 -0
  3446. mlsys/tasks/llm-classify-checkpoint-mha-gqa-mqa-from-shapes/starter.py +3 -0
  3447. mlsys/tasks/llm-classify-checkpoint-mha-gqa-mqa-from-shapes/task.md +47 -0
  3448. mlsys/tasks/llm-classify-extension-method-from-frequency-table/check.py +48 -0
  3449. mlsys/tasks/llm-classify-extension-method-from-frequency-table/gen_fixtures.py +1 -0
  3450. mlsys/tasks/llm-classify-extension-method-from-frequency-table/meta.json +22 -0
  3451. mlsys/tasks/llm-classify-extension-method-from-frequency-table/solution_ref.py +25 -0
  3452. mlsys/tasks/llm-classify-extension-method-from-frequency-table/starter.py +4 -0
  3453. mlsys/tasks/llm-classify-extension-method-from-frequency-table/task.md +67 -0
  3454. mlsys/tasks/llm-classify-ffn-variant-from-weight-shapes/check.py +48 -0
  3455. mlsys/tasks/llm-classify-ffn-variant-from-weight-shapes/gen_fixtures.py +1 -0
  3456. mlsys/tasks/llm-classify-ffn-variant-from-weight-shapes/meta.json +22 -0
  3457. mlsys/tasks/llm-classify-ffn-variant-from-weight-shapes/solution_ref.py +40 -0
  3458. mlsys/tasks/llm-classify-ffn-variant-from-weight-shapes/starter.py +2 -0
  3459. mlsys/tasks/llm-classify-ffn-variant-from-weight-shapes/task.md +58 -0
  3460. mlsys/tasks/llm-classify-mask-matrices-by-type/check.py +66 -0
  3461. mlsys/tasks/llm-classify-mask-matrices-by-type/gen_fixtures.py +1 -0
  3462. mlsys/tasks/llm-classify-mask-matrices-by-type/meta.json +22 -0
  3463. mlsys/tasks/llm-classify-mask-matrices-by-type/solution_ref.py +27 -0
  3464. mlsys/tasks/llm-classify-mask-matrices-by-type/starter.py +5 -0
  3465. mlsys/tasks/llm-classify-mask-matrices-by-type/task.md +50 -0
  3466. mlsys/tasks/llm-classify-positional-scheme-from-attention-logits/check.py +52 -0
  3467. mlsys/tasks/llm-classify-positional-scheme-from-attention-logits/gen_fixtures.py +1 -0
  3468. mlsys/tasks/llm-classify-positional-scheme-from-attention-logits/meta.json +22 -0
  3469. mlsys/tasks/llm-classify-positional-scheme-from-attention-logits/solution_ref.py +30 -0
  3470. mlsys/tasks/llm-classify-positional-scheme-from-attention-logits/starter.py +5 -0
  3471. mlsys/tasks/llm-classify-positional-scheme-from-attention-logits/task.md +49 -0
  3472. mlsys/tasks/llm-classify-pre-post-sandwich-norm-wirings/check.py +39 -0
  3473. mlsys/tasks/llm-classify-pre-post-sandwich-norm-wirings/gen_fixtures.py +1 -0
  3474. mlsys/tasks/llm-classify-pre-post-sandwich-norm-wirings/meta.json +22 -0
  3475. mlsys/tasks/llm-classify-pre-post-sandwich-norm-wirings/solution_ref.py +29 -0
  3476. mlsys/tasks/llm-classify-pre-post-sandwich-norm-wirings/starter.py +3 -0
  3477. mlsys/tasks/llm-classify-pre-post-sandwich-norm-wirings/task.md +59 -0
  3478. mlsys/tasks/llm-classify-pre-tokenization-regex-splits/check.py +37 -0
  3479. mlsys/tasks/llm-classify-pre-tokenization-regex-splits/gen_fixtures.py +1 -0
  3480. mlsys/tasks/llm-classify-pre-tokenization-regex-splits/meta.json +22 -0
  3481. mlsys/tasks/llm-classify-pre-tokenization-regex-splits/solution_ref.py +21 -0
  3482. mlsys/tasks/llm-classify-pre-tokenization-regex-splits/starter.py +16 -0
  3483. mlsys/tasks/llm-classify-pre-tokenization-regex-splits/task.md +36 -0
  3484. mlsys/tasks/llm-classify-quantization-granularity-from-scale-tensor-shape/check.py +34 -0
  3485. mlsys/tasks/llm-classify-quantization-granularity-from-scale-tensor-shape/gen_fixtures.py +1 -0
  3486. mlsys/tasks/llm-classify-quantization-granularity-from-scale-tensor-shape/meta.json +22 -0
  3487. mlsys/tasks/llm-classify-quantization-granularity-from-scale-tensor-shape/solution_ref.py +12 -0
  3488. mlsys/tasks/llm-classify-quantization-granularity-from-scale-tensor-shape/starter.py +2 -0
  3489. mlsys/tasks/llm-classify-quantization-granularity-from-scale-tensor-shape/task.md +54 -0
  3490. mlsys/tasks/llm-classify-which-sampler-produced-a-filtered-logit-vector/check.py +63 -0
  3491. mlsys/tasks/llm-classify-which-sampler-produced-a-filtered-logit-vector/gen_fixtures.py +1 -0
  3492. mlsys/tasks/llm-classify-which-sampler-produced-a-filtered-logit-vector/meta.json +22 -0
  3493. mlsys/tasks/llm-classify-which-sampler-produced-a-filtered-logit-vector/solution_ref.py +43 -0
  3494. mlsys/tasks/llm-classify-which-sampler-produced-a-filtered-logit-vector/starter.py +5 -0
  3495. mlsys/tasks/llm-classify-which-sampler-produced-a-filtered-logit-vector/task.md +43 -0
  3496. mlsys/tasks/llm-combine-per-block-partials-flash-merge/check.py +46 -0
  3497. mlsys/tasks/llm-combine-per-block-partials-flash-merge/gen_fixtures.py +1 -0
  3498. mlsys/tasks/llm-combine-per-block-partials-flash-merge/meta.json +22 -0
  3499. mlsys/tasks/llm-combine-per-block-partials-flash-merge/solution_ref.py +12 -0
  3500. mlsys/tasks/llm-combine-per-block-partials-flash-merge/starter.py +9 -0
  3501. mlsys/tasks/llm-combine-per-block-partials-flash-merge/task.md +52 -0
  3502. mlsys/tasks/llm-compare-penalty-before-vs-after-temperature-kl/check.py +41 -0
  3503. mlsys/tasks/llm-compare-penalty-before-vs-after-temperature-kl/gen_fixtures.py +1 -0
  3504. mlsys/tasks/llm-compare-penalty-before-vs-after-temperature-kl/meta.json +22 -0
  3505. mlsys/tasks/llm-compare-penalty-before-vs-after-temperature-kl/solution_ref.py +18 -0
  3506. mlsys/tasks/llm-compare-penalty-before-vs-after-temperature-kl/starter.py +4 -0
  3507. mlsys/tasks/llm-compare-penalty-before-vs-after-temperature-kl/task.md +58 -0
  3508. mlsys/tasks/llm-compare-pi-vs-ntk-within-trained-range-kl/check.py +23 -0
  3509. mlsys/tasks/llm-compare-pi-vs-ntk-within-trained-range-kl/gen_fixtures.py +1 -0
  3510. mlsys/tasks/llm-compare-pi-vs-ntk-within-trained-range-kl/meta.json +27 -0
  3511. mlsys/tasks/llm-compare-pi-vs-ntk-within-trained-range-kl/solution_ref.py +31 -0
  3512. mlsys/tasks/llm-compare-pi-vs-ntk-within-trained-range-kl/starter.py +4 -0
  3513. mlsys/tasks/llm-compare-pi-vs-ntk-within-trained-range-kl/task.md +55 -0
  3514. mlsys/tasks/llm-compare-top-k-vs-top-p-distributions-kl/check.py +74 -0
  3515. mlsys/tasks/llm-compare-top-k-vs-top-p-distributions-kl/gen_fixtures.py +1 -0
  3516. mlsys/tasks/llm-compare-top-k-vs-top-p-distributions-kl/meta.json +22 -0
  3517. mlsys/tasks/llm-compare-top-k-vs-top-p-distributions-kl/solution_ref.py +36 -0
  3518. mlsys/tasks/llm-compare-top-k-vs-top-p-distributions-kl/starter.py +4 -0
  3519. mlsys/tasks/llm-compare-top-k-vs-top-p-distributions-kl/task.md +54 -0
  3520. mlsys/tasks/llm-complex-number-rope-equivalence/check.py +51 -0
  3521. mlsys/tasks/llm-complex-number-rope-equivalence/gen_fixtures.py +1 -0
  3522. mlsys/tasks/llm-complex-number-rope-equivalence/meta.json +22 -0
  3523. mlsys/tasks/llm-complex-number-rope-equivalence/solution_ref.py +23 -0
  3524. mlsys/tasks/llm-complex-number-rope-equivalence/starter.py +5 -0
  3525. mlsys/tasks/llm-complex-number-rope-equivalence/task.md +80 -0
  3526. mlsys/tasks/llm-count-memory-passes-two-pass-vs-single-pass/check.py +32 -0
  3527. mlsys/tasks/llm-count-memory-passes-two-pass-vs-single-pass/gen_fixtures.py +1 -0
  3528. mlsys/tasks/llm-count-memory-passes-two-pass-vs-single-pass/meta.json +22 -0
  3529. mlsys/tasks/llm-count-memory-passes-two-pass-vs-single-pass/solution_ref.py +20 -0
  3530. mlsys/tasks/llm-count-memory-passes-two-pass-vs-single-pass/starter.py +2 -0
  3531. mlsys/tasks/llm-count-memory-passes-two-pass-vs-single-pass/task.md +45 -0
  3532. mlsys/tasks/llm-count-nan-inf-naive-vs-stable/check.py +22 -0
  3533. mlsys/tasks/llm-count-nan-inf-naive-vs-stable/gen_fixtures.py +1 -0
  3534. mlsys/tasks/llm-count-nan-inf-naive-vs-stable/meta.json +22 -0
  3535. mlsys/tasks/llm-count-nan-inf-naive-vs-stable/solution_ref.py +12 -0
  3536. mlsys/tasks/llm-count-nan-inf-naive-vs-stable/starter.py +4 -0
  3537. mlsys/tasks/llm-count-nan-inf-naive-vs-stable/task.md +48 -0
  3538. mlsys/tasks/llm-cross-entropy-from-logits-match/check.py +44 -0
  3539. mlsys/tasks/llm-cross-entropy-from-logits-match/gen_fixtures.py +1 -0
  3540. mlsys/tasks/llm-cross-entropy-from-logits-match/meta.json +22 -0
  3541. mlsys/tasks/llm-cross-entropy-from-logits-match/solution_ref.py +9 -0
  3542. mlsys/tasks/llm-cross-entropy-from-logits-match/starter.py +2 -0
  3543. mlsys/tasks/llm-cross-entropy-from-logits-match/task.md +49 -0
  3544. mlsys/tasks/llm-debug-accidental-mean-centering-in-rmsnorm/check.py +30 -0
  3545. mlsys/tasks/llm-debug-accidental-mean-centering-in-rmsnorm/gen_fixtures.py +1 -0
  3546. mlsys/tasks/llm-debug-accidental-mean-centering-in-rmsnorm/meta.json +22 -0
  3547. mlsys/tasks/llm-debug-accidental-mean-centering-in-rmsnorm/solution_ref.py +23 -0
  3548. mlsys/tasks/llm-debug-accidental-mean-centering-in-rmsnorm/starter.py +11 -0
  3549. mlsys/tasks/llm-debug-accidental-mean-centering-in-rmsnorm/task.md +50 -0
  3550. mlsys/tasks/llm-debug-bpe-merge-tie-break-priority-order/check.py +83 -0
  3551. mlsys/tasks/llm-debug-bpe-merge-tie-break-priority-order/gen_fixtures.py +1 -0
  3552. mlsys/tasks/llm-debug-bpe-merge-tie-break-priority-order/meta.json +22 -0
  3553. mlsys/tasks/llm-debug-bpe-merge-tie-break-priority-order/solution_ref.py +22 -0
  3554. mlsys/tasks/llm-debug-bpe-merge-tie-break-priority-order/starter.py +21 -0
  3555. mlsys/tasks/llm-debug-bpe-merge-tie-break-priority-order/task.md +58 -0
  3556. mlsys/tasks/llm-debug-cache-wrong-position-index-overwrite/check.py +56 -0
  3557. mlsys/tasks/llm-debug-cache-wrong-position-index-overwrite/gen_fixtures.py +1 -0
  3558. mlsys/tasks/llm-debug-cache-wrong-position-index-overwrite/meta.json +22 -0
  3559. mlsys/tasks/llm-debug-cache-wrong-position-index-overwrite/solution_ref.py +9 -0
  3560. mlsys/tasks/llm-debug-cache-wrong-position-index-overwrite/starter.py +14 -0
  3561. mlsys/tasks/llm-debug-cache-wrong-position-index-overwrite/task.md +54 -0
  3562. mlsys/tasks/llm-debug-ce-reduction-mean-over-tokens-vs-sum/check.py +51 -0
  3563. mlsys/tasks/llm-debug-ce-reduction-mean-over-tokens-vs-sum/gen_fixtures.py +1 -0
  3564. mlsys/tasks/llm-debug-ce-reduction-mean-over-tokens-vs-sum/meta.json +22 -0
  3565. mlsys/tasks/llm-debug-ce-reduction-mean-over-tokens-vs-sum/solution_ref.py +20 -0
  3566. mlsys/tasks/llm-debug-ce-reduction-mean-over-tokens-vs-sum/starter.py +16 -0
  3567. mlsys/tasks/llm-debug-ce-reduction-mean-over-tokens-vs-sum/task.md +47 -0
  3568. mlsys/tasks/llm-debug-eps-outside-the-sqrt/check.py +29 -0
  3569. mlsys/tasks/llm-debug-eps-outside-the-sqrt/gen_fixtures.py +1 -0
  3570. mlsys/tasks/llm-debug-eps-outside-the-sqrt/meta.json +16 -0
  3571. mlsys/tasks/llm-debug-eps-outside-the-sqrt/solution_ref.py +8 -0
  3572. mlsys/tasks/llm-debug-eps-outside-the-sqrt/starter.py +8 -0
  3573. mlsys/tasks/llm-debug-eps-outside-the-sqrt/task.md +54 -0
  3574. mlsys/tasks/llm-debug-interleaved-vs-half-split-rope-convention/check.py +39 -0
  3575. mlsys/tasks/llm-debug-interleaved-vs-half-split-rope-convention/gen_fixtures.py +1 -0
  3576. mlsys/tasks/llm-debug-interleaved-vs-half-split-rope-convention/meta.json +22 -0
  3577. mlsys/tasks/llm-debug-interleaved-vs-half-split-rope-convention/solution_ref.py +19 -0
  3578. mlsys/tasks/llm-debug-interleaved-vs-half-split-rope-convention/starter.py +21 -0
  3579. mlsys/tasks/llm-debug-interleaved-vs-half-split-rope-convention/task.md +64 -0
  3580. mlsys/tasks/llm-debug-mha-missing-transpose-head-seq-mix/check.py +57 -0
  3581. mlsys/tasks/llm-debug-mha-missing-transpose-head-seq-mix/gen_fixtures.py +1 -0
  3582. mlsys/tasks/llm-debug-mha-missing-transpose-head-seq-mix/meta.json +22 -0
  3583. mlsys/tasks/llm-debug-mha-missing-transpose-head-seq-mix/solution_ref.py +23 -0
  3584. mlsys/tasks/llm-debug-mha-missing-transpose-head-seq-mix/starter.py +25 -0
  3585. mlsys/tasks/llm-debug-mha-missing-transpose-head-seq-mix/task.md +74 -0
  3586. mlsys/tasks/llm-debug-missing-error-propagation/check.py +65 -0
  3587. mlsys/tasks/llm-debug-missing-error-propagation/gen_fixtures.py +1 -0
  3588. mlsys/tasks/llm-debug-missing-error-propagation/meta.json +22 -0
  3589. mlsys/tasks/llm-debug-missing-error-propagation/solution_ref.py +27 -0
  3590. mlsys/tasks/llm-debug-missing-error-propagation/starter.py +26 -0
  3591. mlsys/tasks/llm-debug-missing-error-propagation/task.md +84 -0
  3592. mlsys/tasks/llm-debug-missing-output-rescale-exp-m-old-m-new/check.py +66 -0
  3593. mlsys/tasks/llm-debug-missing-output-rescale-exp-m-old-m-new/gen_fixtures.py +1 -0
  3594. mlsys/tasks/llm-debug-missing-output-rescale-exp-m-old-m-new/meta.json +22 -0
  3595. mlsys/tasks/llm-debug-missing-output-rescale-exp-m-old-m-new/solution_ref.py +22 -0
  3596. mlsys/tasks/llm-debug-missing-output-rescale-exp-m-old-m-new/starter.py +22 -0
  3597. mlsys/tasks/llm-debug-missing-output-rescale-exp-m-old-m-new/task.md +87 -0
  3598. mlsys/tasks/llm-debug-missing-sqrt-d-embedding-scale/check.py +18 -0
  3599. mlsys/tasks/llm-debug-missing-sqrt-d-embedding-scale/gen_fixtures.py +1 -0
  3600. mlsys/tasks/llm-debug-missing-sqrt-d-embedding-scale/meta.json +22 -0
  3601. mlsys/tasks/llm-debug-missing-sqrt-d-embedding-scale/solution_ref.py +10 -0
  3602. mlsys/tasks/llm-debug-missing-sqrt-d-embedding-scale/starter.py +5 -0
  3603. mlsys/tasks/llm-debug-missing-sqrt-d-embedding-scale/task.md +25 -0
  3604. mlsys/tasks/llm-debug-missing-unscale-before-optimizer-step/check.py +37 -0
  3605. mlsys/tasks/llm-debug-missing-unscale-before-optimizer-step/gen_fixtures.py +1 -0
  3606. mlsys/tasks/llm-debug-missing-unscale-before-optimizer-step/meta.json +16 -0
  3607. mlsys/tasks/llm-debug-missing-unscale-before-optimizer-step/solution_ref.py +10 -0
  3608. mlsys/tasks/llm-debug-missing-unscale-before-optimizer-step/starter.py +17 -0
  3609. mlsys/tasks/llm-debug-missing-unscale-before-optimizer-step/task.md +66 -0
  3610. mlsys/tasks/llm-debug-naive-log-softmax-underflow/check.py +36 -0
  3611. mlsys/tasks/llm-debug-naive-log-softmax-underflow/gen_fixtures.py +1 -0
  3612. mlsys/tasks/llm-debug-naive-log-softmax-underflow/meta.json +27 -0
  3613. mlsys/tasks/llm-debug-naive-log-softmax-underflow/solution_ref.py +8 -0
  3614. mlsys/tasks/llm-debug-naive-log-softmax-underflow/starter.py +8 -0
  3615. mlsys/tasks/llm-debug-naive-log-softmax-underflow/task.md +81 -0
  3616. mlsys/tasks/llm-debug-off-by-one-causal-mask-future-leak/check.py +17 -0
  3617. mlsys/tasks/llm-debug-off-by-one-causal-mask-future-leak/gen_fixtures.py +1 -0
  3618. mlsys/tasks/llm-debug-off-by-one-causal-mask-future-leak/meta.json +22 -0
  3619. mlsys/tasks/llm-debug-off-by-one-causal-mask-future-leak/solution_ref.py +8 -0
  3620. mlsys/tasks/llm-debug-off-by-one-causal-mask-future-leak/starter.py +11 -0
  3621. mlsys/tasks/llm-debug-off-by-one-causal-mask-future-leak/task.md +54 -0
  3622. mlsys/tasks/llm-debug-pi-applied-to-wrong-axis-double-scaled/check.py +34 -0
  3623. mlsys/tasks/llm-debug-pi-applied-to-wrong-axis-double-scaled/gen_fixtures.py +1 -0
  3624. mlsys/tasks/llm-debug-pi-applied-to-wrong-axis-double-scaled/meta.json +16 -0
  3625. mlsys/tasks/llm-debug-pi-applied-to-wrong-axis-double-scaled/solution_ref.py +11 -0
  3626. mlsys/tasks/llm-debug-pi-applied-to-wrong-axis-double-scaled/starter.py +19 -0
  3627. mlsys/tasks/llm-debug-pi-applied-to-wrong-axis-double-scaled/task.md +65 -0
  3628. mlsys/tasks/llm-debug-post-norm-where-reference-is-pre-norm/check.py +43 -0
  3629. mlsys/tasks/llm-debug-post-norm-where-reference-is-pre-norm/gen_fixtures.py +1 -0
  3630. mlsys/tasks/llm-debug-post-norm-where-reference-is-pre-norm/meta.json +22 -0
  3631. mlsys/tasks/llm-debug-post-norm-where-reference-is-pre-norm/solution_ref.py +14 -0
  3632. mlsys/tasks/llm-debug-post-norm-where-reference-is-pre-norm/starter.py +15 -0
  3633. mlsys/tasks/llm-debug-post-norm-where-reference-is-pre-norm/task.md +86 -0
  3634. mlsys/tasks/llm-debug-repeat-vs-repeat-interleave-grouping/check.py +28 -0
  3635. mlsys/tasks/llm-debug-repeat-vs-repeat-interleave-grouping/gen_fixtures.py +1 -0
  3636. mlsys/tasks/llm-debug-repeat-vs-repeat-interleave-grouping/meta.json +22 -0
  3637. mlsys/tasks/llm-debug-repeat-vs-repeat-interleave-grouping/solution_ref.py +6 -0
  3638. mlsys/tasks/llm-debug-repeat-vs-repeat-interleave-grouping/starter.py +8 -0
  3639. mlsys/tasks/llm-debug-repeat-vs-repeat-interleave-grouping/task.md +76 -0
  3640. mlsys/tasks/llm-debug-repetition-penalty-sign-for-negative-logits/check.py +35 -0
  3641. mlsys/tasks/llm-debug-repetition-penalty-sign-for-negative-logits/gen_fixtures.py +1 -0
  3642. mlsys/tasks/llm-debug-repetition-penalty-sign-for-negative-logits/meta.json +22 -0
  3643. mlsys/tasks/llm-debug-repetition-penalty-sign-for-negative-logits/solution_ref.py +9 -0
  3644. mlsys/tasks/llm-debug-repetition-penalty-sign-for-negative-logits/starter.py +8 -0
  3645. mlsys/tasks/llm-debug-repetition-penalty-sign-for-negative-logits/task.md +59 -0
  3646. mlsys/tasks/llm-debug-scale-computed-over-wrong-axis/check.py +82 -0
  3647. mlsys/tasks/llm-debug-scale-computed-over-wrong-axis/gen_fixtures.py +6 -0
  3648. mlsys/tasks/llm-debug-scale-computed-over-wrong-axis/meta.json +19 -0
  3649. mlsys/tasks/llm-debug-scale-computed-over-wrong-axis/solution_ref.py +14 -0
  3650. mlsys/tasks/llm-debug-scale-computed-over-wrong-axis/starter.py +19 -0
  3651. mlsys/tasks/llm-debug-scale-computed-over-wrong-axis/task.md +73 -0
  3652. mlsys/tasks/llm-debug-scaling-weights-without-inverse-on-activations/check.py +40 -0
  3653. mlsys/tasks/llm-debug-scaling-weights-without-inverse-on-activations/gen_fixtures.py +1 -0
  3654. mlsys/tasks/llm-debug-scaling-weights-without-inverse-on-activations/meta.json +22 -0
  3655. mlsys/tasks/llm-debug-scaling-weights-without-inverse-on-activations/solution_ref.py +10 -0
  3656. mlsys/tasks/llm-debug-scaling-weights-without-inverse-on-activations/starter.py +11 -0
  3657. mlsys/tasks/llm-debug-scaling-weights-without-inverse-on-activations/task.md +69 -0
  3658. mlsys/tasks/llm-debug-softmax-over-wrong-query-axis/check.py +47 -0
  3659. mlsys/tasks/llm-debug-softmax-over-wrong-query-axis/gen_fixtures.py +1 -0
  3660. mlsys/tasks/llm-debug-softmax-over-wrong-query-axis/meta.json +22 -0
  3661. mlsys/tasks/llm-debug-softmax-over-wrong-query-axis/solution_ref.py +43 -0
  3662. mlsys/tasks/llm-debug-softmax-over-wrong-query-axis/starter.py +28 -0
  3663. mlsys/tasks/llm-debug-softmax-over-wrong-query-axis/task.md +54 -0
  3664. mlsys/tasks/llm-debug-swapped-gate-up-projections-in-swiglu/check.py +44 -0
  3665. mlsys/tasks/llm-debug-swapped-gate-up-projections-in-swiglu/gen_fixtures.py +1 -0
  3666. mlsys/tasks/llm-debug-swapped-gate-up-projections-in-swiglu/meta.json +22 -0
  3667. mlsys/tasks/llm-debug-swapped-gate-up-projections-in-swiglu/solution_ref.py +29 -0
  3668. mlsys/tasks/llm-debug-swapped-gate-up-projections-in-swiglu/starter.py +21 -0
  3669. mlsys/tasks/llm-debug-swapped-gate-up-projections-in-swiglu/task.md +63 -0
  3670. mlsys/tasks/llm-debug-top-p-boundary-inclusion/check.py +32 -0
  3671. mlsys/tasks/llm-debug-top-p-boundary-inclusion/gen_fixtures.py +1 -0
  3672. mlsys/tasks/llm-debug-top-p-boundary-inclusion/meta.json +22 -0
  3673. mlsys/tasks/llm-debug-top-p-boundary-inclusion/solution_ref.py +10 -0
  3674. mlsys/tasks/llm-debug-top-p-boundary-inclusion/starter.py +12 -0
  3675. mlsys/tasks/llm-debug-top-p-boundary-inclusion/task.md +59 -0
  3676. mlsys/tasks/llm-debug-unbiased-n-1-vs-biased-n-variance/check.py +20 -0
  3677. mlsys/tasks/llm-debug-unbiased-n-1-vs-biased-n-variance/gen_fixtures.py +1 -0
  3678. mlsys/tasks/llm-debug-unbiased-n-1-vs-biased-n-variance/meta.json +22 -0
  3679. mlsys/tasks/llm-debug-unbiased-n-1-vs-biased-n-variance/solution_ref.py +22 -0
  3680. mlsys/tasks/llm-debug-unbiased-n-1-vs-biased-n-variance/starter.py +12 -0
  3681. mlsys/tasks/llm-debug-unbiased-n-1-vs-biased-n-variance/task.md +72 -0
  3682. mlsys/tasks/llm-debug-untied-vs-tied-head-mismatch/check.py +21 -0
  3683. mlsys/tasks/llm-debug-untied-vs-tied-head-mismatch/gen_fixtures.py +1 -0
  3684. mlsys/tasks/llm-debug-untied-vs-tied-head-mismatch/meta.json +22 -0
  3685. mlsys/tasks/llm-debug-untied-vs-tied-head-mismatch/solution_ref.py +5 -0
  3686. mlsys/tasks/llm-debug-untied-vs-tied-head-mismatch/starter.py +7 -0
  3687. mlsys/tasks/llm-debug-untied-vs-tied-head-mismatch/task.md +46 -0
  3688. mlsys/tasks/llm-debug-wrong-alibi-slope-geometric-ratio/check.py +20 -0
  3689. mlsys/tasks/llm-debug-wrong-alibi-slope-geometric-ratio/gen_fixtures.py +1 -0
  3690. mlsys/tasks/llm-debug-wrong-alibi-slope-geometric-ratio/meta.json +22 -0
  3691. mlsys/tasks/llm-debug-wrong-alibi-slope-geometric-ratio/solution_ref.py +6 -0
  3692. mlsys/tasks/llm-debug-wrong-alibi-slope-geometric-ratio/starter.py +9 -0
  3693. mlsys/tasks/llm-debug-wrong-alibi-slope-geometric-ratio/task.md +61 -0
  3694. mlsys/tasks/llm-decode-arithmetic-intensity-closed-form/check.py +34 -0
  3695. mlsys/tasks/llm-decode-arithmetic-intensity-closed-form/gen_fixtures.py +1 -0
  3696. mlsys/tasks/llm-decode-arithmetic-intensity-closed-form/meta.json +27 -0
  3697. mlsys/tasks/llm-decode-arithmetic-intensity-closed-form/solution_ref.py +18 -0
  3698. mlsys/tasks/llm-decode-arithmetic-intensity-closed-form/starter.py +5 -0
  3699. mlsys/tasks/llm-decode-arithmetic-intensity-closed-form/task.md +87 -0
  3700. mlsys/tasks/llm-deepnorm-sandwich-scaled-residuals-to-stability-target/check.py +27 -0
  3701. mlsys/tasks/llm-deepnorm-sandwich-scaled-residuals-to-stability-target/gen_fixtures.py +1 -0
  3702. mlsys/tasks/llm-deepnorm-sandwich-scaled-residuals-to-stability-target/meta.json +22 -0
  3703. mlsys/tasks/llm-deepnorm-sandwich-scaled-residuals-to-stability-target/solution_ref.py +24 -0
  3704. mlsys/tasks/llm-deepnorm-sandwich-scaled-residuals-to-stability-target/starter.py +4 -0
  3705. mlsys/tasks/llm-deepnorm-sandwich-scaled-residuals-to-stability-target/task.md +41 -0
  3706. mlsys/tasks/llm-embedding-lookup-gather-rows/check.py +21 -0
  3707. mlsys/tasks/llm-embedding-lookup-gather-rows/gen_fixtures.py +1 -0
  3708. mlsys/tasks/llm-embedding-lookup-gather-rows/meta.json +22 -0
  3709. mlsys/tasks/llm-embedding-lookup-gather-rows/solution_ref.py +5 -0
  3710. mlsys/tasks/llm-embedding-lookup-gather-rows/starter.py +2 -0
  3711. mlsys/tasks/llm-embedding-lookup-gather-rows/task.md +43 -0
  3712. mlsys/tasks/llm-ffn-vs-attention-flop-crossover-with-seq-len/check.py +27 -0
  3713. mlsys/tasks/llm-ffn-vs-attention-flop-crossover-with-seq-len/gen_fixtures.py +1 -0
  3714. mlsys/tasks/llm-ffn-vs-attention-flop-crossover-with-seq-len/meta.json +27 -0
  3715. mlsys/tasks/llm-ffn-vs-attention-flop-crossover-with-seq-len/solution_ref.py +7 -0
  3716. mlsys/tasks/llm-ffn-vs-attention-flop-crossover-with-seq-len/starter.py +2 -0
  3717. mlsys/tasks/llm-ffn-vs-attention-flop-crossover-with-seq-len/task.md +66 -0
  3718. mlsys/tasks/llm-fix-all-masked-row-nan-fully-padded-query/check.py +75 -0
  3719. mlsys/tasks/llm-fix-all-masked-row-nan-fully-padded-query/gen_fixtures.py +1 -0
  3720. mlsys/tasks/llm-fix-all-masked-row-nan-fully-padded-query/meta.json +22 -0
  3721. mlsys/tasks/llm-fix-all-masked-row-nan-fully-padded-query/solution_ref.py +22 -0
  3722. mlsys/tasks/llm-fix-all-masked-row-nan-fully-padded-query/starter.py +21 -0
  3723. mlsys/tasks/llm-fix-all-masked-row-nan-fully-padded-query/task.md +66 -0
  3724. mlsys/tasks/llm-flop-memory-savings-rmsnorm-vs-layernorm/check.py +31 -0
  3725. mlsys/tasks/llm-flop-memory-savings-rmsnorm-vs-layernorm/gen_fixtures.py +1 -0
  3726. mlsys/tasks/llm-flop-memory-savings-rmsnorm-vs-layernorm/meta.json +22 -0
  3727. mlsys/tasks/llm-flop-memory-savings-rmsnorm-vs-layernorm/solution_ref.py +12 -0
  3728. mlsys/tasks/llm-flop-memory-savings-rmsnorm-vs-layernorm/starter.py +2 -0
  3729. mlsys/tasks/llm-flop-memory-savings-rmsnorm-vs-layernorm/task.md +59 -0
  3730. mlsys/tasks/llm-footprint-ratio-int8-int4-fp8-vs-fp16/check.py +35 -0
  3731. mlsys/tasks/llm-footprint-ratio-int8-int4-fp8-vs-fp16/gen_fixtures.py +1 -0
  3732. mlsys/tasks/llm-footprint-ratio-int8-int4-fp8-vs-fp16/meta.json +22 -0
  3733. mlsys/tasks/llm-footprint-ratio-int8-int4-fp8-vs-fp16/solution_ref.py +14 -0
  3734. mlsys/tasks/llm-footprint-ratio-int8-int4-fp8-vs-fp16/starter.py +2 -0
  3735. mlsys/tasks/llm-footprint-ratio-int8-int4-fp8-vs-fp16/task.md +53 -0
  3736. mlsys/tasks/llm-fp16-loss-underflow-accumulation/check.py +137 -0
  3737. mlsys/tasks/llm-fp16-loss-underflow-accumulation/gen_fixtures.py +6 -0
  3738. mlsys/tasks/llm-fp16-loss-underflow-accumulation/meta.json +34 -0
  3739. mlsys/tasks/llm-fp16-loss-underflow-accumulation/solution_ref.py +31 -0
  3740. mlsys/tasks/llm-fp16-loss-underflow-accumulation/starter.py +19 -0
  3741. mlsys/tasks/llm-fp16-loss-underflow-accumulation/task.md +104 -0
  3742. mlsys/tasks/llm-fp16-vs-bf16-rounding-of-a-fixture/check.py +33 -0
  3743. mlsys/tasks/llm-fp16-vs-bf16-rounding-of-a-fixture/gen_fixtures.py +1 -0
  3744. mlsys/tasks/llm-fp16-vs-bf16-rounding-of-a-fixture/meta.json +27 -0
  3745. mlsys/tasks/llm-fp16-vs-bf16-rounding-of-a-fixture/solution_ref.py +28 -0
  3746. mlsys/tasks/llm-fp16-vs-bf16-rounding-of-a-fixture/starter.py +6 -0
  3747. mlsys/tasks/llm-fp16-vs-bf16-rounding-of-a-fixture/task.md +51 -0
  3748. mlsys/tasks/llm-fp32-upcast-vs-fp16-in-place-rmsnorm/check.py +27 -0
  3749. mlsys/tasks/llm-fp32-upcast-vs-fp16-in-place-rmsnorm/gen_fixtures.py +1 -0
  3750. mlsys/tasks/llm-fp32-upcast-vs-fp16-in-place-rmsnorm/meta.json +22 -0
  3751. mlsys/tasks/llm-fp32-upcast-vs-fp16-in-place-rmsnorm/solution_ref.py +30 -0
  3752. mlsys/tasks/llm-fp32-upcast-vs-fp16-in-place-rmsnorm/starter.py +4 -0
  3753. mlsys/tasks/llm-fp32-upcast-vs-fp16-in-place-rmsnorm/task.md +46 -0
  3754. mlsys/tasks/llm-fp32-vs-fp16-accumulation-of-long-dot-product/check.py +63 -0
  3755. mlsys/tasks/llm-fp32-vs-fp16-accumulation-of-long-dot-product/gen_fixtures.py +1 -0
  3756. mlsys/tasks/llm-fp32-vs-fp16-accumulation-of-long-dot-product/meta.json +27 -0
  3757. mlsys/tasks/llm-fp32-vs-fp16-accumulation-of-long-dot-product/solution_ref.py +10 -0
  3758. mlsys/tasks/llm-fp32-vs-fp16-accumulation-of-long-dot-product/starter.py +4 -0
  3759. mlsys/tasks/llm-fp32-vs-fp16-accumulation-of-long-dot-product/task.md +73 -0
  3760. mlsys/tasks/llm-fp32-vs-fp16-score-accumulation-divergence/check.py +47 -0
  3761. mlsys/tasks/llm-fp32-vs-fp16-score-accumulation-divergence/gen_fixtures.py +1 -0
  3762. mlsys/tasks/llm-fp32-vs-fp16-score-accumulation-divergence/meta.json +27 -0
  3763. mlsys/tasks/llm-fp32-vs-fp16-score-accumulation-divergence/solution_ref.py +24 -0
  3764. mlsys/tasks/llm-fp32-vs-fp16-score-accumulation-divergence/starter.py +4 -0
  3765. mlsys/tasks/llm-fp32-vs-fp16-score-accumulation-divergence/task.md +89 -0
  3766. mlsys/tasks/llm-fp8-e4m3-e5m2-quantize-round-trip/check.py +77 -0
  3767. mlsys/tasks/llm-fp8-e4m3-e5m2-quantize-round-trip/gen_fixtures.py +1 -0
  3768. mlsys/tasks/llm-fp8-e4m3-e5m2-quantize-round-trip/meta.json +22 -0
  3769. mlsys/tasks/llm-fp8-e4m3-e5m2-quantize-round-trip/solution_ref.py +53 -0
  3770. mlsys/tasks/llm-fp8-e4m3-e5m2-quantize-round-trip/starter.py +4 -0
  3771. mlsys/tasks/llm-fp8-e4m3-e5m2-quantize-round-trip/task.md +61 -0
  3772. mlsys/tasks/llm-fp8-e4m3-vs-e5m2-representable-range/check.py +70 -0
  3773. mlsys/tasks/llm-fp8-e4m3-vs-e5m2-representable-range/gen_fixtures.py +1 -0
  3774. mlsys/tasks/llm-fp8-e4m3-vs-e5m2-representable-range/meta.json +22 -0
  3775. mlsys/tasks/llm-fp8-e4m3-vs-e5m2-representable-range/solution_ref.py +40 -0
  3776. mlsys/tasks/llm-fp8-e4m3-vs-e5m2-representable-range/starter.py +31 -0
  3777. mlsys/tasks/llm-fp8-e4m3-vs-e5m2-representable-range/task.md +86 -0
  3778. mlsys/tasks/llm-frequency-presence-penalty-openai-formula/check.py +36 -0
  3779. mlsys/tasks/llm-frequency-presence-penalty-openai-formula/gen_fixtures.py +1 -0
  3780. mlsys/tasks/llm-frequency-presence-penalty-openai-formula/meta.json +22 -0
  3781. mlsys/tasks/llm-frequency-presence-penalty-openai-formula/solution_ref.py +39 -0
  3782. mlsys/tasks/llm-frequency-presence-penalty-openai-formula/starter.py +4 -0
  3783. mlsys/tasks/llm-frequency-presence-penalty-openai-formula/task.md +82 -0
  3784. mlsys/tasks/llm-from-scratch-sdpa-no-matmul-trace-enforced/check.py +173 -0
  3785. mlsys/tasks/llm-from-scratch-sdpa-no-matmul-trace-enforced/gen_fixtures.py +1 -0
  3786. mlsys/tasks/llm-from-scratch-sdpa-no-matmul-trace-enforced/meta.json +32 -0
  3787. mlsys/tasks/llm-from-scratch-sdpa-no-matmul-trace-enforced/solution_ref.py +47 -0
  3788. mlsys/tasks/llm-from-scratch-sdpa-no-matmul-trace-enforced/starter.py +12 -0
  3789. mlsys/tasks/llm-from-scratch-sdpa-no-matmul-trace-enforced/task.md +72 -0
  3790. mlsys/tasks/llm-full-mha-forward-match/check.py +41 -0
  3791. mlsys/tasks/llm-full-mha-forward-match/gen_fixtures.py +1 -0
  3792. mlsys/tasks/llm-full-mha-forward-match/meta.json +22 -0
  3793. mlsys/tasks/llm-full-mha-forward-match/solution_ref.py +47 -0
  3794. mlsys/tasks/llm-full-mha-forward-match/starter.py +5 -0
  3795. mlsys/tasks/llm-full-mha-forward-match/task.md +53 -0
  3796. mlsys/tasks/llm-fuse-gate-up-into-one-matmul-then-split/check.py +41 -0
  3797. mlsys/tasks/llm-fuse-gate-up-into-one-matmul-then-split/gen_fixtures.py +1 -0
  3798. mlsys/tasks/llm-fuse-gate-up-into-one-matmul-then-split/meta.json +27 -0
  3799. mlsys/tasks/llm-fuse-gate-up-into-one-matmul-then-split/solution_ref.py +33 -0
  3800. mlsys/tasks/llm-fuse-gate-up-into-one-matmul-then-split/starter.py +6 -0
  3801. mlsys/tasks/llm-fuse-gate-up-into-one-matmul-then-split/task.md +86 -0
  3802. mlsys/tasks/llm-fuse-mask-scale-softmax-over-streamed-key-block/check.py +29 -0
  3803. mlsys/tasks/llm-fuse-mask-scale-softmax-over-streamed-key-block/gen_fixtures.py +1 -0
  3804. mlsys/tasks/llm-fuse-mask-scale-softmax-over-streamed-key-block/meta.json +22 -0
  3805. mlsys/tasks/llm-fuse-mask-scale-softmax-over-streamed-key-block/solution_ref.py +8 -0
  3806. mlsys/tasks/llm-fuse-mask-scale-softmax-over-streamed-key-block/starter.py +9 -0
  3807. mlsys/tasks/llm-fuse-mask-scale-softmax-over-streamed-key-block/task.md +43 -0
  3808. mlsys/tasks/llm-fuse-normalize-affine-no-python-inner-loop/check.py +71 -0
  3809. mlsys/tasks/llm-fuse-normalize-affine-no-python-inner-loop/gen_fixtures.py +1 -0
  3810. mlsys/tasks/llm-fuse-normalize-affine-no-python-inner-loop/meta.json +27 -0
  3811. mlsys/tasks/llm-fuse-normalize-affine-no-python-inner-loop/solution_ref.py +14 -0
  3812. mlsys/tasks/llm-fuse-normalize-affine-no-python-inner-loop/starter.py +16 -0
  3813. mlsys/tasks/llm-fuse-normalize-affine-no-python-inner-loop/task.md +63 -0
  3814. mlsys/tasks/llm-fuse-rope-into-the-qk-score/check.py +53 -0
  3815. mlsys/tasks/llm-fuse-rope-into-the-qk-score/gen_fixtures.py +1 -0
  3816. mlsys/tasks/llm-fuse-rope-into-the-qk-score/meta.json +22 -0
  3817. mlsys/tasks/llm-fuse-rope-into-the-qk-score/solution_ref.py +28 -0
  3818. mlsys/tasks/llm-fuse-rope-into-the-qk-score/starter.py +6 -0
  3819. mlsys/tasks/llm-fuse-rope-into-the-qk-score/task.md +74 -0
  3820. mlsys/tasks/llm-fuse-wq-wk-wv-into-one-qkv-matmul/check.py +45 -0
  3821. mlsys/tasks/llm-fuse-wq-wk-wv-into-one-qkv-matmul/gen_fixtures.py +1 -0
  3822. mlsys/tasks/llm-fuse-wq-wk-wv-into-one-qkv-matmul/meta.json +27 -0
  3823. mlsys/tasks/llm-fuse-wq-wk-wv-into-one-qkv-matmul/solution_ref.py +8 -0
  3824. mlsys/tasks/llm-fuse-wq-wk-wv-into-one-qkv-matmul/starter.py +4 -0
  3825. mlsys/tasks/llm-fuse-wq-wk-wv-into-one-qkv-matmul/task.md +78 -0
  3826. mlsys/tasks/llm-fused-padding-causal-window-decode-mask/check.py +39 -0
  3827. mlsys/tasks/llm-fused-padding-causal-window-decode-mask/gen_fixtures.py +1 -0
  3828. mlsys/tasks/llm-fused-padding-causal-window-decode-mask/meta.json +22 -0
  3829. mlsys/tasks/llm-fused-padding-causal-window-decode-mask/solution_ref.py +17 -0
  3830. mlsys/tasks/llm-fused-padding-causal-window-decode-mask/starter.py +9 -0
  3831. mlsys/tasks/llm-fused-padding-causal-window-decode-mask/task.md +41 -0
  3832. mlsys/tasks/llm-fused-qkv-rope-kv-cache-write-in-one-pass/check.py +114 -0
  3833. mlsys/tasks/llm-fused-qkv-rope-kv-cache-write-in-one-pass/gen_fixtures.py +1 -0
  3834. mlsys/tasks/llm-fused-qkv-rope-kv-cache-write-in-one-pass/meta.json +22 -0
  3835. mlsys/tasks/llm-fused-qkv-rope-kv-cache-write-in-one-pass/solution_ref.py +55 -0
  3836. mlsys/tasks/llm-fused-qkv-rope-kv-cache-write-in-one-pass/starter.py +5 -0
  3837. mlsys/tasks/llm-fused-qkv-rope-kv-cache-write-in-one-pass/task.md +83 -0
  3838. mlsys/tasks/llm-fused-temperature-stable-softmax-single-pass/check.py +52 -0
  3839. mlsys/tasks/llm-fused-temperature-stable-softmax-single-pass/gen_fixtures.py +1 -0
  3840. mlsys/tasks/llm-fused-temperature-stable-softmax-single-pass/meta.json +27 -0
  3841. mlsys/tasks/llm-fused-temperature-stable-softmax-single-pass/solution_ref.py +22 -0
  3842. mlsys/tasks/llm-fused-temperature-stable-softmax-single-pass/starter.py +14 -0
  3843. mlsys/tasks/llm-fused-temperature-stable-softmax-single-pass/task.md +76 -0
  3844. mlsys/tasks/llm-geglu-ffn-match/check.py +25 -0
  3845. mlsys/tasks/llm-geglu-ffn-match/gen_fixtures.py +1 -0
  3846. mlsys/tasks/llm-geglu-ffn-match/meta.json +22 -0
  3847. mlsys/tasks/llm-geglu-ffn-match/solution_ref.py +12 -0
  3848. mlsys/tasks/llm-geglu-ffn-match/starter.py +4 -0
  3849. mlsys/tasks/llm-geglu-ffn-match/task.md +58 -0
  3850. mlsys/tasks/llm-gptq-column-update-with-error-compensation/check.py +56 -0
  3851. mlsys/tasks/llm-gptq-column-update-with-error-compensation/gen_fixtures.py +1 -0
  3852. mlsys/tasks/llm-gptq-column-update-with-error-compensation/meta.json +22 -0
  3853. mlsys/tasks/llm-gptq-column-update-with-error-compensation/solution_ref.py +45 -0
  3854. mlsys/tasks/llm-gptq-column-update-with-error-compensation/starter.py +6 -0
  3855. mlsys/tasks/llm-gptq-column-update-with-error-compensation/task.md +69 -0
  3856. mlsys/tasks/llm-gptq-vs-rtn-output-error-on-same-fixture/check.py +105 -0
  3857. mlsys/tasks/llm-gptq-vs-rtn-output-error-on-same-fixture/fixtures/W.npy +0 -0
  3858. mlsys/tasks/llm-gptq-vs-rtn-output-error-on-same-fixture/fixtures/X.npy +0 -0
  3859. mlsys/tasks/llm-gptq-vs-rtn-output-error-on-same-fixture/gen_fixtures.py +28 -0
  3860. mlsys/tasks/llm-gptq-vs-rtn-output-error-on-same-fixture/meta.json +36 -0
  3861. mlsys/tasks/llm-gptq-vs-rtn-output-error-on-same-fixture/solution_ref.py +43 -0
  3862. mlsys/tasks/llm-gptq-vs-rtn-output-error-on-same-fixture/starter.py +19 -0
  3863. mlsys/tasks/llm-gptq-vs-rtn-output-error-on-same-fixture/task.md +95 -0
  3864. mlsys/tasks/llm-gqa-each-kv-head-serves-g-query-heads/check.py +32 -0
  3865. mlsys/tasks/llm-gqa-each-kv-head-serves-g-query-heads/gen_fixtures.py +1 -0
  3866. mlsys/tasks/llm-gqa-each-kv-head-serves-g-query-heads/meta.json +22 -0
  3867. mlsys/tasks/llm-gqa-each-kv-head-serves-g-query-heads/solution_ref.py +12 -0
  3868. mlsys/tasks/llm-gqa-each-kv-head-serves-g-query-heads/starter.py +6 -0
  3869. mlsys/tasks/llm-gqa-each-kv-head-serves-g-query-heads/task.md +43 -0
  3870. mlsys/tasks/llm-gqa-effect-on-decode-arithmetic-intensity/check.py +24 -0
  3871. mlsys/tasks/llm-gqa-effect-on-decode-arithmetic-intensity/gen_fixtures.py +1 -0
  3872. mlsys/tasks/llm-gqa-effect-on-decode-arithmetic-intensity/meta.json +22 -0
  3873. mlsys/tasks/llm-gqa-effect-on-decode-arithmetic-intensity/solution_ref.py +24 -0
  3874. mlsys/tasks/llm-gqa-effect-on-decode-arithmetic-intensity/starter.py +2 -0
  3875. mlsys/tasks/llm-gqa-effect-on-decode-arithmetic-intensity/task.md +43 -0
  3876. mlsys/tasks/llm-greedy-argmax-next-token/check.py +22 -0
  3877. mlsys/tasks/llm-greedy-argmax-next-token/gen_fixtures.py +1 -0
  3878. mlsys/tasks/llm-greedy-argmax-next-token/meta.json +22 -0
  3879. mlsys/tasks/llm-greedy-argmax-next-token/solution_ref.py +7 -0
  3880. mlsys/tasks/llm-greedy-argmax-next-token/starter.py +4 -0
  3881. mlsys/tasks/llm-greedy-argmax-next-token/task.md +34 -0
  3882. mlsys/tasks/llm-grid-search-optimal-awq-scale-min-output-mse/check.py +61 -0
  3883. mlsys/tasks/llm-grid-search-optimal-awq-scale-min-output-mse/gen_fixtures.py +1 -0
  3884. mlsys/tasks/llm-grid-search-optimal-awq-scale-min-output-mse/meta.json +22 -0
  3885. mlsys/tasks/llm-grid-search-optimal-awq-scale-min-output-mse/solution_ref.py +29 -0
  3886. mlsys/tasks/llm-grid-search-optimal-awq-scale-min-output-mse/starter.py +4 -0
  3887. mlsys/tasks/llm-grid-search-optimal-awq-scale-min-output-mse/task.md +74 -0
  3888. mlsys/tasks/llm-group-wise-int4-quantization/check.py +59 -0
  3889. mlsys/tasks/llm-group-wise-int4-quantization/gen_fixtures.py +1 -0
  3890. mlsys/tasks/llm-group-wise-int4-quantization/meta.json +27 -0
  3891. mlsys/tasks/llm-group-wise-int4-quantization/solution_ref.py +19 -0
  3892. mlsys/tasks/llm-group-wise-int4-quantization/starter.py +4 -0
  3893. mlsys/tasks/llm-group-wise-int4-quantization/task.md +88 -0
  3894. mlsys/tasks/llm-hbm-bytes-ratio-flash-vs-naive-attention/check.py +36 -0
  3895. mlsys/tasks/llm-hbm-bytes-ratio-flash-vs-naive-attention/gen_fixtures.py +1 -0
  3896. mlsys/tasks/llm-hbm-bytes-ratio-flash-vs-naive-attention/meta.json +22 -0
  3897. mlsys/tasks/llm-hbm-bytes-ratio-flash-vs-naive-attention/solution_ref.py +25 -0
  3898. mlsys/tasks/llm-hbm-bytes-ratio-flash-vs-naive-attention/starter.py +5 -0
  3899. mlsys/tasks/llm-hbm-bytes-ratio-flash-vs-naive-attention/task.md +83 -0
  3900. mlsys/tasks/llm-hessian-based-column-ordering/check.py +22 -0
  3901. mlsys/tasks/llm-hessian-based-column-ordering/gen_fixtures.py +1 -0
  3902. mlsys/tasks/llm-hessian-based-column-ordering/meta.json +22 -0
  3903. mlsys/tasks/llm-hessian-based-column-ordering/solution_ref.py +17 -0
  3904. mlsys/tasks/llm-hessian-based-column-ordering/starter.py +4 -0
  3905. mlsys/tasks/llm-hessian-based-column-ordering/task.md +54 -0
  3906. mlsys/tasks/llm-identify-salient-channels-by-activation-magnitude/check.py +35 -0
  3907. mlsys/tasks/llm-identify-salient-channels-by-activation-magnitude/gen_fixtures.py +1 -0
  3908. mlsys/tasks/llm-identify-salient-channels-by-activation-magnitude/meta.json +22 -0
  3909. mlsys/tasks/llm-identify-salient-channels-by-activation-magnitude/solution_ref.py +16 -0
  3910. mlsys/tasks/llm-identify-salient-channels-by-activation-magnitude/starter.py +4 -0
  3911. mlsys/tasks/llm-identify-salient-channels-by-activation-magnitude/task.md +48 -0
  3912. mlsys/tasks/llm-ignore-index-padding-masking-in-ce/check.py +38 -0
  3913. mlsys/tasks/llm-ignore-index-padding-masking-in-ce/gen_fixtures.py +1 -0
  3914. mlsys/tasks/llm-ignore-index-padding-masking-in-ce/meta.json +22 -0
  3915. mlsys/tasks/llm-ignore-index-padding-masking-in-ce/solution_ref.py +17 -0
  3916. mlsys/tasks/llm-ignore-index-padding-masking-in-ce/starter.py +4 -0
  3917. mlsys/tasks/llm-ignore-index-padding-masking-in-ce/task.md +62 -0
  3918. mlsys/tasks/llm-kahan-compensated-summation-vs-naive-fp16/check.py +32 -0
  3919. mlsys/tasks/llm-kahan-compensated-summation-vs-naive-fp16/gen_fixtures.py +1 -0
  3920. mlsys/tasks/llm-kahan-compensated-summation-vs-naive-fp16/meta.json +22 -0
  3921. mlsys/tasks/llm-kahan-compensated-summation-vs-naive-fp16/solution_ref.py +12 -0
  3922. mlsys/tasks/llm-kahan-compensated-summation-vs-naive-fp16/starter.py +4 -0
  3923. mlsys/tasks/llm-kahan-compensated-summation-vs-naive-fp16/task.md +78 -0
  3924. mlsys/tasks/llm-kl-stable-fp32-vs-naive-fp16-softmax/check.py +40 -0
  3925. mlsys/tasks/llm-kl-stable-fp32-vs-naive-fp16-softmax/gen_fixtures.py +1 -0
  3926. mlsys/tasks/llm-kl-stable-fp32-vs-naive-fp16-softmax/meta.json +22 -0
  3927. mlsys/tasks/llm-kl-stable-fp32-vs-naive-fp16-softmax/solution_ref.py +29 -0
  3928. mlsys/tasks/llm-kl-stable-fp32-vs-naive-fp16-softmax/starter.py +4 -0
  3929. mlsys/tasks/llm-kl-stable-fp32-vs-naive-fp16-softmax/task.md +47 -0
  3930. mlsys/tasks/llm-kv-bytes-moved-per-decode-step/check.py +36 -0
  3931. mlsys/tasks/llm-kv-bytes-moved-per-decode-step/gen_fixtures.py +1 -0
  3932. mlsys/tasks/llm-kv-bytes-moved-per-decode-step/meta.json +22 -0
  3933. mlsys/tasks/llm-kv-bytes-moved-per-decode-step/solution_ref.py +7 -0
  3934. mlsys/tasks/llm-kv-bytes-moved-per-decode-step/starter.py +3 -0
  3935. mlsys/tasks/llm-kv-bytes-moved-per-decode-step/task.md +80 -0
  3936. mlsys/tasks/llm-kv-cache-append-decode-step-matches-full-recompute/check.py +40 -0
  3937. mlsys/tasks/llm-kv-cache-append-decode-step-matches-full-recompute/gen_fixtures.py +1 -0
  3938. mlsys/tasks/llm-kv-cache-append-decode-step-matches-full-recompute/meta.json +22 -0
  3939. mlsys/tasks/llm-kv-cache-append-decode-step-matches-full-recompute/solution_ref.py +36 -0
  3940. mlsys/tasks/llm-kv-cache-append-decode-step-matches-full-recompute/starter.py +4 -0
  3941. mlsys/tasks/llm-kv-cache-append-decode-step-matches-full-recompute/task.md +74 -0
  3942. mlsys/tasks/llm-kv-cache-byte-model-layers-heads-d-ctx-dtype/check.py +27 -0
  3943. mlsys/tasks/llm-kv-cache-byte-model-layers-heads-d-ctx-dtype/gen_fixtures.py +1 -0
  3944. mlsys/tasks/llm-kv-cache-byte-model-layers-heads-d-ctx-dtype/meta.json +22 -0
  3945. mlsys/tasks/llm-kv-cache-byte-model-layers-heads-d-ctx-dtype/solution_ref.py +31 -0
  3946. mlsys/tasks/llm-kv-cache-byte-model-layers-heads-d-ctx-dtype/starter.py +4 -0
  3947. mlsys/tasks/llm-kv-cache-byte-model-layers-heads-d-ctx-dtype/task.md +38 -0
  3948. mlsys/tasks/llm-kv-cache-bytes-mha-vs-gqa-vs-mqa/check.py +59 -0
  3949. mlsys/tasks/llm-kv-cache-bytes-mha-vs-gqa-vs-mqa/gen_fixtures.py +1 -0
  3950. mlsys/tasks/llm-kv-cache-bytes-mha-vs-gqa-vs-mqa/meta.json +27 -0
  3951. mlsys/tasks/llm-kv-cache-bytes-mha-vs-gqa-vs-mqa/solution_ref.py +32 -0
  3952. mlsys/tasks/llm-kv-cache-bytes-mha-vs-gqa-vs-mqa/starter.py +6 -0
  3953. mlsys/tasks/llm-kv-cache-bytes-mha-vs-gqa-vs-mqa/task.md +92 -0
  3954. mlsys/tasks/llm-label-smoothing-cross-entropy/check.py +38 -0
  3955. mlsys/tasks/llm-label-smoothing-cross-entropy/gen_fixtures.py +1 -0
  3956. mlsys/tasks/llm-label-smoothing-cross-entropy/meta.json +22 -0
  3957. mlsys/tasks/llm-label-smoothing-cross-entropy/solution_ref.py +37 -0
  3958. mlsys/tasks/llm-label-smoothing-cross-entropy/starter.py +4 -0
  3959. mlsys/tasks/llm-label-smoothing-cross-entropy/task.md +59 -0
  3960. mlsys/tasks/llm-layernorm-backward-from-scratch/check.py +44 -0
  3961. mlsys/tasks/llm-layernorm-backward-from-scratch/gen_fixtures.py +1 -0
  3962. mlsys/tasks/llm-layernorm-backward-from-scratch/meta.json +22 -0
  3963. mlsys/tasks/llm-layernorm-backward-from-scratch/solution_ref.py +47 -0
  3964. mlsys/tasks/llm-layernorm-backward-from-scratch/starter.py +8 -0
  3965. mlsys/tasks/llm-layernorm-backward-from-scratch/task.md +76 -0
  3966. mlsys/tasks/llm-layernorm-forward-from-scratch/check.py +29 -0
  3967. mlsys/tasks/llm-layernorm-forward-from-scratch/gen_fixtures.py +1 -0
  3968. mlsys/tasks/llm-layernorm-forward-from-scratch/meta.json +22 -0
  3969. mlsys/tasks/llm-layernorm-forward-from-scratch/solution_ref.py +11 -0
  3970. mlsys/tasks/llm-layernorm-forward-from-scratch/starter.py +4 -0
  3971. mlsys/tasks/llm-layernorm-forward-from-scratch/task.md +57 -0
  3972. mlsys/tasks/llm-layerwise-output-mse-objective/check.py +44 -0
  3973. mlsys/tasks/llm-layerwise-output-mse-objective/gen_fixtures.py +1 -0
  3974. mlsys/tasks/llm-layerwise-output-mse-objective/meta.json +22 -0
  3975. mlsys/tasks/llm-layerwise-output-mse-objective/solution_ref.py +9 -0
  3976. mlsys/tasks/llm-layerwise-output-mse-objective/starter.py +4 -0
  3977. mlsys/tasks/llm-layerwise-output-mse-objective/task.md +67 -0
  3978. mlsys/tasks/llm-layout-cost-b-h-s-d-vs-b-s-h-d/check.py +51 -0
  3979. mlsys/tasks/llm-layout-cost-b-h-s-d-vs-b-s-h-d/gen_fixtures.py +1 -0
  3980. mlsys/tasks/llm-layout-cost-b-h-s-d-vs-b-s-h-d/meta.json +22 -0
  3981. mlsys/tasks/llm-layout-cost-b-h-s-d-vs-b-s-h-d/solution_ref.py +31 -0
  3982. mlsys/tasks/llm-layout-cost-b-h-s-d-vs-b-s-h-d/starter.py +2 -0
  3983. mlsys/tasks/llm-layout-cost-b-h-s-d-vs-b-s-h-d/task.md +46 -0
  3984. mlsys/tasks/llm-linear-position-interpolation-pi/check.py +30 -0
  3985. mlsys/tasks/llm-linear-position-interpolation-pi/gen_fixtures.py +1 -0
  3986. mlsys/tasks/llm-linear-position-interpolation-pi/meta.json +22 -0
  3987. mlsys/tasks/llm-linear-position-interpolation-pi/solution_ref.py +8 -0
  3988. mlsys/tasks/llm-linear-position-interpolation-pi/starter.py +2 -0
  3989. mlsys/tasks/llm-linear-position-interpolation-pi/task.md +52 -0
  3990. mlsys/tasks/llm-lm-head-flops-at-vocab-v/check.py +29 -0
  3991. mlsys/tasks/llm-lm-head-flops-at-vocab-v/gen_fixtures.py +1 -0
  3992. mlsys/tasks/llm-lm-head-flops-at-vocab-v/meta.json +22 -0
  3993. mlsys/tasks/llm-lm-head-flops-at-vocab-v/solution_ref.py +20 -0
  3994. mlsys/tasks/llm-lm-head-flops-at-vocab-v/starter.py +2 -0
  3995. mlsys/tasks/llm-lm-head-flops-at-vocab-v/task.md +42 -0
  3996. mlsys/tasks/llm-lm-head-projection-to-logits/check.py +21 -0
  3997. mlsys/tasks/llm-lm-head-projection-to-logits/gen_fixtures.py +1 -0
  3998. mlsys/tasks/llm-lm-head-projection-to-logits/meta.json +22 -0
  3999. mlsys/tasks/llm-lm-head-projection-to-logits/solution_ref.py +21 -0
  4000. mlsys/tasks/llm-lm-head-projection-to-logits/starter.py +4 -0
  4001. mlsys/tasks/llm-lm-head-projection-to-logits/task.md +56 -0
  4002. mlsys/tasks/llm-logsumexp-logsoftmax-from-scratch/check.py +73 -0
  4003. mlsys/tasks/llm-logsumexp-logsoftmax-from-scratch/gen_fixtures.py +1 -0
  4004. mlsys/tasks/llm-logsumexp-logsoftmax-from-scratch/meta.json +23 -0
  4005. mlsys/tasks/llm-logsumexp-logsoftmax-from-scratch/solution_ref.py +18 -0
  4006. mlsys/tasks/llm-logsumexp-logsoftmax-from-scratch/starter.py +9 -0
  4007. mlsys/tasks/llm-logsumexp-logsoftmax-from-scratch/task.md +59 -0
  4008. mlsys/tasks/llm-loss-scaling-recovers-small-fp16-gradients/check.py +103 -0
  4009. mlsys/tasks/llm-loss-scaling-recovers-small-fp16-gradients/gen_fixtures.py +1 -0
  4010. mlsys/tasks/llm-loss-scaling-recovers-small-fp16-gradients/meta.json +36 -0
  4011. mlsys/tasks/llm-loss-scaling-recovers-small-fp16-gradients/solution_ref.py +28 -0
  4012. mlsys/tasks/llm-loss-scaling-recovers-small-fp16-gradients/starter.py +21 -0
  4013. mlsys/tasks/llm-loss-scaling-recovers-small-fp16-gradients/task.md +93 -0
  4014. mlsys/tasks/llm-mantissa-bits-round-trip-error-closed-form/check.py +24 -0
  4015. mlsys/tasks/llm-mantissa-bits-round-trip-error-closed-form/gen_fixtures.py +1 -0
  4016. mlsys/tasks/llm-mantissa-bits-round-trip-error-closed-form/meta.json +22 -0
  4017. mlsys/tasks/llm-mantissa-bits-round-trip-error-closed-form/solution_ref.py +19 -0
  4018. mlsys/tasks/llm-mantissa-bits-round-trip-error-closed-form/starter.py +4 -0
  4019. mlsys/tasks/llm-mantissa-bits-round-trip-error-closed-form/task.md +49 -0
  4020. mlsys/tasks/llm-manual-index-head-split-merge-no-reshape/check.py +83 -0
  4021. mlsys/tasks/llm-manual-index-head-split-merge-no-reshape/gen_fixtures.py +1 -0
  4022. mlsys/tasks/llm-manual-index-head-split-merge-no-reshape/meta.json +28 -0
  4023. mlsys/tasks/llm-manual-index-head-split-merge-no-reshape/solution_ref.py +38 -0
  4024. mlsys/tasks/llm-manual-index-head-split-merge-no-reshape/starter.py +23 -0
  4025. mlsys/tasks/llm-manual-index-head-split-merge-no-reshape/task.md +89 -0
  4026. mlsys/tasks/llm-mha-flops-params-vs-equal-d-single-head/check.py +38 -0
  4027. mlsys/tasks/llm-mha-flops-params-vs-equal-d-single-head/gen_fixtures.py +1 -0
  4028. mlsys/tasks/llm-mha-flops-params-vs-equal-d-single-head/meta.json +22 -0
  4029. mlsys/tasks/llm-mha-flops-params-vs-equal-d-single-head/solution_ref.py +16 -0
  4030. mlsys/tasks/llm-mha-flops-params-vs-equal-d-single-head/starter.py +3 -0
  4031. mlsys/tasks/llm-mha-flops-params-vs-equal-d-single-head/task.md +84 -0
  4032. mlsys/tasks/llm-min-p-filter/check.py +29 -0
  4033. mlsys/tasks/llm-min-p-filter/gen_fixtures.py +1 -0
  4034. mlsys/tasks/llm-min-p-filter/meta.json +22 -0
  4035. mlsys/tasks/llm-min-p-filter/solution_ref.py +10 -0
  4036. mlsys/tasks/llm-min-p-filter/starter.py +4 -0
  4037. mlsys/tasks/llm-min-p-filter/task.md +39 -0
  4038. mlsys/tasks/llm-model-materialized-elements-naive-vs-streaming/check.py +38 -0
  4039. mlsys/tasks/llm-model-materialized-elements-naive-vs-streaming/gen_fixtures.py +1 -0
  4040. mlsys/tasks/llm-model-materialized-elements-naive-vs-streaming/meta.json +22 -0
  4041. mlsys/tasks/llm-model-materialized-elements-naive-vs-streaming/solution_ref.py +8 -0
  4042. mlsys/tasks/llm-model-materialized-elements-naive-vs-streaming/starter.py +4 -0
  4043. mlsys/tasks/llm-model-materialized-elements-naive-vs-streaming/task.md +41 -0
  4044. mlsys/tasks/llm-mqa-is-the-gqa-limit-n-kv-1/check.py +31 -0
  4045. mlsys/tasks/llm-mqa-is-the-gqa-limit-n-kv-1/gen_fixtures.py +1 -0
  4046. mlsys/tasks/llm-mqa-is-the-gqa-limit-n-kv-1/meta.json +22 -0
  4047. mlsys/tasks/llm-mqa-is-the-gqa-limit-n-kv-1/solution_ref.py +25 -0
  4048. mlsys/tasks/llm-mqa-is-the-gqa-limit-n-kv-1/starter.py +6 -0
  4049. mlsys/tasks/llm-mqa-is-the-gqa-limit-n-kv-1/task.md +55 -0
  4050. mlsys/tasks/llm-naive-softmax-then-log-vs-log-softmax-stability/check.py +24 -0
  4051. mlsys/tasks/llm-naive-softmax-then-log-vs-log-softmax-stability/gen_fixtures.py +1 -0
  4052. mlsys/tasks/llm-naive-softmax-then-log-vs-log-softmax-stability/meta.json +22 -0
  4053. mlsys/tasks/llm-naive-softmax-then-log-vs-log-softmax-stability/solution_ref.py +7 -0
  4054. mlsys/tasks/llm-naive-softmax-then-log-vs-log-softmax-stability/starter.py +4 -0
  4055. mlsys/tasks/llm-naive-softmax-then-log-vs-log-softmax-stability/task.md +50 -0
  4056. mlsys/tasks/llm-no-repeat-ngram-blocking/check.py +31 -0
  4057. mlsys/tasks/llm-no-repeat-ngram-blocking/gen_fixtures.py +1 -0
  4058. mlsys/tasks/llm-no-repeat-ngram-blocking/meta.json +22 -0
  4059. mlsys/tasks/llm-no-repeat-ngram-blocking/solution_ref.py +16 -0
  4060. mlsys/tasks/llm-no-repeat-ngram-blocking/starter.py +2 -0
  4061. mlsys/tasks/llm-no-repeat-ngram-blocking/task.md +36 -0
  4062. mlsys/tasks/llm-ntk-aware-base-scaling/check.py +22 -0
  4063. mlsys/tasks/llm-ntk-aware-base-scaling/gen_fixtures.py +1 -0
  4064. mlsys/tasks/llm-ntk-aware-base-scaling/meta.json +22 -0
  4065. mlsys/tasks/llm-ntk-aware-base-scaling/solution_ref.py +21 -0
  4066. mlsys/tasks/llm-ntk-aware-base-scaling/starter.py +5 -0
  4067. mlsys/tasks/llm-ntk-aware-base-scaling/task.md +39 -0
  4068. mlsys/tasks/llm-operational-intensity-crossover-batch-size/check.py +26 -0
  4069. mlsys/tasks/llm-operational-intensity-crossover-batch-size/gen_fixtures.py +1 -0
  4070. mlsys/tasks/llm-operational-intensity-crossover-batch-size/meta.json +22 -0
  4071. mlsys/tasks/llm-operational-intensity-crossover-batch-size/solution_ref.py +9 -0
  4072. mlsys/tasks/llm-operational-intensity-crossover-batch-size/starter.py +2 -0
  4073. mlsys/tasks/llm-operational-intensity-crossover-batch-size/task.md +57 -0
  4074. mlsys/tasks/llm-pack-two-int4-values-per-byte-byte-exact/check.py +44 -0
  4075. mlsys/tasks/llm-pack-two-int4-values-per-byte-byte-exact/gen_fixtures.py +1 -0
  4076. mlsys/tasks/llm-pack-two-int4-values-per-byte-byte-exact/meta.json +22 -0
  4077. mlsys/tasks/llm-pack-two-int4-values-per-byte-byte-exact/solution_ref.py +11 -0
  4078. mlsys/tasks/llm-pack-two-int4-values-per-byte-byte-exact/starter.py +4 -0
  4079. mlsys/tasks/llm-pack-two-int4-values-per-byte-byte-exact/task.md +67 -0
  4080. mlsys/tasks/llm-pagedattention-block-table-gather/check.py +28 -0
  4081. mlsys/tasks/llm-pagedattention-block-table-gather/gen_fixtures.py +1 -0
  4082. mlsys/tasks/llm-pagedattention-block-table-gather/meta.json +22 -0
  4083. mlsys/tasks/llm-pagedattention-block-table-gather/solution_ref.py +13 -0
  4084. mlsys/tasks/llm-pagedattention-block-table-gather/starter.py +4 -0
  4085. mlsys/tasks/llm-pagedattention-block-table-gather/task.md +61 -0
  4086. mlsys/tasks/llm-param-budget-gated-vs-vanilla-at-matched-hidden/check.py +19 -0
  4087. mlsys/tasks/llm-param-budget-gated-vs-vanilla-at-matched-hidden/gen_fixtures.py +1 -0
  4088. mlsys/tasks/llm-param-budget-gated-vs-vanilla-at-matched-hidden/meta.json +22 -0
  4089. mlsys/tasks/llm-param-budget-gated-vs-vanilla-at-matched-hidden/solution_ref.py +28 -0
  4090. mlsys/tasks/llm-param-budget-gated-vs-vanilla-at-matched-hidden/starter.py +4 -0
  4091. mlsys/tasks/llm-param-budget-gated-vs-vanilla-at-matched-hidden/task.md +66 -0
  4092. mlsys/tasks/llm-parameter-savings-from-weight-tying/check.py +44 -0
  4093. mlsys/tasks/llm-parameter-savings-from-weight-tying/gen_fixtures.py +1 -0
  4094. mlsys/tasks/llm-parameter-savings-from-weight-tying/meta.json +22 -0
  4095. mlsys/tasks/llm-parameter-savings-from-weight-tying/solution_ref.py +19 -0
  4096. mlsys/tasks/llm-parameter-savings-from-weight-tying/starter.py +2 -0
  4097. mlsys/tasks/llm-parameter-savings-from-weight-tying/task.md +44 -0
  4098. mlsys/tasks/llm-per-channel-activation-scales-from-calibration/check.py +24 -0
  4099. mlsys/tasks/llm-per-channel-activation-scales-from-calibration/gen_fixtures.py +1 -0
  4100. mlsys/tasks/llm-per-channel-activation-scales-from-calibration/meta.json +22 -0
  4101. mlsys/tasks/llm-per-channel-activation-scales-from-calibration/solution_ref.py +19 -0
  4102. mlsys/tasks/llm-per-channel-activation-scales-from-calibration/starter.py +6 -0
  4103. mlsys/tasks/llm-per-channel-activation-scales-from-calibration/task.md +39 -0
  4104. mlsys/tasks/llm-per-channel-vs-per-tensor-error/check.py +16 -0
  4105. mlsys/tasks/llm-per-channel-vs-per-tensor-error/gen_fixtures.py +1 -0
  4106. mlsys/tasks/llm-per-channel-vs-per-tensor-error/meta.json +22 -0
  4107. mlsys/tasks/llm-per-channel-vs-per-tensor-error/solution_ref.py +31 -0
  4108. mlsys/tasks/llm-per-channel-vs-per-tensor-error/starter.py +4 -0
  4109. mlsys/tasks/llm-per-channel-vs-per-tensor-error/task.md +66 -0
  4110. mlsys/tasks/llm-per-tensor-symmetric-int8-round-trip/check.py +28 -0
  4111. mlsys/tasks/llm-per-tensor-symmetric-int8-round-trip/gen_fixtures.py +1 -0
  4112. mlsys/tasks/llm-per-tensor-symmetric-int8-round-trip/meta.json +22 -0
  4113. mlsys/tasks/llm-per-tensor-symmetric-int8-round-trip/solution_ref.py +26 -0
  4114. mlsys/tasks/llm-per-tensor-symmetric-int8-round-trip/starter.py +5 -0
  4115. mlsys/tasks/llm-per-tensor-symmetric-int8-round-trip/task.md +68 -0
  4116. mlsys/tasks/llm-perplexity-from-cross-entropy/check.py +29 -0
  4117. mlsys/tasks/llm-perplexity-from-cross-entropy/gen_fixtures.py +1 -0
  4118. mlsys/tasks/llm-perplexity-from-cross-entropy/meta.json +22 -0
  4119. mlsys/tasks/llm-perplexity-from-cross-entropy/solution_ref.py +32 -0
  4120. mlsys/tasks/llm-perplexity-from-cross-entropy/starter.py +4 -0
  4121. mlsys/tasks/llm-perplexity-from-cross-entropy/task.md +43 -0
  4122. mlsys/tasks/llm-pre-norm-block-wiring-match/check.py +79 -0
  4123. mlsys/tasks/llm-pre-norm-block-wiring-match/gen_fixtures.py +1 -0
  4124. mlsys/tasks/llm-pre-norm-block-wiring-match/meta.json +22 -0
  4125. mlsys/tasks/llm-pre-norm-block-wiring-match/solution_ref.py +45 -0
  4126. mlsys/tasks/llm-pre-norm-block-wiring-match/starter.py +17 -0
  4127. mlsys/tasks/llm-pre-norm-block-wiring-match/task.md +92 -0
  4128. mlsys/tasks/llm-predict-compute-vs-memory-bound-regime/check.py +55 -0
  4129. mlsys/tasks/llm-predict-compute-vs-memory-bound-regime/gen_fixtures.py +1 -0
  4130. mlsys/tasks/llm-predict-compute-vs-memory-bound-regime/meta.json +22 -0
  4131. mlsys/tasks/llm-predict-compute-vs-memory-bound-regime/solution_ref.py +41 -0
  4132. mlsys/tasks/llm-predict-compute-vs-memory-bound-regime/starter.py +7 -0
  4133. mlsys/tasks/llm-predict-compute-vs-memory-bound-regime/task.md +64 -0
  4134. mlsys/tasks/llm-predict-which-fixtures-overflow-naive-softmax/check.py +33 -0
  4135. mlsys/tasks/llm-predict-which-fixtures-overflow-naive-softmax/gen_fixtures.py +1 -0
  4136. mlsys/tasks/llm-predict-which-fixtures-overflow-naive-softmax/meta.json +22 -0
  4137. mlsys/tasks/llm-predict-which-fixtures-overflow-naive-softmax/solution_ref.py +5 -0
  4138. mlsys/tasks/llm-predict-which-fixtures-overflow-naive-softmax/starter.py +4 -0
  4139. mlsys/tasks/llm-predict-which-fixtures-overflow-naive-softmax/task.md +34 -0
  4140. mlsys/tasks/llm-prefill-arithmetic-intensity-closed-form/check.py +22 -0
  4141. mlsys/tasks/llm-prefill-arithmetic-intensity-closed-form/gen_fixtures.py +1 -0
  4142. mlsys/tasks/llm-prefill-arithmetic-intensity-closed-form/meta.json +22 -0
  4143. mlsys/tasks/llm-prefill-arithmetic-intensity-closed-form/solution_ref.py +23 -0
  4144. mlsys/tasks/llm-prefill-arithmetic-intensity-closed-form/starter.py +4 -0
  4145. mlsys/tasks/llm-prefill-arithmetic-intensity-closed-form/task.md +51 -0
  4146. mlsys/tasks/llm-prefill-decode-equivalence-to-no-cache/check.py +48 -0
  4147. mlsys/tasks/llm-prefill-decode-equivalence-to-no-cache/gen_fixtures.py +1 -0
  4148. mlsys/tasks/llm-prefill-decode-equivalence-to-no-cache/meta.json +22 -0
  4149. mlsys/tasks/llm-prefill-decode-equivalence-to-no-cache/solution_ref.py +45 -0
  4150. mlsys/tasks/llm-prefill-decode-equivalence-to-no-cache/starter.py +27 -0
  4151. mlsys/tasks/llm-prefill-decode-equivalence-to-no-cache/task.md +49 -0
  4152. mlsys/tasks/llm-prefill-vs-decode-flop-ratio/check.py +101 -0
  4153. mlsys/tasks/llm-prefill-vs-decode-flop-ratio/gen_fixtures.py +1 -0
  4154. mlsys/tasks/llm-prefill-vs-decode-flop-ratio/meta.json +27 -0
  4155. mlsys/tasks/llm-prefill-vs-decode-flop-ratio/solution_ref.py +19 -0
  4156. mlsys/tasks/llm-prefill-vs-decode-flop-ratio/starter.py +5 -0
  4157. mlsys/tasks/llm-prefill-vs-decode-flop-ratio/task.md +78 -0
  4158. mlsys/tasks/llm-priority-queue-bpe-reduces-work-vs-naive-rescans/check.py +106 -0
  4159. mlsys/tasks/llm-priority-queue-bpe-reduces-work-vs-naive-rescans/gen_fixtures.py +1 -0
  4160. mlsys/tasks/llm-priority-queue-bpe-reduces-work-vs-naive-rescans/meta.json +27 -0
  4161. mlsys/tasks/llm-priority-queue-bpe-reduces-work-vs-naive-rescans/solution_ref.py +68 -0
  4162. mlsys/tasks/llm-priority-queue-bpe-reduces-work-vs-naive-rescans/starter.py +13 -0
  4163. mlsys/tasks/llm-priority-queue-bpe-reduces-work-vs-naive-rescans/task.md +75 -0
  4164. mlsys/tasks/llm-prove-block-rescaling-equals-monolithic-softmax/check.py +30 -0
  4165. mlsys/tasks/llm-prove-block-rescaling-equals-monolithic-softmax/gen_fixtures.py +1 -0
  4166. mlsys/tasks/llm-prove-block-rescaling-equals-monolithic-softmax/meta.json +22 -0
  4167. mlsys/tasks/llm-prove-block-rescaling-equals-monolithic-softmax/solution_ref.py +24 -0
  4168. mlsys/tasks/llm-prove-block-rescaling-equals-monolithic-softmax/starter.py +6 -0
  4169. mlsys/tasks/llm-prove-block-rescaling-equals-monolithic-softmax/task.md +70 -0
  4170. mlsys/tasks/llm-quality-cost-of-kv-grouping-mean-pool-kl/check.py +58 -0
  4171. mlsys/tasks/llm-quality-cost-of-kv-grouping-mean-pool-kl/gen_fixtures.py +1 -0
  4172. mlsys/tasks/llm-quality-cost-of-kv-grouping-mean-pool-kl/meta.json +22 -0
  4173. mlsys/tasks/llm-quality-cost-of-kv-grouping-mean-pool-kl/solution_ref.py +38 -0
  4174. mlsys/tasks/llm-quality-cost-of-kv-grouping-mean-pool-kl/starter.py +7 -0
  4175. mlsys/tasks/llm-quality-cost-of-kv-grouping-mean-pool-kl/task.md +69 -0
  4176. mlsys/tasks/llm-quantization-aware-layernorm-int8-activations/check.py +30 -0
  4177. mlsys/tasks/llm-quantization-aware-layernorm-int8-activations/gen_fixtures.py +1 -0
  4178. mlsys/tasks/llm-quantization-aware-layernorm-int8-activations/meta.json +22 -0
  4179. mlsys/tasks/llm-quantization-aware-layernorm-int8-activations/solution_ref.py +17 -0
  4180. mlsys/tasks/llm-quantization-aware-layernorm-int8-activations/starter.py +4 -0
  4181. mlsys/tasks/llm-quantization-aware-layernorm-int8-activations/task.md +64 -0
  4182. mlsys/tasks/llm-quantized-int8-kv-cache-error-bound/check.py +48 -0
  4183. mlsys/tasks/llm-quantized-int8-kv-cache-error-bound/gen_fixtures.py +1 -0
  4184. mlsys/tasks/llm-quantized-int8-kv-cache-error-bound/meta.json +22 -0
  4185. mlsys/tasks/llm-quantized-int8-kv-cache-error-bound/solution_ref.py +41 -0
  4186. mlsys/tasks/llm-quantized-int8-kv-cache-error-bound/starter.py +7 -0
  4187. mlsys/tasks/llm-quantized-int8-kv-cache-error-bound/task.md +81 -0
  4188. mlsys/tasks/llm-real-gpu-hbm-utilization-for-decode-kernel/check.py +25 -0
  4189. mlsys/tasks/llm-real-gpu-hbm-utilization-for-decode-kernel/gen_fixtures.py +1 -0
  4190. mlsys/tasks/llm-real-gpu-hbm-utilization-for-decode-kernel/meta.json +22 -0
  4191. mlsys/tasks/llm-real-gpu-hbm-utilization-for-decode-kernel/solution_ref.py +12 -0
  4192. mlsys/tasks/llm-real-gpu-hbm-utilization-for-decode-kernel/starter.py +4 -0
  4193. mlsys/tasks/llm-real-gpu-hbm-utilization-for-decode-kernel/task.md +69 -0
  4194. mlsys/tasks/llm-reconstruct-applied-penalty-factor-from-before-after-logits/check.py +35 -0
  4195. mlsys/tasks/llm-reconstruct-applied-penalty-factor-from-before-after-logits/gen_fixtures.py +1 -0
  4196. mlsys/tasks/llm-reconstruct-applied-penalty-factor-from-before-after-logits/meta.json +22 -0
  4197. mlsys/tasks/llm-reconstruct-applied-penalty-factor-from-before-after-logits/solution_ref.py +7 -0
  4198. mlsys/tasks/llm-reconstruct-applied-penalty-factor-from-before-after-logits/starter.py +4 -0
  4199. mlsys/tasks/llm-reconstruct-applied-penalty-factor-from-before-after-logits/task.md +75 -0
  4200. mlsys/tasks/llm-reconstruct-inverse-hessian-cholesky-structure/check.py +34 -0
  4201. mlsys/tasks/llm-reconstruct-inverse-hessian-cholesky-structure/gen_fixtures.py +1 -0
  4202. mlsys/tasks/llm-reconstruct-inverse-hessian-cholesky-structure/meta.json +22 -0
  4203. mlsys/tasks/llm-reconstruct-inverse-hessian-cholesky-structure/solution_ref.py +14 -0
  4204. mlsys/tasks/llm-reconstruct-inverse-hessian-cholesky-structure/starter.py +4 -0
  4205. mlsys/tasks/llm-reconstruct-inverse-hessian-cholesky-structure/task.md +54 -0
  4206. mlsys/tasks/llm-reconstruct-rotation-angle-from-rotated-vs-original/check.py +40 -0
  4207. mlsys/tasks/llm-reconstruct-rotation-angle-from-rotated-vs-original/gen_fixtures.py +1 -0
  4208. mlsys/tasks/llm-reconstruct-rotation-angle-from-rotated-vs-original/meta.json +22 -0
  4209. mlsys/tasks/llm-reconstruct-rotation-angle-from-rotated-vs-original/solution_ref.py +12 -0
  4210. mlsys/tasks/llm-reconstruct-rotation-angle-from-rotated-vs-original/starter.py +4 -0
  4211. mlsys/tasks/llm-reconstruct-rotation-angle-from-rotated-vs-original/task.md +35 -0
  4212. mlsys/tasks/llm-reconstruct-scale-factor-from-modified-freqs/check.py +23 -0
  4213. mlsys/tasks/llm-reconstruct-scale-factor-from-modified-freqs/gen_fixtures.py +1 -0
  4214. mlsys/tasks/llm-reconstruct-scale-factor-from-modified-freqs/meta.json +22 -0
  4215. mlsys/tasks/llm-reconstruct-scale-factor-from-modified-freqs/solution_ref.py +13 -0
  4216. mlsys/tasks/llm-reconstruct-scale-factor-from-modified-freqs/starter.py +4 -0
  4217. mlsys/tasks/llm-reconstruct-scale-factor-from-modified-freqs/task.md +39 -0
  4218. mlsys/tasks/llm-reconstruct-weights-from-packed-int4-scales/check.py +66 -0
  4219. mlsys/tasks/llm-reconstruct-weights-from-packed-int4-scales/gen_fixtures.py +1 -0
  4220. mlsys/tasks/llm-reconstruct-weights-from-packed-int4-scales/meta.json +22 -0
  4221. mlsys/tasks/llm-reconstruct-weights-from-packed-int4-scales/solution_ref.py +17 -0
  4222. mlsys/tasks/llm-reconstruct-weights-from-packed-int4-scales/starter.py +4 -0
  4223. mlsys/tasks/llm-reconstruct-weights-from-packed-int4-scales/task.md +69 -0
  4224. mlsys/tasks/llm-recover-sublayer-contribution-from-residual-write/check.py +22 -0
  4225. mlsys/tasks/llm-recover-sublayer-contribution-from-residual-write/gen_fixtures.py +1 -0
  4226. mlsys/tasks/llm-recover-sublayer-contribution-from-residual-write/meta.json +22 -0
  4227. mlsys/tasks/llm-recover-sublayer-contribution-from-residual-write/solution_ref.py +7 -0
  4228. mlsys/tasks/llm-recover-sublayer-contribution-from-residual-write/starter.py +4 -0
  4229. mlsys/tasks/llm-recover-sublayer-contribution-from-residual-write/task.md +39 -0
  4230. mlsys/tasks/llm-recover-the-boolean-mask-from-prob-zero-pattern/check.py +40 -0
  4231. mlsys/tasks/llm-recover-the-boolean-mask-from-prob-zero-pattern/gen_fixtures.py +1 -0
  4232. mlsys/tasks/llm-recover-the-boolean-mask-from-prob-zero-pattern/meta.json +22 -0
  4233. mlsys/tasks/llm-recover-the-boolean-mask-from-prob-zero-pattern/solution_ref.py +4 -0
  4234. mlsys/tasks/llm-recover-the-boolean-mask-from-prob-zero-pattern/starter.py +5 -0
  4235. mlsys/tasks/llm-recover-the-boolean-mask-from-prob-zero-pattern/task.md +75 -0
  4236. mlsys/tasks/llm-repetition-penalty-applied-to-logits/check.py +39 -0
  4237. mlsys/tasks/llm-repetition-penalty-applied-to-logits/gen_fixtures.py +1 -0
  4238. mlsys/tasks/llm-repetition-penalty-applied-to-logits/meta.json +22 -0
  4239. mlsys/tasks/llm-repetition-penalty-applied-to-logits/solution_ref.py +35 -0
  4240. mlsys/tasks/llm-repetition-penalty-applied-to-logits/starter.py +4 -0
  4241. mlsys/tasks/llm-repetition-penalty-applied-to-logits/task.md +59 -0
  4242. mlsys/tasks/llm-residual-norm-growth-pre-vs-post-over-12-blocks/check.py +25 -0
  4243. mlsys/tasks/llm-residual-norm-growth-pre-vs-post-over-12-blocks/gen_fixtures.py +1 -0
  4244. mlsys/tasks/llm-residual-norm-growth-pre-vs-post-over-12-blocks/meta.json +22 -0
  4245. mlsys/tasks/llm-residual-norm-growth-pre-vs-post-over-12-blocks/solution_ref.py +7 -0
  4246. mlsys/tasks/llm-residual-norm-growth-pre-vs-post-over-12-blocks/starter.py +4 -0
  4247. mlsys/tasks/llm-residual-norm-growth-pre-vs-post-over-12-blocks/task.md +56 -0
  4248. mlsys/tasks/llm-rmsnorm-backward-from-scratch/check.py +42 -0
  4249. mlsys/tasks/llm-rmsnorm-backward-from-scratch/gen_fixtures.py +1 -0
  4250. mlsys/tasks/llm-rmsnorm-backward-from-scratch/meta.json +22 -0
  4251. mlsys/tasks/llm-rmsnorm-backward-from-scratch/solution_ref.py +11 -0
  4252. mlsys/tasks/llm-rmsnorm-backward-from-scratch/starter.py +4 -0
  4253. mlsys/tasks/llm-rmsnorm-backward-from-scratch/task.md +69 -0
  4254. mlsys/tasks/llm-rmsnorm-from-scratch-llama-style/check.py +53 -0
  4255. mlsys/tasks/llm-rmsnorm-from-scratch-llama-style/gen_fixtures.py +1 -0
  4256. mlsys/tasks/llm-rmsnorm-from-scratch-llama-style/meta.json +27 -0
  4257. mlsys/tasks/llm-rmsnorm-from-scratch-llama-style/solution_ref.py +7 -0
  4258. mlsys/tasks/llm-rmsnorm-from-scratch-llama-style/starter.py +2 -0
  4259. mlsys/tasks/llm-rmsnorm-from-scratch-llama-style/task.md +28 -0
  4260. mlsys/tasks/llm-rope-relative-position-invariance/check.py +47 -0
  4261. mlsys/tasks/llm-rope-relative-position-invariance/gen_fixtures.py +1 -0
  4262. mlsys/tasks/llm-rope-relative-position-invariance/meta.json +22 -0
  4263. mlsys/tasks/llm-rope-relative-position-invariance/solution_ref.py +23 -0
  4264. mlsys/tasks/llm-rope-relative-position-invariance/starter.py +4 -0
  4265. mlsys/tasks/llm-rope-relative-position-invariance/task.md +63 -0
  4266. mlsys/tasks/llm-round-to-nearest-weight-quant-baseline-error/check.py +35 -0
  4267. mlsys/tasks/llm-round-to-nearest-weight-quant-baseline-error/gen_fixtures.py +1 -0
  4268. mlsys/tasks/llm-round-to-nearest-weight-quant-baseline-error/meta.json +22 -0
  4269. mlsys/tasks/llm-round-to-nearest-weight-quant-baseline-error/solution_ref.py +32 -0
  4270. mlsys/tasks/llm-round-to-nearest-weight-quant-baseline-error/starter.py +6 -0
  4271. mlsys/tasks/llm-round-to-nearest-weight-quant-baseline-error/task.md +50 -0
  4272. mlsys/tasks/llm-round-trip-attention-stages-s-p-o/check.py +26 -0
  4273. mlsys/tasks/llm-round-trip-attention-stages-s-p-o/gen_fixtures.py +1 -0
  4274. mlsys/tasks/llm-round-trip-attention-stages-s-p-o/meta.json +32 -0
  4275. mlsys/tasks/llm-round-trip-attention-stages-s-p-o/solution_ref.py +20 -0
  4276. mlsys/tasks/llm-round-trip-attention-stages-s-p-o/starter.py +7 -0
  4277. mlsys/tasks/llm-round-trip-attention-stages-s-p-o/task.md +76 -0
  4278. mlsys/tasks/llm-scale-invariance-weights-s-activations-s/check.py +24 -0
  4279. mlsys/tasks/llm-scale-invariance-weights-s-activations-s/gen_fixtures.py +1 -0
  4280. mlsys/tasks/llm-scale-invariance-weights-s-activations-s/meta.json +22 -0
  4281. mlsys/tasks/llm-scale-invariance-weights-s-activations-s/solution_ref.py +10 -0
  4282. mlsys/tasks/llm-scale-invariance-weights-s-activations-s/starter.py +4 -0
  4283. mlsys/tasks/llm-scale-invariance-weights-s-activations-s/task.md +54 -0
  4284. mlsys/tasks/llm-sdpa-flop-closed-form/check.py +40 -0
  4285. mlsys/tasks/llm-sdpa-flop-closed-form/gen_fixtures.py +1 -0
  4286. mlsys/tasks/llm-sdpa-flop-closed-form/meta.json +22 -0
  4287. mlsys/tasks/llm-sdpa-flop-closed-form/solution_ref.py +9 -0
  4288. mlsys/tasks/llm-sdpa-flop-closed-form/starter.py +2 -0
  4289. mlsys/tasks/llm-sdpa-flop-closed-form/task.md +44 -0
  4290. mlsys/tasks/llm-seeded-reproducible-sampling-sequence/check.py +59 -0
  4291. mlsys/tasks/llm-seeded-reproducible-sampling-sequence/gen_fixtures.py +1 -0
  4292. mlsys/tasks/llm-seeded-reproducible-sampling-sequence/meta.json +22 -0
  4293. mlsys/tasks/llm-seeded-reproducible-sampling-sequence/solution_ref.py +25 -0
  4294. mlsys/tasks/llm-seeded-reproducible-sampling-sequence/starter.py +15 -0
  4295. mlsys/tasks/llm-seeded-reproducible-sampling-sequence/task.md +77 -0
  4296. mlsys/tasks/llm-shift-invariance-proof-softmax-x-softmax-x-c/check.py +48 -0
  4297. mlsys/tasks/llm-shift-invariance-proof-softmax-x-softmax-x-c/gen_fixtures.py +2 -0
  4298. mlsys/tasks/llm-shift-invariance-proof-softmax-x-softmax-x-c/meta.json +27 -0
  4299. mlsys/tasks/llm-shift-invariance-proof-softmax-x-softmax-x-c/solution_ref.py +6 -0
  4300. mlsys/tasks/llm-shift-invariance-proof-softmax-x-softmax-x-c/starter.py +5 -0
  4301. mlsys/tasks/llm-shift-invariance-proof-softmax-x-softmax-x-c/task.md +73 -0
  4302. mlsys/tasks/llm-single-head-sdpa-vectorized-match/check.py +27 -0
  4303. mlsys/tasks/llm-single-head-sdpa-vectorized-match/gen_fixtures.py +1 -0
  4304. mlsys/tasks/llm-single-head-sdpa-vectorized-match/meta.json +22 -0
  4305. mlsys/tasks/llm-single-head-sdpa-vectorized-match/solution_ref.py +11 -0
  4306. mlsys/tasks/llm-single-head-sdpa-vectorized-match/starter.py +2 -0
  4307. mlsys/tasks/llm-single-head-sdpa-vectorized-match/task.md +41 -0
  4308. mlsys/tasks/llm-sliding-window-mask-width-w-mistral/check.py +44 -0
  4309. mlsys/tasks/llm-sliding-window-mask-width-w-mistral/gen_fixtures.py +1 -0
  4310. mlsys/tasks/llm-sliding-window-mask-width-w-mistral/meta.json +22 -0
  4311. mlsys/tasks/llm-sliding-window-mask-width-w-mistral/solution_ref.py +25 -0
  4312. mlsys/tasks/llm-sliding-window-mask-width-w-mistral/starter.py +11 -0
  4313. mlsys/tasks/llm-sliding-window-mask-width-w-mistral/task.md +81 -0
  4314. mlsys/tasks/llm-sliding-window-ring-buffer-cache-eviction/check.py +90 -0
  4315. mlsys/tasks/llm-sliding-window-ring-buffer-cache-eviction/gen_fixtures.py +1 -0
  4316. mlsys/tasks/llm-sliding-window-ring-buffer-cache-eviction/meta.json +27 -0
  4317. mlsys/tasks/llm-sliding-window-ring-buffer-cache-eviction/solution_ref.py +49 -0
  4318. mlsys/tasks/llm-sliding-window-ring-buffer-cache-eviction/starter.py +23 -0
  4319. mlsys/tasks/llm-sliding-window-ring-buffer-cache-eviction/task.md +81 -0
  4320. mlsys/tasks/llm-split-merge-round-trip-identity/check.py +28 -0
  4321. mlsys/tasks/llm-split-merge-round-trip-identity/gen_fixtures.py +1 -0
  4322. mlsys/tasks/llm-split-merge-round-trip-identity/meta.json +23 -0
  4323. mlsys/tasks/llm-split-merge-round-trip-identity/solution_ref.py +20 -0
  4324. mlsys/tasks/llm-split-merge-round-trip-identity/starter.py +7 -0
  4325. mlsys/tasks/llm-split-merge-round-trip-identity/task.md +56 -0
  4326. mlsys/tasks/llm-stable-softmax-survives-300-logits/check.py +38 -0
  4327. mlsys/tasks/llm-stable-softmax-survives-300-logits/gen_fixtures.py +15 -0
  4328. mlsys/tasks/llm-stable-softmax-survives-300-logits/meta.json +22 -0
  4329. mlsys/tasks/llm-stable-softmax-survives-300-logits/solution_ref.py +11 -0
  4330. mlsys/tasks/llm-stable-softmax-survives-300-logits/starter.py +6 -0
  4331. mlsys/tasks/llm-stable-softmax-survives-300-logits/task.md +66 -0
  4332. mlsys/tasks/llm-stack-n-blocks-final-norm-forward/check.py +56 -0
  4333. mlsys/tasks/llm-stack-n-blocks-final-norm-forward/gen_fixtures.py +1 -0
  4334. mlsys/tasks/llm-stack-n-blocks-final-norm-forward/meta.json +22 -0
  4335. mlsys/tasks/llm-stack-n-blocks-final-norm-forward/solution_ref.py +22 -0
  4336. mlsys/tasks/llm-stack-n-blocks-final-norm-forward/starter.py +6 -0
  4337. mlsys/tasks/llm-stack-n-blocks-final-norm-forward/task.md +88 -0
  4338. mlsys/tasks/llm-streaming-online-softmax-over-row-chunks/check.py +31 -0
  4339. mlsys/tasks/llm-streaming-online-softmax-over-row-chunks/gen_fixtures.py +1 -0
  4340. mlsys/tasks/llm-streaming-online-softmax-over-row-chunks/meta.json +22 -0
  4341. mlsys/tasks/llm-streaming-online-softmax-over-row-chunks/solution_ref.py +24 -0
  4342. mlsys/tasks/llm-streaming-online-softmax-over-row-chunks/starter.py +4 -0
  4343. mlsys/tasks/llm-streaming-online-softmax-over-row-chunks/task.md +78 -0
  4344. mlsys/tasks/llm-streaming-softmax-over-kv-blocks-matches-full/check.py +40 -0
  4345. mlsys/tasks/llm-streaming-softmax-over-kv-blocks-matches-full/gen_fixtures.py +1 -0
  4346. mlsys/tasks/llm-streaming-softmax-over-kv-blocks-matches-full/meta.json +22 -0
  4347. mlsys/tasks/llm-streaming-softmax-over-kv-blocks-matches-full/solution_ref.py +35 -0
  4348. mlsys/tasks/llm-streaming-softmax-over-kv-blocks-matches-full/starter.py +4 -0
  4349. mlsys/tasks/llm-streaming-softmax-over-kv-blocks-matches-full/task.md +87 -0
  4350. mlsys/tasks/llm-swiglu-ffn-match/check.py +46 -0
  4351. mlsys/tasks/llm-swiglu-ffn-match/gen_fixtures.py +1 -0
  4352. mlsys/tasks/llm-swiglu-ffn-match/meta.json +22 -0
  4353. mlsys/tasks/llm-swiglu-ffn-match/solution_ref.py +9 -0
  4354. mlsys/tasks/llm-swiglu-ffn-match/starter.py +4 -0
  4355. mlsys/tasks/llm-swiglu-ffn-match/task.md +80 -0
  4356. mlsys/tasks/llm-temperature-scaling-distribution/check.py +22 -0
  4357. mlsys/tasks/llm-temperature-scaling-distribution/gen_fixtures.py +1 -0
  4358. mlsys/tasks/llm-temperature-scaling-distribution/meta.json +22 -0
  4359. mlsys/tasks/llm-temperature-scaling-distribution/solution_ref.py +9 -0
  4360. mlsys/tasks/llm-temperature-scaling-distribution/starter.py +4 -0
  4361. mlsys/tasks/llm-temperature-scaling-distribution/task.md +37 -0
  4362. mlsys/tasks/llm-tile-size-invariance-block-1-vs-n/check.py +44 -0
  4363. mlsys/tasks/llm-tile-size-invariance-block-1-vs-n/gen_fixtures.py +1 -0
  4364. mlsys/tasks/llm-tile-size-invariance-block-1-vs-n/meta.json +22 -0
  4365. mlsys/tasks/llm-tile-size-invariance-block-1-vs-n/solution_ref.py +36 -0
  4366. mlsys/tasks/llm-tile-size-invariance-block-1-vs-n/starter.py +4 -0
  4367. mlsys/tasks/llm-tile-size-invariance-block-1-vs-n/task.md +59 -0
  4368. mlsys/tasks/llm-token-count-for-corpus-matches-reference/check.py +52 -0
  4369. mlsys/tasks/llm-token-count-for-corpus-matches-reference/gen_fixtures.py +1 -0
  4370. mlsys/tasks/llm-token-count-for-corpus-matches-reference/meta.json +22 -0
  4371. mlsys/tasks/llm-token-count-for-corpus-matches-reference/solution_ref.py +25 -0
  4372. mlsys/tasks/llm-token-count-for-corpus-matches-reference/starter.py +3 -0
  4373. mlsys/tasks/llm-token-count-for-corpus-matches-reference/task.md +72 -0
  4374. mlsys/tasks/llm-top-k-filter-kept-set-exact/check.py +36 -0
  4375. mlsys/tasks/llm-top-k-filter-kept-set-exact/gen_fixtures.py +1 -0
  4376. mlsys/tasks/llm-top-k-filter-kept-set-exact/meta.json +22 -0
  4377. mlsys/tasks/llm-top-k-filter-kept-set-exact/solution_ref.py +14 -0
  4378. mlsys/tasks/llm-top-k-filter-kept-set-exact/starter.py +4 -0
  4379. mlsys/tasks/llm-top-k-filter-kept-set-exact/task.md +37 -0
  4380. mlsys/tasks/llm-top-p-nucleus-filter/check.py +32 -0
  4381. mlsys/tasks/llm-top-p-nucleus-filter/gen_fixtures.py +1 -0
  4382. mlsys/tasks/llm-top-p-nucleus-filter/meta.json +22 -0
  4383. mlsys/tasks/llm-top-p-nucleus-filter/solution_ref.py +9 -0
  4384. mlsys/tasks/llm-top-p-nucleus-filter/starter.py +4 -0
  4385. mlsys/tasks/llm-top-p-nucleus-filter/task.md +53 -0
  4386. mlsys/tasks/llm-trace-decode-writes-o-1-rows-not-o-s/check.py +78 -0
  4387. mlsys/tasks/llm-trace-decode-writes-o-1-rows-not-o-s/gen_fixtures.py +1 -0
  4388. mlsys/tasks/llm-trace-decode-writes-o-1-rows-not-o-s/meta.json +27 -0
  4389. mlsys/tasks/llm-trace-decode-writes-o-1-rows-not-o-s/solution_ref.py +27 -0
  4390. mlsys/tasks/llm-trace-decode-writes-o-1-rows-not-o-s/starter.py +22 -0
  4391. mlsys/tasks/llm-trace-decode-writes-o-1-rows-not-o-s/task.md +81 -0
  4392. mlsys/tasks/llm-trace-residual-add-appears-exactly-twice-per-block/check.py +40 -0
  4393. mlsys/tasks/llm-trace-residual-add-appears-exactly-twice-per-block/gen_fixtures.py +1 -0
  4394. mlsys/tasks/llm-trace-residual-add-appears-exactly-twice-per-block/meta.json +27 -0
  4395. mlsys/tasks/llm-trace-residual-add-appears-exactly-twice-per-block/solution_ref.py +18 -0
  4396. mlsys/tasks/llm-trace-residual-add-appears-exactly-twice-per-block/starter.py +9 -0
  4397. mlsys/tasks/llm-trace-residual-add-appears-exactly-twice-per-block/task.md +59 -0
  4398. mlsys/tasks/llm-train-bpe-merges-from-a-corpus/check.py +84 -0
  4399. mlsys/tasks/llm-train-bpe-merges-from-a-corpus/gen_fixtures.py +1 -0
  4400. mlsys/tasks/llm-train-bpe-merges-from-a-corpus/meta.json +22 -0
  4401. mlsys/tasks/llm-train-bpe-merges-from-a-corpus/solution_ref.py +36 -0
  4402. mlsys/tasks/llm-train-bpe-merges-from-a-corpus/starter.py +2 -0
  4403. mlsys/tasks/llm-train-bpe-merges-from-a-corpus/task.md +70 -0
  4404. mlsys/tasks/llm-two-pass-vs-welford-variance-in-fp16/check.py +130 -0
  4405. mlsys/tasks/llm-two-pass-vs-welford-variance-in-fp16/gen_fixtures.py +1 -0
  4406. mlsys/tasks/llm-two-pass-vs-welford-variance-in-fp16/meta.json +33 -0
  4407. mlsys/tasks/llm-two-pass-vs-welford-variance-in-fp16/solution_ref.py +55 -0
  4408. mlsys/tasks/llm-two-pass-vs-welford-variance-in-fp16/starter.py +24 -0
  4409. mlsys/tasks/llm-two-pass-vs-welford-variance-in-fp16/task.md +101 -0
  4410. mlsys/tasks/llm-uptrain-mha-gqa-by-kv-mean-pool-bounded-kl/check.py +55 -0
  4411. mlsys/tasks/llm-uptrain-mha-gqa-by-kv-mean-pool-bounded-kl/gen_fixtures.py +1 -0
  4412. mlsys/tasks/llm-uptrain-mha-gqa-by-kv-mean-pool-bounded-kl/meta.json +22 -0
  4413. mlsys/tasks/llm-uptrain-mha-gqa-by-kv-mean-pool-bounded-kl/solution_ref.py +9 -0
  4414. mlsys/tasks/llm-uptrain-mha-gqa-by-kv-mean-pool-bounded-kl/starter.py +4 -0
  4415. mlsys/tasks/llm-uptrain-mha-gqa-by-kv-mean-pool-bounded-kl/task.md +89 -0
  4416. mlsys/tasks/llm-vanilla-ffn-up-act-down-match/check.py +43 -0
  4417. mlsys/tasks/llm-vanilla-ffn-up-act-down-match/gen_fixtures.py +1 -0
  4418. mlsys/tasks/llm-vanilla-ffn-up-act-down-match/meta.json +22 -0
  4419. mlsys/tasks/llm-vanilla-ffn-up-act-down-match/solution_ref.py +7 -0
  4420. mlsys/tasks/llm-vanilla-ffn-up-act-down-match/starter.py +5 -0
  4421. mlsys/tasks/llm-vanilla-ffn-up-act-down-match/task.md +62 -0
  4422. mlsys/tasks/llm-vectorize-a-loopy-student-sdpa/check.py +61 -0
  4423. mlsys/tasks/llm-vectorize-a-loopy-student-sdpa/gen_fixtures.py +1 -0
  4424. mlsys/tasks/llm-vectorize-a-loopy-student-sdpa/meta.json +27 -0
  4425. mlsys/tasks/llm-vectorize-a-loopy-student-sdpa/solution_ref.py +10 -0
  4426. mlsys/tasks/llm-vectorize-a-loopy-student-sdpa/starter.py +4 -0
  4427. mlsys/tasks/llm-vectorize-a-loopy-student-sdpa/task.md +69 -0
  4428. mlsys/tasks/llm-vectorized-gather-vs-python-loop/check.py +54 -0
  4429. mlsys/tasks/llm-vectorized-gather-vs-python-loop/gen_fixtures.py +1 -0
  4430. mlsys/tasks/llm-vectorized-gather-vs-python-loop/meta.json +27 -0
  4431. mlsys/tasks/llm-vectorized-gather-vs-python-loop/solution_ref.py +5 -0
  4432. mlsys/tasks/llm-vectorized-gather-vs-python-loop/starter.py +4 -0
  4433. mlsys/tasks/llm-vectorized-gather-vs-python-loop/task.md +41 -0
  4434. mlsys/tasks/llm-vectorized-rope-no-python-loop/check.py +76 -0
  4435. mlsys/tasks/llm-vectorized-rope-no-python-loop/gen_fixtures.py +3 -0
  4436. mlsys/tasks/llm-vectorized-rope-no-python-loop/meta.json +17 -0
  4437. mlsys/tasks/llm-vectorized-rope-no-python-loop/solution_ref.py +28 -0
  4438. mlsys/tasks/llm-vectorized-rope-no-python-loop/starter.py +5 -0
  4439. mlsys/tasks/llm-vectorized-rope-no-python-loop/task.md +56 -0
  4440. mlsys/tasks/llm-weight-absorbed-rmsnorm-fold-gamma-into-next-matmul/check.py +52 -0
  4441. mlsys/tasks/llm-weight-absorbed-rmsnorm-fold-gamma-into-next-matmul/gen_fixtures.py +1 -0
  4442. mlsys/tasks/llm-weight-absorbed-rmsnorm-fold-gamma-into-next-matmul/meta.json +22 -0
  4443. mlsys/tasks/llm-weight-absorbed-rmsnorm-fold-gamma-into-next-matmul/solution_ref.py +8 -0
  4444. mlsys/tasks/llm-weight-absorbed-rmsnorm-fold-gamma-into-next-matmul/starter.py +4 -0
  4445. mlsys/tasks/llm-weight-absorbed-rmsnorm-fold-gamma-into-next-matmul/task.md +84 -0
  4446. mlsys/tasks/llm-weight-tying-identity-check/check.py +49 -0
  4447. mlsys/tasks/llm-weight-tying-identity-check/gen_fixtures.py +1 -0
  4448. mlsys/tasks/llm-weight-tying-identity-check/meta.json +27 -0
  4449. mlsys/tasks/llm-weight-tying-identity-check/solution_ref.py +26 -0
  4450. mlsys/tasks/llm-weight-tying-identity-check/starter.py +12 -0
  4451. mlsys/tasks/llm-weight-tying-identity-check/task.md +79 -0
  4452. mlsys/tasks/llm-which-values-overflow-fp16-but-not-bf16/check.py +39 -0
  4453. mlsys/tasks/llm-which-values-overflow-fp16-but-not-bf16/gen_fixtures.py +1 -0
  4454. mlsys/tasks/llm-which-values-overflow-fp16-but-not-bf16/meta.json +22 -0
  4455. mlsys/tasks/llm-which-values-overflow-fp16-but-not-bf16/solution_ref.py +15 -0
  4456. mlsys/tasks/llm-which-values-overflow-fp16-but-not-bf16/starter.py +4 -0
  4457. mlsys/tasks/llm-which-values-overflow-fp16-but-not-bf16/task.md +43 -0
  4458. mlsys/tasks/llm-why-1-sqrt-d-entropy-inflation-derivation/check.py +31 -0
  4459. mlsys/tasks/llm-why-1-sqrt-d-entropy-inflation-derivation/gen_fixtures.py +1 -0
  4460. mlsys/tasks/llm-why-1-sqrt-d-entropy-inflation-derivation/meta.json +22 -0
  4461. mlsys/tasks/llm-why-1-sqrt-d-entropy-inflation-derivation/solution_ref.py +14 -0
  4462. mlsys/tasks/llm-why-1-sqrt-d-entropy-inflation-derivation/starter.py +4 -0
  4463. mlsys/tasks/llm-why-1-sqrt-d-entropy-inflation-derivation/task.md +82 -0
  4464. mlsys/tasks/llm-yarn-ramp-attention-temperature/check.py +67 -0
  4465. mlsys/tasks/llm-yarn-ramp-attention-temperature/gen_fixtures.py +1 -0
  4466. mlsys/tasks/llm-yarn-ramp-attention-temperature/meta.json +22 -0
  4467. mlsys/tasks/llm-yarn-ramp-attention-temperature/solution_ref.py +39 -0
  4468. mlsys/tasks/llm-yarn-ramp-attention-temperature/starter.py +4 -0
  4469. mlsys/tasks/llm-yarn-ramp-attention-temperature/task.md +111 -0
  4470. mlsys/tasks/llm-z-loss-logit-norm-regularization/check.py +46 -0
  4471. mlsys/tasks/llm-z-loss-logit-norm-regularization/gen_fixtures.py +1 -0
  4472. mlsys/tasks/llm-z-loss-logit-norm-regularization/meta.json +22 -0
  4473. mlsys/tasks/llm-z-loss-logit-norm-regularization/solution_ref.py +11 -0
  4474. mlsys/tasks/llm-z-loss-logit-norm-regularization/starter.py +4 -0
  4475. mlsys/tasks/llm-z-loss-logit-norm-regularization/task.md +85 -0
  4476. mlsys/tasks/num-1d-sliding-window-via-as-strided/check.py +106 -0
  4477. mlsys/tasks/num-1d-sliding-window-via-as-strided/gen_fixtures.py +1 -0
  4478. mlsys/tasks/num-1d-sliding-window-via-as-strided/meta.json +29 -0
  4479. mlsys/tasks/num-1d-sliding-window-via-as-strided/solution_ref.py +15 -0
  4480. mlsys/tasks/num-1d-sliding-window-via-as-strided/starter.py +11 -0
  4481. mlsys/tasks/num-1d-sliding-window-via-as-strided/task.md +82 -0
  4482. mlsys/tasks/num-ai-breakdown-of-attention-qk-t-softmax-pv/check.py +45 -0
  4483. mlsys/tasks/num-ai-breakdown-of-attention-qk-t-softmax-pv/gen_fixtures.py +1 -0
  4484. mlsys/tasks/num-ai-breakdown-of-attention-qk-t-softmax-pv/meta.json +22 -0
  4485. mlsys/tasks/num-ai-breakdown-of-attention-qk-t-softmax-pv/solution_ref.py +12 -0
  4486. mlsys/tasks/num-ai-breakdown-of-attention-qk-t-softmax-pv/starter.py +4 -0
  4487. mlsys/tasks/num-ai-breakdown-of-attention-qk-t-softmax-pv/task.md +94 -0
  4488. mlsys/tasks/num-ai-of-mxkxn-matmul-with-without-reuse/check.py +31 -0
  4489. mlsys/tasks/num-ai-of-mxkxn-matmul-with-without-reuse/gen_fixtures.py +1 -0
  4490. mlsys/tasks/num-ai-of-mxkxn-matmul-with-without-reuse/meta.json +22 -0
  4491. mlsys/tasks/num-ai-of-mxkxn-matmul-with-without-reuse/solution_ref.py +5 -0
  4492. mlsys/tasks/num-ai-of-mxkxn-matmul-with-without-reuse/starter.py +2 -0
  4493. mlsys/tasks/num-ai-of-mxkxn-matmul-with-without-reuse/task.md +61 -0
  4494. mlsys/tasks/num-attainable-flop-s-from-roofline/check.py +67 -0
  4495. mlsys/tasks/num-attainable-flop-s-from-roofline/gen_fixtures.py +1 -0
  4496. mlsys/tasks/num-attainable-flop-s-from-roofline/meta.json +32 -0
  4497. mlsys/tasks/num-attainable-flop-s-from-roofline/solution_ref.py +14 -0
  4498. mlsys/tasks/num-attainable-flop-s-from-roofline/starter.py +11 -0
  4499. mlsys/tasks/num-attainable-flop-s-from-roofline/task.md +82 -0
  4500. mlsys/tasks/num-back-substitution-upper-triangular/check.py +19 -0
  4501. mlsys/tasks/num-back-substitution-upper-triangular/gen_fixtures.py +1 -0
  4502. mlsys/tasks/num-back-substitution-upper-triangular/meta.json +22 -0
  4503. mlsys/tasks/num-back-substitution-upper-triangular/solution_ref.py +14 -0
  4504. mlsys/tasks/num-back-substitution-upper-triangular/starter.py +4 -0
  4505. mlsys/tasks/num-back-substitution-upper-triangular/task.md +41 -0
  4506. mlsys/tasks/num-batched-matmul-from-scratch/check.py +52 -0
  4507. mlsys/tasks/num-batched-matmul-from-scratch/gen_fixtures.py +1 -0
  4508. mlsys/tasks/num-batched-matmul-from-scratch/meta.json +22 -0
  4509. mlsys/tasks/num-batched-matmul-from-scratch/solution_ref.py +17 -0
  4510. mlsys/tasks/num-batched-matmul-from-scratch/starter.py +4 -0
  4511. mlsys/tasks/num-batched-matmul-from-scratch/task.md +77 -0
  4512. mlsys/tasks/num-bf16-memory-footprint-ratio-with-bounded-error/check.py +136 -0
  4513. mlsys/tasks/num-bf16-memory-footprint-ratio-with-bounded-error/fixtures/W.npy +0 -0
  4514. mlsys/tasks/num-bf16-memory-footprint-ratio-with-bounded-error/gen_fixtures.py +22 -0
  4515. mlsys/tasks/num-bf16-memory-footprint-ratio-with-bounded-error/meta.json +43 -0
  4516. mlsys/tasks/num-bf16-memory-footprint-ratio-with-bounded-error/solution_ref.py +16 -0
  4517. mlsys/tasks/num-bf16-memory-footprint-ratio-with-bounded-error/starter.py +11 -0
  4518. mlsys/tasks/num-bf16-memory-footprint-ratio-with-bounded-error/task.md +88 -0
  4519. mlsys/tasks/num-blelloch-work-efficient-scan/check.py +54 -0
  4520. mlsys/tasks/num-blelloch-work-efficient-scan/gen_fixtures.py +1 -0
  4521. mlsys/tasks/num-blelloch-work-efficient-scan/meta.json +22 -0
  4522. mlsys/tasks/num-blelloch-work-efficient-scan/solution_ref.py +25 -0
  4523. mlsys/tasks/num-blelloch-work-efficient-scan/starter.py +2 -0
  4524. mlsys/tasks/num-blelloch-work-efficient-scan/task.md +51 -0
  4525. mlsys/tasks/num-blocked-tiled-matmul-correctness/check.py +43 -0
  4526. mlsys/tasks/num-blocked-tiled-matmul-correctness/gen_fixtures.py +1 -0
  4527. mlsys/tasks/num-blocked-tiled-matmul-correctness/meta.json +22 -0
  4528. mlsys/tasks/num-blocked-tiled-matmul-correctness/solution_ref.py +22 -0
  4529. mlsys/tasks/num-blocked-tiled-matmul-correctness/starter.py +4 -0
  4530. mlsys/tasks/num-blocked-tiled-matmul-correctness/task.md +69 -0
  4531. mlsys/tasks/num-branchless-stable-sigmoid/check.py +79 -0
  4532. mlsys/tasks/num-branchless-stable-sigmoid/gen_fixtures.py +1 -0
  4533. mlsys/tasks/num-branchless-stable-sigmoid/meta.json +32 -0
  4534. mlsys/tasks/num-branchless-stable-sigmoid/solution_ref.py +10 -0
  4535. mlsys/tasks/num-branchless-stable-sigmoid/starter.py +10 -0
  4536. mlsys/tasks/num-branchless-stable-sigmoid/task.md +75 -0
  4537. mlsys/tasks/num-broadcasted-elementwise-op-from-scratch/check.py +61 -0
  4538. mlsys/tasks/num-broadcasted-elementwise-op-from-scratch/gen_fixtures.py +1 -0
  4539. mlsys/tasks/num-broadcasted-elementwise-op-from-scratch/meta.json +27 -0
  4540. mlsys/tasks/num-broadcasted-elementwise-op-from-scratch/solution_ref.py +22 -0
  4541. mlsys/tasks/num-broadcasted-elementwise-op-from-scratch/starter.py +4 -0
  4542. mlsys/tasks/num-broadcasted-elementwise-op-from-scratch/task.md +74 -0
  4543. mlsys/tasks/num-broadcasting-via-0-stride-as-strided/check.py +101 -0
  4544. mlsys/tasks/num-broadcasting-via-0-stride-as-strided/gen_fixtures.py +1 -0
  4545. mlsys/tasks/num-broadcasting-via-0-stride-as-strided/meta.json +32 -0
  4546. mlsys/tasks/num-broadcasting-via-0-stride-as-strided/solution_ref.py +29 -0
  4547. mlsys/tasks/num-broadcasting-via-0-stride-as-strided/starter.py +11 -0
  4548. mlsys/tasks/num-broadcasting-via-0-stride-as-strided/task.md +82 -0
  4549. mlsys/tasks/num-build-wengert-list-topo-order/check.py +61 -0
  4550. mlsys/tasks/num-build-wengert-list-topo-order/gen_fixtures.py +1 -0
  4551. mlsys/tasks/num-build-wengert-list-topo-order/meta.json +22 -0
  4552. mlsys/tasks/num-build-wengert-list-topo-order/solution_ref.py +21 -0
  4553. mlsys/tasks/num-build-wengert-list-topo-order/starter.py +2 -0
  4554. mlsys/tasks/num-build-wengert-list-topo-order/task.md +76 -0
  4555. mlsys/tasks/num-c-contiguous-strides-from-shape/check.py +21 -0
  4556. mlsys/tasks/num-c-contiguous-strides-from-shape/gen_fixtures.py +1 -0
  4557. mlsys/tasks/num-c-contiguous-strides-from-shape/meta.json +22 -0
  4558. mlsys/tasks/num-c-contiguous-strides-from-shape/solution_ref.py +5 -0
  4559. mlsys/tasks/num-c-contiguous-strides-from-shape/starter.py +4 -0
  4560. mlsys/tasks/num-c-contiguous-strides-from-shape/task.md +40 -0
  4561. mlsys/tasks/num-cancellation-free-quadratic-formula/check.py +53 -0
  4562. mlsys/tasks/num-cancellation-free-quadratic-formula/gen_fixtures.py +1 -0
  4563. mlsys/tasks/num-cancellation-free-quadratic-formula/meta.json +22 -0
  4564. mlsys/tasks/num-cancellation-free-quadratic-formula/solution_ref.py +8 -0
  4565. mlsys/tasks/num-cancellation-free-quadratic-formula/starter.py +2 -0
  4566. mlsys/tasks/num-cancellation-free-quadratic-formula/task.md +73 -0
  4567. mlsys/tasks/num-catch-a-broken-analytic-gradient/check.py +38 -0
  4568. mlsys/tasks/num-catch-a-broken-analytic-gradient/gen_fixtures.py +1 -0
  4569. mlsys/tasks/num-catch-a-broken-analytic-gradient/meta.json +22 -0
  4570. mlsys/tasks/num-catch-a-broken-analytic-gradient/solution_ref.py +7 -0
  4571. mlsys/tasks/num-catch-a-broken-analytic-gradient/starter.py +10 -0
  4572. mlsys/tasks/num-catch-a-broken-analytic-gradient/task.md +67 -0
  4573. mlsys/tasks/num-central-difference-gradient-check-scalar/check.py +96 -0
  4574. mlsys/tasks/num-central-difference-gradient-check-scalar/gen_fixtures.py +1 -0
  4575. mlsys/tasks/num-central-difference-gradient-check-scalar/meta.json +33 -0
  4576. mlsys/tasks/num-central-difference-gradient-check-scalar/solution_ref.py +18 -0
  4577. mlsys/tasks/num-central-difference-gradient-check-scalar/starter.py +15 -0
  4578. mlsys/tasks/num-central-difference-gradient-check-scalar/task.md +87 -0
  4579. mlsys/tasks/num-cgs-vs-mgs-loss-of-orthogonality/check.py +59 -0
  4580. mlsys/tasks/num-cgs-vs-mgs-loss-of-orthogonality/gen_fixtures.py +1 -0
  4581. mlsys/tasks/num-cgs-vs-mgs-loss-of-orthogonality/meta.json +29 -0
  4582. mlsys/tasks/num-cgs-vs-mgs-loss-of-orthogonality/solution_ref.py +36 -0
  4583. mlsys/tasks/num-cgs-vs-mgs-loss-of-orthogonality/starter.py +10 -0
  4584. mlsys/tasks/num-cgs-vs-mgs-loss-of-orthogonality/task.md +84 -0
  4585. mlsys/tasks/num-cholesky-lower-factor-reconstruct-a-ll-t/check.py +93 -0
  4586. mlsys/tasks/num-cholesky-lower-factor-reconstruct-a-ll-t/fixtures/A.npy +0 -0
  4587. mlsys/tasks/num-cholesky-lower-factor-reconstruct-a-ll-t/gen_fixtures.py +24 -0
  4588. mlsys/tasks/num-cholesky-lower-factor-reconstruct-a-ll-t/meta.json +44 -0
  4589. mlsys/tasks/num-cholesky-lower-factor-reconstruct-a-ll-t/solution_ref.py +18 -0
  4590. mlsys/tasks/num-cholesky-lower-factor-reconstruct-a-ll-t/starter.py +21 -0
  4591. mlsys/tasks/num-cholesky-lower-factor-reconstruct-a-ll-t/task.md +92 -0
  4592. mlsys/tasks/num-classical-gram-schmidt-qr/check.py +77 -0
  4593. mlsys/tasks/num-classical-gram-schmidt-qr/gen_fixtures.py +1 -0
  4594. mlsys/tasks/num-classical-gram-schmidt-qr/meta.json +22 -0
  4595. mlsys/tasks/num-classical-gram-schmidt-qr/solution_ref.py +19 -0
  4596. mlsys/tasks/num-classical-gram-schmidt-qr/starter.py +4 -0
  4597. mlsys/tasks/num-classical-gram-schmidt-qr/task.md +85 -0
  4598. mlsys/tasks/num-classify-c-f-neither-contiguity/check.py +46 -0
  4599. mlsys/tasks/num-classify-c-f-neither-contiguity/gen_fixtures.py +1 -0
  4600. mlsys/tasks/num-classify-c-f-neither-contiguity/meta.json +22 -0
  4601. mlsys/tasks/num-classify-c-f-neither-contiguity/solution_ref.py +12 -0
  4602. mlsys/tasks/num-classify-c-f-neither-contiguity/starter.py +2 -0
  4603. mlsys/tasks/num-classify-c-f-neither-contiguity/task.md +50 -0
  4604. mlsys/tasks/num-classify-compute-vs-memory-bound/check.py +54 -0
  4605. mlsys/tasks/num-classify-compute-vs-memory-bound/gen_fixtures.py +1 -0
  4606. mlsys/tasks/num-classify-compute-vs-memory-bound/meta.json +22 -0
  4607. mlsys/tasks/num-classify-compute-vs-memory-bound/solution_ref.py +14 -0
  4608. mlsys/tasks/num-classify-compute-vs-memory-bound/starter.py +2 -0
  4609. mlsys/tasks/num-classify-compute-vs-memory-bound/task.md +55 -0
  4610. mlsys/tasks/num-classify-raw-32-bit-patterns-without-float-compares/check.py +43 -0
  4611. mlsys/tasks/num-classify-raw-32-bit-patterns-without-float-compares/gen_fixtures.py +1 -0
  4612. mlsys/tasks/num-classify-raw-32-bit-patterns-without-float-compares/meta.json +22 -0
  4613. mlsys/tasks/num-classify-raw-32-bit-patterns-without-float-compares/solution_ref.py +28 -0
  4614. mlsys/tasks/num-classify-raw-32-bit-patterns-without-float-compares/starter.py +4 -0
  4615. mlsys/tasks/num-classify-raw-32-bit-patterns-without-float-compares/task.md +61 -0
  4616. mlsys/tasks/num-complex-step-differentiation/check.py +32 -0
  4617. mlsys/tasks/num-complex-step-differentiation/gen_fixtures.py +1 -0
  4618. mlsys/tasks/num-complex-step-differentiation/meta.json +22 -0
  4619. mlsys/tasks/num-complex-step-differentiation/solution_ref.py +5 -0
  4620. mlsys/tasks/num-complex-step-differentiation/starter.py +3 -0
  4621. mlsys/tasks/num-complex-step-differentiation/task.md +95 -0
  4622. mlsys/tasks/num-compute-arithmetic-intensity-of-saxpy-gemm/check.py +64 -0
  4623. mlsys/tasks/num-compute-arithmetic-intensity-of-saxpy-gemm/gen_fixtures.py +1 -0
  4624. mlsys/tasks/num-compute-arithmetic-intensity-of-saxpy-gemm/meta.json +32 -0
  4625. mlsys/tasks/num-compute-arithmetic-intensity-of-saxpy-gemm/solution_ref.py +20 -0
  4626. mlsys/tasks/num-compute-arithmetic-intensity-of-saxpy-gemm/starter.py +3 -0
  4627. mlsys/tasks/num-compute-arithmetic-intensity-of-saxpy-gemm/task.md +88 -0
  4628. mlsys/tasks/num-condition-number-of-function-evaluation/check.py +33 -0
  4629. mlsys/tasks/num-condition-number-of-function-evaluation/gen_fixtures.py +1 -0
  4630. mlsys/tasks/num-condition-number-of-function-evaluation/meta.json +22 -0
  4631. mlsys/tasks/num-condition-number-of-function-evaluation/solution_ref.py +6 -0
  4632. mlsys/tasks/num-condition-number-of-function-evaluation/starter.py +4 -0
  4633. mlsys/tasks/num-condition-number-of-function-evaluation/task.md +67 -0
  4634. mlsys/tasks/num-condition-number-via-singular-values/check.py +40 -0
  4635. mlsys/tasks/num-condition-number-via-singular-values/gen_fixtures.py +1 -0
  4636. mlsys/tasks/num-condition-number-via-singular-values/meta.json +22 -0
  4637. mlsys/tasks/num-condition-number-via-singular-values/solution_ref.py +14 -0
  4638. mlsys/tasks/num-condition-number-via-singular-values/starter.py +5 -0
  4639. mlsys/tasks/num-condition-number-via-singular-values/task.md +72 -0
  4640. mlsys/tasks/num-construct-a-double-rounding-counterexample/check.py +74 -0
  4641. mlsys/tasks/num-construct-a-double-rounding-counterexample/gen_fixtures.py +1 -0
  4642. mlsys/tasks/num-construct-a-double-rounding-counterexample/meta.json +37 -0
  4643. mlsys/tasks/num-construct-a-double-rounding-counterexample/solution_ref.py +18 -0
  4644. mlsys/tasks/num-construct-a-double-rounding-counterexample/starter.py +12 -0
  4645. mlsys/tasks/num-construct-a-double-rounding-counterexample/task.md +81 -0
  4646. mlsys/tasks/num-construct-a-non-associativity-triple/check.py +40 -0
  4647. mlsys/tasks/num-construct-a-non-associativity-triple/gen_fixtures.py +1 -0
  4648. mlsys/tasks/num-construct-a-non-associativity-triple/meta.json +22 -0
  4649. mlsys/tasks/num-construct-a-non-associativity-triple/solution_ref.py +9 -0
  4650. mlsys/tasks/num-construct-a-non-associativity-triple/starter.py +4 -0
  4651. mlsys/tasks/num-construct-a-non-associativity-triple/task.md +68 -0
  4652. mlsys/tasks/num-convergence-rate-lambda2-lambda1/check.py +27 -0
  4653. mlsys/tasks/num-convergence-rate-lambda2-lambda1/gen_fixtures.py +1 -0
  4654. mlsys/tasks/num-convergence-rate-lambda2-lambda1/meta.json +22 -0
  4655. mlsys/tasks/num-convergence-rate-lambda2-lambda1/solution_ref.py +30 -0
  4656. mlsys/tasks/num-convergence-rate-lambda2-lambda1/starter.py +4 -0
  4657. mlsys/tasks/num-convergence-rate-lambda2-lambda1/task.md +74 -0
  4658. mlsys/tasks/num-cross-entropy-gradient-softmax-onehot/check.py +99 -0
  4659. mlsys/tasks/num-cross-entropy-gradient-softmax-onehot/gen_fixtures.py +5 -0
  4660. mlsys/tasks/num-cross-entropy-gradient-softmax-onehot/meta.json +18 -0
  4661. mlsys/tasks/num-cross-entropy-gradient-softmax-onehot/solution_ref.py +15 -0
  4662. mlsys/tasks/num-cross-entropy-gradient-softmax-onehot/starter.py +17 -0
  4663. mlsys/tasks/num-cross-entropy-gradient-softmax-onehot/task.md +67 -0
  4664. mlsys/tasks/num-debug-decompose-that-mishandles-subnormals-bias-sign/check.py +99 -0
  4665. mlsys/tasks/num-debug-decompose-that-mishandles-subnormals-bias-sign/gen_fixtures.py +6 -0
  4666. mlsys/tasks/num-debug-decompose-that-mishandles-subnormals-bias-sign/meta.json +33 -0
  4667. mlsys/tasks/num-debug-decompose-that-mishandles-subnormals-bias-sign/solution_ref.py +28 -0
  4668. mlsys/tasks/num-debug-decompose-that-mishandles-subnormals-bias-sign/starter.py +28 -0
  4669. mlsys/tasks/num-debug-decompose-that-mishandles-subnormals-bias-sign/task.md +90 -0
  4670. mlsys/tasks/num-deflation-for-second-eigenpair/check.py +36 -0
  4671. mlsys/tasks/num-deflation-for-second-eigenpair/gen_fixtures.py +1 -0
  4672. mlsys/tasks/num-deflation-for-second-eigenpair/meta.json +24 -0
  4673. mlsys/tasks/num-deflation-for-second-eigenpair/solution_ref.py +22 -0
  4674. mlsys/tasks/num-deflation-for-second-eigenpair/starter.py +7 -0
  4675. mlsys/tasks/num-deflation-for-second-eigenpair/task.md +67 -0
  4676. mlsys/tasks/num-derive-eps-for-fp32-fp16-bf16-by-bit-stepping-from-1-0/check.py +32 -0
  4677. mlsys/tasks/num-derive-eps-for-fp32-fp16-bf16-by-bit-stepping-from-1-0/gen_fixtures.py +1 -0
  4678. mlsys/tasks/num-derive-eps-for-fp32-fp16-bf16-by-bit-stepping-from-1-0/meta.json +22 -0
  4679. mlsys/tasks/num-derive-eps-for-fp32-fp16-bf16-by-bit-stepping-from-1-0/solution_ref.py +12 -0
  4680. mlsys/tasks/num-derive-eps-for-fp32-fp16-bf16-by-bit-stepping-from-1-0/starter.py +4 -0
  4681. mlsys/tasks/num-derive-eps-for-fp32-fp16-bf16-by-bit-stepping-from-1-0/task.md +34 -0
  4682. mlsys/tasks/num-detect-non-spd-matrices/check.py +106 -0
  4683. mlsys/tasks/num-detect-non-spd-matrices/gen_fixtures.py +1 -0
  4684. mlsys/tasks/num-detect-non-spd-matrices/meta.json +33 -0
  4685. mlsys/tasks/num-detect-non-spd-matrices/solution_ref.py +32 -0
  4686. mlsys/tasks/num-detect-non-spd-matrices/starter.py +19 -0
  4687. mlsys/tasks/num-detect-non-spd-matrices/task.md +93 -0
  4688. mlsys/tasks/num-determinant-from-lu/check.py +31 -0
  4689. mlsys/tasks/num-determinant-from-lu/gen_fixtures.py +1 -0
  4690. mlsys/tasks/num-determinant-from-lu/meta.json +22 -0
  4691. mlsys/tasks/num-determinant-from-lu/solution_ref.py +23 -0
  4692. mlsys/tasks/num-determinant-from-lu/starter.py +4 -0
  4693. mlsys/tasks/num-determinant-from-lu/task.md +58 -0
  4694. mlsys/tasks/num-dot-product-from-scratch/check.py +25 -0
  4695. mlsys/tasks/num-dot-product-from-scratch/gen_fixtures.py +1 -0
  4696. mlsys/tasks/num-dot-product-from-scratch/meta.json +22 -0
  4697. mlsys/tasks/num-dot-product-from-scratch/solution_ref.py +5 -0
  4698. mlsys/tasks/num-dot-product-from-scratch/starter.py +4 -0
  4699. mlsys/tasks/num-dot-product-from-scratch/task.md +39 -0
  4700. mlsys/tasks/num-error-growth-naive-vs-kahan-vs-pairwise/check.py +108 -0
  4701. mlsys/tasks/num-error-growth-naive-vs-kahan-vs-pairwise/gen_fixtures.py +1 -0
  4702. mlsys/tasks/num-error-growth-naive-vs-kahan-vs-pairwise/meta.json +27 -0
  4703. mlsys/tasks/num-error-growth-naive-vs-kahan-vs-pairwise/solution_ref.py +72 -0
  4704. mlsys/tasks/num-error-growth-naive-vs-kahan-vs-pairwise/starter.py +4 -0
  4705. mlsys/tasks/num-error-growth-naive-vs-kahan-vs-pairwise/task.md +96 -0
  4706. mlsys/tasks/num-exact-rational-value-of-each-float/check.py +73 -0
  4707. mlsys/tasks/num-exact-rational-value-of-each-float/fixtures/values.npy +0 -0
  4708. mlsys/tasks/num-exact-rational-value-of-each-float/gen_fixtures.py +48 -0
  4709. mlsys/tasks/num-exact-rational-value-of-each-float/meta.json +35 -0
  4710. mlsys/tasks/num-exact-rational-value-of-each-float/solution_ref.py +42 -0
  4711. mlsys/tasks/num-exact-rational-value-of-each-float/starter.py +9 -0
  4712. mlsys/tasks/num-exact-rational-value-of-each-float/task.md +63 -0
  4713. mlsys/tasks/num-exclusive-scan/check.py +33 -0
  4714. mlsys/tasks/num-exclusive-scan/gen_fixtures.py +1 -0
  4715. mlsys/tasks/num-exclusive-scan/meta.json +22 -0
  4716. mlsys/tasks/num-exclusive-scan/solution_ref.py +15 -0
  4717. mlsys/tasks/num-exclusive-scan/starter.py +4 -0
  4718. mlsys/tasks/num-exclusive-scan/task.md +38 -0
  4719. mlsys/tasks/num-expm1-for-tiny-x/check.py +72 -0
  4720. mlsys/tasks/num-expm1-for-tiny-x/gen_fixtures.py +1 -0
  4721. mlsys/tasks/num-expm1-for-tiny-x/meta.json +27 -0
  4722. mlsys/tasks/num-expm1-for-tiny-x/solution_ref.py +16 -0
  4723. mlsys/tasks/num-expm1-for-tiny-x/starter.py +10 -0
  4724. mlsys/tasks/num-expm1-for-tiny-x/task.md +84 -0
  4725. mlsys/tasks/num-extract-the-sign-bit/check.py +38 -0
  4726. mlsys/tasks/num-extract-the-sign-bit/gen_fixtures.py +1 -0
  4727. mlsys/tasks/num-extract-the-sign-bit/meta.json +22 -0
  4728. mlsys/tasks/num-extract-the-sign-bit/solution_ref.py +8 -0
  4729. mlsys/tasks/num-extract-the-sign-bit/starter.py +8 -0
  4730. mlsys/tasks/num-extract-the-sign-bit/task.md +46 -0
  4731. mlsys/tasks/num-f-contiguous-strides-from-shape/check.py +22 -0
  4732. mlsys/tasks/num-f-contiguous-strides-from-shape/gen_fixtures.py +1 -0
  4733. mlsys/tasks/num-f-contiguous-strides-from-shape/meta.json +22 -0
  4734. mlsys/tasks/num-f-contiguous-strides-from-shape/solution_ref.py +13 -0
  4735. mlsys/tasks/num-f-contiguous-strides-from-shape/starter.py +4 -0
  4736. mlsys/tasks/num-f-contiguous-strides-from-shape/task.md +31 -0
  4737. mlsys/tasks/num-fast-inverse-sqrt-bit-hack-one-newton-step/check.py +80 -0
  4738. mlsys/tasks/num-fast-inverse-sqrt-bit-hack-one-newton-step/gen_fixtures.py +2 -0
  4739. mlsys/tasks/num-fast-inverse-sqrt-bit-hack-one-newton-step/meta.json +36 -0
  4740. mlsys/tasks/num-fast-inverse-sqrt-bit-hack-one-newton-step/solution_ref.py +20 -0
  4741. mlsys/tasks/num-fast-inverse-sqrt-bit-hack-one-newton-step/starter.py +19 -0
  4742. mlsys/tasks/num-fast-inverse-sqrt-bit-hack-one-newton-step/task.md +83 -0
  4743. mlsys/tasks/num-find-fp16-overflow-bf16-survives-boundary/check.py +59 -0
  4744. mlsys/tasks/num-find-fp16-overflow-bf16-survives-boundary/gen_fixtures.py +1 -0
  4745. mlsys/tasks/num-find-fp16-overflow-bf16-survives-boundary/meta.json +22 -0
  4746. mlsys/tasks/num-find-fp16-overflow-bf16-survives-boundary/solution_ref.py +25 -0
  4747. mlsys/tasks/num-find-fp16-overflow-bf16-survives-boundary/starter.py +7 -0
  4748. mlsys/tasks/num-find-fp16-overflow-bf16-survives-boundary/task.md +43 -0
  4749. mlsys/tasks/num-finite-difference-step-u-curve-minimum/check.py +37 -0
  4750. mlsys/tasks/num-finite-difference-step-u-curve-minimum/gen_fixtures.py +1 -0
  4751. mlsys/tasks/num-finite-difference-step-u-curve-minimum/meta.json +22 -0
  4752. mlsys/tasks/num-finite-difference-step-u-curve-minimum/solution_ref.py +14 -0
  4753. mlsys/tasks/num-finite-difference-step-u-curve-minimum/starter.py +2 -0
  4754. mlsys/tasks/num-finite-difference-step-u-curve-minimum/task.md +67 -0
  4755. mlsys/tasks/num-fix-bad-pivot-selection/check.py +66 -0
  4756. mlsys/tasks/num-fix-bad-pivot-selection/fixtures/A.npy +0 -0
  4757. mlsys/tasks/num-fix-bad-pivot-selection/gen_fixtures.py +36 -0
  4758. mlsys/tasks/num-fix-bad-pivot-selection/meta.json +24 -0
  4759. mlsys/tasks/num-fix-bad-pivot-selection/solution_ref.py +41 -0
  4760. mlsys/tasks/num-fix-bad-pivot-selection/starter.py +42 -0
  4761. mlsys/tasks/num-fix-bad-pivot-selection/task.md +86 -0
  4762. mlsys/tasks/num-fix-cholesky-missing-diagonal-sqrt/check.py +43 -0
  4763. mlsys/tasks/num-fix-cholesky-missing-diagonal-sqrt/gen_fixtures.py +0 -0
  4764. mlsys/tasks/num-fix-cholesky-missing-diagonal-sqrt/meta.json +27 -0
  4765. mlsys/tasks/num-fix-cholesky-missing-diagonal-sqrt/solution_ref.py +22 -0
  4766. mlsys/tasks/num-fix-cholesky-missing-diagonal-sqrt/starter.py +22 -0
  4767. mlsys/tasks/num-fix-cholesky-missing-diagonal-sqrt/task.md +58 -0
  4768. mlsys/tasks/num-fix-householder-sign-cancellation/check.py +40 -0
  4769. mlsys/tasks/num-fix-householder-sign-cancellation/gen_fixtures.py +1 -0
  4770. mlsys/tasks/num-fix-householder-sign-cancellation/meta.json +22 -0
  4771. mlsys/tasks/num-fix-householder-sign-cancellation/solution_ref.py +18 -0
  4772. mlsys/tasks/num-fix-householder-sign-cancellation/starter.py +15 -0
  4773. mlsys/tasks/num-fix-householder-sign-cancellation/task.md +74 -0
  4774. mlsys/tasks/num-fix-missing-axis-sum-after-broadcast/check.py +47 -0
  4775. mlsys/tasks/num-fix-missing-axis-sum-after-broadcast/gen_fixtures.py +1 -0
  4776. mlsys/tasks/num-fix-missing-axis-sum-after-broadcast/meta.json +22 -0
  4777. mlsys/tasks/num-fix-missing-axis-sum-after-broadcast/solution_ref.py +15 -0
  4778. mlsys/tasks/num-fix-missing-axis-sum-after-broadcast/starter.py +15 -0
  4779. mlsys/tasks/num-fix-missing-axis-sum-after-broadcast/task.md +66 -0
  4780. mlsys/tasks/num-fix-nan-cross-entropy-via-fusion/check.py +59 -0
  4781. mlsys/tasks/num-fix-nan-cross-entropy-via-fusion/gen_fixtures.py +1 -0
  4782. mlsys/tasks/num-fix-nan-cross-entropy-via-fusion/meta.json +22 -0
  4783. mlsys/tasks/num-fix-nan-cross-entropy-via-fusion/solution_ref.py +23 -0
  4784. mlsys/tasks/num-fix-nan-cross-entropy-via-fusion/starter.py +12 -0
  4785. mlsys/tasks/num-fix-nan-cross-entropy-via-fusion/task.md +51 -0
  4786. mlsys/tasks/num-fix-nan-producing-naive-softmax/check.py +35 -0
  4787. mlsys/tasks/num-fix-nan-producing-naive-softmax/gen_fixtures.py +1 -0
  4788. mlsys/tasks/num-fix-nan-producing-naive-softmax/meta.json +22 -0
  4789. mlsys/tasks/num-fix-nan-producing-naive-softmax/solution_ref.py +7 -0
  4790. mlsys/tasks/num-fix-nan-producing-naive-softmax/starter.py +4 -0
  4791. mlsys/tasks/num-fix-nan-producing-naive-softmax/task.md +39 -0
  4792. mlsys/tasks/num-fix-negative-variance-naive-formula/check.py +27 -0
  4793. mlsys/tasks/num-fix-negative-variance-naive-formula/gen_fixtures.py +1 -0
  4794. mlsys/tasks/num-fix-negative-variance-naive-formula/meta.json +22 -0
  4795. mlsys/tasks/num-fix-negative-variance-naive-formula/solution_ref.py +21 -0
  4796. mlsys/tasks/num-fix-negative-variance-naive-formula/starter.py +7 -0
  4797. mlsys/tasks/num-fix-negative-variance-naive-formula/task.md +85 -0
  4798. mlsys/tasks/num-fix-off-by-one-in-back-sub/check.py +31 -0
  4799. mlsys/tasks/num-fix-off-by-one-in-back-sub/gen_fixtures.py +1 -0
  4800. mlsys/tasks/num-fix-off-by-one-in-back-sub/meta.json +22 -0
  4801. mlsys/tasks/num-fix-off-by-one-in-back-sub/solution_ref.py +12 -0
  4802. mlsys/tasks/num-fix-off-by-one-in-back-sub/starter.py +12 -0
  4803. mlsys/tasks/num-fix-off-by-one-in-back-sub/task.md +59 -0
  4804. mlsys/tasks/num-fix-one-pass-variance-that-returns-negatives/check.py +37 -0
  4805. mlsys/tasks/num-fix-one-pass-variance-that-returns-negatives/gen_fixtures.py +1 -0
  4806. mlsys/tasks/num-fix-one-pass-variance-that-returns-negatives/meta.json +22 -0
  4807. mlsys/tasks/num-fix-one-pass-variance-that-returns-negatives/solution_ref.py +8 -0
  4808. mlsys/tasks/num-fix-one-pass-variance-that-returns-negatives/starter.py +13 -0
  4809. mlsys/tasks/num-fix-one-pass-variance-that-returns-negatives/task.md +74 -0
  4810. mlsys/tasks/num-fix-out-of-bounds-as-strided/check.py +59 -0
  4811. mlsys/tasks/num-fix-out-of-bounds-as-strided/gen_fixtures.py +1 -0
  4812. mlsys/tasks/num-fix-out-of-bounds-as-strided/meta.json +22 -0
  4813. mlsys/tasks/num-fix-out-of-bounds-as-strided/solution_ref.py +14 -0
  4814. mlsys/tasks/num-fix-out-of-bounds-as-strided/starter.py +14 -0
  4815. mlsys/tasks/num-fix-out-of-bounds-as-strided/task.md +74 -0
  4816. mlsys/tasks/num-fix-overflowing-softplus/check.py +22 -0
  4817. mlsys/tasks/num-fix-overflowing-softplus/gen_fixtures.py +1 -0
  4818. mlsys/tasks/num-fix-overflowing-softplus/meta.json +22 -0
  4819. mlsys/tasks/num-fix-overflowing-softplus/solution_ref.py +5 -0
  4820. mlsys/tasks/num-fix-overflowing-softplus/starter.py +5 -0
  4821. mlsys/tasks/num-fix-overflowing-softplus/task.md +51 -0
  4822. mlsys/tasks/num-fix-transposed-index-matmul-bug/check.py +27 -0
  4823. mlsys/tasks/num-fix-transposed-index-matmul-bug/gen_fixtures.py +1 -0
  4824. mlsys/tasks/num-fix-transposed-index-matmul-bug/meta.json +22 -0
  4825. mlsys/tasks/num-fix-transposed-index-matmul-bug/solution_ref.py +18 -0
  4826. mlsys/tasks/num-fix-transposed-index-matmul-bug/starter.py +18 -0
  4827. mlsys/tasks/num-fix-transposed-index-matmul-bug/task.md +63 -0
  4828. mlsys/tasks/num-fix-truncating-cast-to-ties-to-even/check.py +33 -0
  4829. mlsys/tasks/num-fix-truncating-cast-to-ties-to-even/gen_fixtures.py +1 -0
  4830. mlsys/tasks/num-fix-truncating-cast-to-ties-to-even/meta.json +22 -0
  4831. mlsys/tasks/num-fix-truncating-cast-to-ties-to-even/solution_ref.py +5 -0
  4832. mlsys/tasks/num-fix-truncating-cast-to-ties-to-even/starter.py +10 -0
  4833. mlsys/tasks/num-fix-truncating-cast-to-ties-to-even/task.md +65 -0
  4834. mlsys/tasks/num-fix-underflowing-log-likelihood/check.py +25 -0
  4835. mlsys/tasks/num-fix-underflowing-log-likelihood/gen_fixtures.py +1 -0
  4836. mlsys/tasks/num-fix-underflowing-log-likelihood/meta.json +22 -0
  4837. mlsys/tasks/num-fix-underflowing-log-likelihood/solution_ref.py +7 -0
  4838. mlsys/tasks/num-fix-underflowing-log-likelihood/starter.py +7 -0
  4839. mlsys/tasks/num-fix-underflowing-log-likelihood/task.md +82 -0
  4840. mlsys/tasks/num-fix-wrong-alignment-broadcast-left-vs-right/check.py +43 -0
  4841. mlsys/tasks/num-fix-wrong-alignment-broadcast-left-vs-right/gen_fixtures.py +1 -0
  4842. mlsys/tasks/num-fix-wrong-alignment-broadcast-left-vs-right/meta.json +22 -0
  4843. mlsys/tasks/num-fix-wrong-alignment-broadcast-left-vs-right/solution_ref.py +5 -0
  4844. mlsys/tasks/num-fix-wrong-alignment-broadcast-left-vs-right/starter.py +14 -0
  4845. mlsys/tasks/num-fix-wrong-alignment-broadcast-left-vs-right/task.md +48 -0
  4846. mlsys/tasks/num-fix-wrong-topo-order-breaking-grads/check.py +81 -0
  4847. mlsys/tasks/num-fix-wrong-topo-order-breaking-grads/gen_fixtures.py +0 -0
  4848. mlsys/tasks/num-fix-wrong-topo-order-breaking-grads/meta.json +22 -0
  4849. mlsys/tasks/num-fix-wrong-topo-order-breaking-grads/solution_ref.py +68 -0
  4850. mlsys/tasks/num-fix-wrong-topo-order-breaking-grads/starter.py +66 -0
  4851. mlsys/tasks/num-fix-wrong-topo-order-breaking-grads/task.md +73 -0
  4852. mlsys/tasks/num-fix-wrong-transpose-vjp/check.py +56 -0
  4853. mlsys/tasks/num-fix-wrong-transpose-vjp/gen_fixtures.py +1 -0
  4854. mlsys/tasks/num-fix-wrong-transpose-vjp/meta.json +22 -0
  4855. mlsys/tasks/num-fix-wrong-transpose-vjp/solution_ref.py +7 -0
  4856. mlsys/tasks/num-fix-wrong-transpose-vjp/starter.py +9 -0
  4857. mlsys/tasks/num-fix-wrong-transpose-vjp/task.md +72 -0
  4858. mlsys/tasks/num-flat-index-gather-from-shape-strides-offset/check.py +64 -0
  4859. mlsys/tasks/num-flat-index-gather-from-shape-strides-offset/gen_fixtures.py +1 -0
  4860. mlsys/tasks/num-flat-index-gather-from-shape-strides-offset/meta.json +22 -0
  4861. mlsys/tasks/num-flat-index-gather-from-shape-strides-offset/solution_ref.py +33 -0
  4862. mlsys/tasks/num-flat-index-gather-from-shape-strides-offset/starter.py +23 -0
  4863. mlsys/tasks/num-flat-index-gather-from-shape-strides-offset/task.md +72 -0
  4864. mlsys/tasks/num-forward-error-cond-backward-error/check.py +58 -0
  4865. mlsys/tasks/num-forward-error-cond-backward-error/gen_fixtures.py +1 -0
  4866. mlsys/tasks/num-forward-error-cond-backward-error/meta.json +27 -0
  4867. mlsys/tasks/num-forward-error-cond-backward-error/solution_ref.py +12 -0
  4868. mlsys/tasks/num-forward-error-cond-backward-error/starter.py +4 -0
  4869. mlsys/tasks/num-forward-error-cond-backward-error/task.md +84 -0
  4870. mlsys/tasks/num-forward-substitution-lower-triangular/check.py +62 -0
  4871. mlsys/tasks/num-forward-substitution-lower-triangular/gen_fixtures.py +1 -0
  4872. mlsys/tasks/num-forward-substitution-lower-triangular/meta.json +27 -0
  4873. mlsys/tasks/num-forward-substitution-lower-triangular/solution_ref.py +16 -0
  4874. mlsys/tasks/num-forward-substitution-lower-triangular/starter.py +7 -0
  4875. mlsys/tasks/num-forward-substitution-lower-triangular/task.md +74 -0
  4876. mlsys/tasks/num-forward-vs-central-difference-error-order/check.py +56 -0
  4877. mlsys/tasks/num-forward-vs-central-difference-error-order/gen_fixtures.py +1 -0
  4878. mlsys/tasks/num-forward-vs-central-difference-error-order/meta.json +22 -0
  4879. mlsys/tasks/num-forward-vs-central-difference-error-order/solution_ref.py +19 -0
  4880. mlsys/tasks/num-forward-vs-central-difference-error-order/starter.py +4 -0
  4881. mlsys/tasks/num-forward-vs-central-difference-error-order/task.md +91 -0
  4882. mlsys/tasks/num-fp32-bf16-truncate-rne-round-trip/check.py +50 -0
  4883. mlsys/tasks/num-fp32-bf16-truncate-rne-round-trip/gen_fixtures.py +1 -0
  4884. mlsys/tasks/num-fp32-bf16-truncate-rne-round-trip/meta.json +22 -0
  4885. mlsys/tasks/num-fp32-bf16-truncate-rne-round-trip/solution_ref.py +11 -0
  4886. mlsys/tasks/num-fp32-bf16-truncate-rne-round-trip/starter.py +6 -0
  4887. mlsys/tasks/num-fp32-bf16-truncate-rne-round-trip/task.md +77 -0
  4888. mlsys/tasks/num-fp64-fp32-cast-by-hand-with-grs-matching-astype/check.py +53 -0
  4889. mlsys/tasks/num-fp64-fp32-cast-by-hand-with-grs-matching-astype/gen_fixtures.py +2 -0
  4890. mlsys/tasks/num-fp64-fp32-cast-by-hand-with-grs-matching-astype/meta.json +22 -0
  4891. mlsys/tasks/num-fp64-fp32-cast-by-hand-with-grs-matching-astype/solution_ref.py +40 -0
  4892. mlsys/tasks/num-fp64-fp32-cast-by-hand-with-grs-matching-astype/starter.py +10 -0
  4893. mlsys/tasks/num-fp64-fp32-cast-by-hand-with-grs-matching-astype/task.md +81 -0
  4894. mlsys/tasks/num-fp8-e4m3-encode-with-subnormals-saturation/check.py +38 -0
  4895. mlsys/tasks/num-fp8-e4m3-encode-with-subnormals-saturation/gen_fixtures.py +1 -0
  4896. mlsys/tasks/num-fp8-e4m3-encode-with-subnormals-saturation/meta.json +28 -0
  4897. mlsys/tasks/num-fp8-e4m3-encode-with-subnormals-saturation/solution_ref.py +12 -0
  4898. mlsys/tasks/num-fp8-e4m3-encode-with-subnormals-saturation/starter.py +7 -0
  4899. mlsys/tasks/num-fp8-e4m3-encode-with-subnormals-saturation/task.md +59 -0
  4900. mlsys/tasks/num-fp8-e5m2-encode-decode-round-trip/check.py +128 -0
  4901. mlsys/tasks/num-fp8-e5m2-encode-decode-round-trip/gen_fixtures.py +1 -0
  4902. mlsys/tasks/num-fp8-e5m2-encode-decode-round-trip/meta.json +22 -0
  4903. mlsys/tasks/num-fp8-e5m2-encode-decode-round-trip/solution_ref.py +56 -0
  4904. mlsys/tasks/num-fp8-e5m2-encode-decode-round-trip/starter.py +54 -0
  4905. mlsys/tasks/num-fp8-e5m2-encode-decode-round-trip/task.md +83 -0
  4906. mlsys/tasks/num-full-field-decompose-sign-exp-mantissa-with-no-struct-frexp/check.py +20 -0
  4907. mlsys/tasks/num-full-field-decompose-sign-exp-mantissa-with-no-struct-frexp/gen_fixtures.py +1 -0
  4908. mlsys/tasks/num-full-field-decompose-sign-exp-mantissa-with-no-struct-frexp/meta.json +22 -0
  4909. mlsys/tasks/num-full-field-decompose-sign-exp-mantissa-with-no-struct-frexp/solution_ref.py +25 -0
  4910. mlsys/tasks/num-full-field-decompose-sign-exp-mantissa-with-no-struct-frexp/starter.py +4 -0
  4911. mlsys/tasks/num-full-field-decompose-sign-exp-mantissa-with-no-struct-frexp/task.md +60 -0
  4912. mlsys/tasks/num-fully-fused-forward-backward-log-softmax-nll/check.py +42 -0
  4913. mlsys/tasks/num-fully-fused-forward-backward-log-softmax-nll/gen_fixtures.py +1 -0
  4914. mlsys/tasks/num-fully-fused-forward-backward-log-softmax-nll/meta.json +27 -0
  4915. mlsys/tasks/num-fully-fused-forward-backward-log-softmax-nll/solution_ref.py +23 -0
  4916. mlsys/tasks/num-fully-fused-forward-backward-log-softmax-nll/starter.py +6 -0
  4917. mlsys/tasks/num-fully-fused-forward-backward-log-softmax-nll/task.md +73 -0
  4918. mlsys/tasks/num-fused-cross-entropy-from-logits/check.py +29 -0
  4919. mlsys/tasks/num-fused-cross-entropy-from-logits/fixtures/logits.npy +0 -0
  4920. mlsys/tasks/num-fused-cross-entropy-from-logits/fixtures/targets.npy +0 -0
  4921. mlsys/tasks/num-fused-cross-entropy-from-logits/gen_fixtures.py +33 -0
  4922. mlsys/tasks/num-fused-cross-entropy-from-logits/meta.json +25 -0
  4923. mlsys/tasks/num-fused-cross-entropy-from-logits/solution_ref.py +12 -0
  4924. mlsys/tasks/num-fused-cross-entropy-from-logits/starter.py +7 -0
  4925. mlsys/tasks/num-fused-cross-entropy-from-logits/task.md +58 -0
  4926. mlsys/tasks/num-fused-streaming-log-softmax-matching-flash-numerics/check.py +43 -0
  4927. mlsys/tasks/num-fused-streaming-log-softmax-matching-flash-numerics/gen_fixtures.py +1 -0
  4928. mlsys/tasks/num-fused-streaming-log-softmax-matching-flash-numerics/meta.json +22 -0
  4929. mlsys/tasks/num-fused-streaming-log-softmax-matching-flash-numerics/solution_ref.py +12 -0
  4930. mlsys/tasks/num-fused-streaming-log-softmax-matching-flash-numerics/starter.py +4 -0
  4931. mlsys/tasks/num-fused-streaming-log-softmax-matching-flash-numerics/task.md +68 -0
  4932. mlsys/tasks/num-fusion-improves-ai-modeled-traffic/check.py +30 -0
  4933. mlsys/tasks/num-fusion-improves-ai-modeled-traffic/gen_fixtures.py +1 -0
  4934. mlsys/tasks/num-fusion-improves-ai-modeled-traffic/meta.json +22 -0
  4935. mlsys/tasks/num-fusion-improves-ai-modeled-traffic/solution_ref.py +4 -0
  4936. mlsys/tasks/num-fusion-improves-ai-modeled-traffic/starter.py +2 -0
  4937. mlsys/tasks/num-fusion-improves-ai-modeled-traffic/task.md +75 -0
  4938. mlsys/tasks/num-general-unbroadcast-leading-size-1-dims/check.py +53 -0
  4939. mlsys/tasks/num-general-unbroadcast-leading-size-1-dims/gen_fixtures.py +1 -0
  4940. mlsys/tasks/num-general-unbroadcast-leading-size-1-dims/meta.json +22 -0
  4941. mlsys/tasks/num-general-unbroadcast-leading-size-1-dims/solution_ref.py +31 -0
  4942. mlsys/tasks/num-general-unbroadcast-leading-size-1-dims/starter.py +9 -0
  4943. mlsys/tasks/num-general-unbroadcast-leading-size-1-dims/task.md +65 -0
  4944. mlsys/tasks/num-gradient-accumulation-on-reused-node/check.py +98 -0
  4945. mlsys/tasks/num-gradient-accumulation-on-reused-node/gen_fixtures.py +2 -0
  4946. mlsys/tasks/num-gradient-accumulation-on-reused-node/meta.json +22 -0
  4947. mlsys/tasks/num-gradient-accumulation-on-reused-node/solution_ref.py +76 -0
  4948. mlsys/tasks/num-gradient-accumulation-on-reused-node/starter.py +20 -0
  4949. mlsys/tasks/num-gradient-accumulation-on-reused-node/task.md +93 -0
  4950. mlsys/tasks/num-hilbert-matrix-conditioning-growth/check.py +26 -0
  4951. mlsys/tasks/num-hilbert-matrix-conditioning-growth/gen_fixtures.py +1 -0
  4952. mlsys/tasks/num-hilbert-matrix-conditioning-growth/meta.json +22 -0
  4953. mlsys/tasks/num-hilbert-matrix-conditioning-growth/solution_ref.py +11 -0
  4954. mlsys/tasks/num-hilbert-matrix-conditioning-growth/starter.py +4 -0
  4955. mlsys/tasks/num-hilbert-matrix-conditioning-growth/task.md +73 -0
  4956. mlsys/tasks/num-hillis-steele-inclusive-scan/check.py +35 -0
  4957. mlsys/tasks/num-hillis-steele-inclusive-scan/gen_fixtures.py +1 -0
  4958. mlsys/tasks/num-hillis-steele-inclusive-scan/meta.json +22 -0
  4959. mlsys/tasks/num-hillis-steele-inclusive-scan/solution_ref.py +32 -0
  4960. mlsys/tasks/num-hillis-steele-inclusive-scan/starter.py +18 -0
  4961. mlsys/tasks/num-hillis-steele-inclusive-scan/task.md +69 -0
  4962. mlsys/tasks/num-householder-qr-reconstruction/check.py +44 -0
  4963. mlsys/tasks/num-householder-qr-reconstruction/gen_fixtures.py +1 -0
  4964. mlsys/tasks/num-householder-qr-reconstruction/meta.json +22 -0
  4965. mlsys/tasks/num-householder-qr-reconstruction/solution_ref.py +28 -0
  4966. mlsys/tasks/num-householder-qr-reconstruction/starter.py +4 -0
  4967. mlsys/tasks/num-householder-qr-reconstruction/task.md +88 -0
  4968. mlsys/tasks/num-identify-fp16-bf16-fp8-field-splits/check.py +20 -0
  4969. mlsys/tasks/num-identify-fp16-bf16-fp8-field-splits/gen_fixtures.py +1 -0
  4970. mlsys/tasks/num-identify-fp16-bf16-fp8-field-splits/meta.json +22 -0
  4971. mlsys/tasks/num-identify-fp16-bf16-fp8-field-splits/solution_ref.py +16 -0
  4972. mlsys/tasks/num-identify-fp16-bf16-fp8-field-splits/starter.py +2 -0
  4973. mlsys/tasks/num-identify-fp16-bf16-fp8-field-splits/task.md +47 -0
  4974. mlsys/tasks/num-ikj-loop-order-matmul/check.py +34 -0
  4975. mlsys/tasks/num-ikj-loop-order-matmul/gen_fixtures.py +1 -0
  4976. mlsys/tasks/num-ikj-loop-order-matmul/meta.json +27 -0
  4977. mlsys/tasks/num-ikj-loop-order-matmul/solution_ref.py +17 -0
  4978. mlsys/tasks/num-ikj-loop-order-matmul/starter.py +6 -0
  4979. mlsys/tasks/num-ikj-loop-order-matmul/task.md +59 -0
  4980. mlsys/tasks/num-im2col-patch-extraction-via-as-strided/check.py +48 -0
  4981. mlsys/tasks/num-im2col-patch-extraction-via-as-strided/gen_fixtures.py +2 -0
  4982. mlsys/tasks/num-im2col-patch-extraction-via-as-strided/meta.json +27 -0
  4983. mlsys/tasks/num-im2col-patch-extraction-via-as-strided/solution_ref.py +16 -0
  4984. mlsys/tasks/num-im2col-patch-extraction-via-as-strided/starter.py +11 -0
  4985. mlsys/tasks/num-im2col-patch-extraction-via-as-strided/task.md +81 -0
  4986. mlsys/tasks/num-inverse-iteration-for-smallest-eigenpair/check.py +54 -0
  4987. mlsys/tasks/num-inverse-iteration-for-smallest-eigenpair/gen_fixtures.py +0 -0
  4988. mlsys/tasks/num-inverse-iteration-for-smallest-eigenpair/meta.json +27 -0
  4989. mlsys/tasks/num-inverse-iteration-for-smallest-eigenpair/solution_ref.py +27 -0
  4990. mlsys/tasks/num-inverse-iteration-for-smallest-eigenpair/starter.py +29 -0
  4991. mlsys/tasks/num-inverse-iteration-for-smallest-eigenpair/task.md +69 -0
  4992. mlsys/tasks/num-jacobi-rotation-sweeps-for-symmetric-eig/check.py +62 -0
  4993. mlsys/tasks/num-jacobi-rotation-sweeps-for-symmetric-eig/gen_fixtures.py +1 -0
  4994. mlsys/tasks/num-jacobi-rotation-sweeps-for-symmetric-eig/meta.json +22 -0
  4995. mlsys/tasks/num-jacobi-rotation-sweeps-for-symmetric-eig/solution_ref.py +39 -0
  4996. mlsys/tasks/num-jacobi-rotation-sweeps-for-symmetric-eig/starter.py +6 -0
  4997. mlsys/tasks/num-jacobi-rotation-sweeps-for-symmetric-eig/task.md +60 -0
  4998. mlsys/tasks/num-jacobian-by-finite-differences/check.py +70 -0
  4999. mlsys/tasks/num-jacobian-by-finite-differences/gen_fixtures.py +1 -0
  5000. mlsys/tasks/num-jacobian-by-finite-differences/meta.json +22 -0
  5001. mlsys/tasks/num-jacobian-by-finite-differences/solution_ref.py +20 -0
  5002. mlsys/tasks/num-jacobian-by-finite-differences/starter.py +4 -0
  5003. mlsys/tasks/num-jacobian-by-finite-differences/task.md +65 -0
  5004. mlsys/tasks/num-kahan-summation-beats-naive-fp32/check.py +44 -0
  5005. mlsys/tasks/num-kahan-summation-beats-naive-fp32/gen_fixtures.py +1 -0
  5006. mlsys/tasks/num-kahan-summation-beats-naive-fp32/meta.json +27 -0
  5007. mlsys/tasks/num-kahan-summation-beats-naive-fp32/solution_ref.py +17 -0
  5008. mlsys/tasks/num-kahan-summation-beats-naive-fp32/starter.py +7 -0
  5009. mlsys/tasks/num-kahan-summation-beats-naive-fp32/task.md +75 -0
  5010. mlsys/tasks/num-kahan-vs-neumaier-when-running-sum-addend/check.py +71 -0
  5011. mlsys/tasks/num-kahan-vs-neumaier-when-running-sum-addend/gen_fixtures.py +1 -0
  5012. mlsys/tasks/num-kahan-vs-neumaier-when-running-sum-addend/meta.json +33 -0
  5013. mlsys/tasks/num-kahan-vs-neumaier-when-running-sum-addend/solution_ref.py +39 -0
  5014. mlsys/tasks/num-kahan-vs-neumaier-when-running-sum-addend/starter.py +21 -0
  5015. mlsys/tasks/num-kahan-vs-neumaier-when-running-sum-addend/task.md +83 -0
  5016. mlsys/tasks/num-label-smoothed-fused-ce/check.py +40 -0
  5017. mlsys/tasks/num-label-smoothed-fused-ce/gen_fixtures.py +1 -0
  5018. mlsys/tasks/num-label-smoothed-fused-ce/meta.json +22 -0
  5019. mlsys/tasks/num-label-smoothed-fused-ce/solution_ref.py +27 -0
  5020. mlsys/tasks/num-label-smoothed-fused-ce/starter.py +17 -0
  5021. mlsys/tasks/num-label-smoothed-fused-ce/task.md +88 -0
  5022. mlsys/tasks/num-least-squares-via-qr/check.py +52 -0
  5023. mlsys/tasks/num-least-squares-via-qr/gen_fixtures.py +1 -0
  5024. mlsys/tasks/num-least-squares-via-qr/meta.json +22 -0
  5025. mlsys/tasks/num-least-squares-via-qr/solution_ref.py +32 -0
  5026. mlsys/tasks/num-least-squares-via-qr/starter.py +4 -0
  5027. mlsys/tasks/num-least-squares-via-qr/task.md +76 -0
  5028. mlsys/tasks/num-log-1-x-naive-vs-log1p-on-tiny-x/check.py +19 -0
  5029. mlsys/tasks/num-log-1-x-naive-vs-log1p-on-tiny-x/gen_fixtures.py +1 -0
  5030. mlsys/tasks/num-log-1-x-naive-vs-log1p-on-tiny-x/meta.json +22 -0
  5031. mlsys/tasks/num-log-1-x-naive-vs-log1p-on-tiny-x/solution_ref.py +8 -0
  5032. mlsys/tasks/num-log-1-x-naive-vs-log1p-on-tiny-x/starter.py +4 -0
  5033. mlsys/tasks/num-log-1-x-naive-vs-log1p-on-tiny-x/task.md +31 -0
  5034. mlsys/tasks/num-log-softmax-via-lse/check.py +34 -0
  5035. mlsys/tasks/num-log-softmax-via-lse/gen_fixtures.py +1 -0
  5036. mlsys/tasks/num-log-softmax-via-lse/meta.json +22 -0
  5037. mlsys/tasks/num-log-softmax-via-lse/solution_ref.py +10 -0
  5038. mlsys/tasks/num-log-softmax-via-lse/starter.py +5 -0
  5039. mlsys/tasks/num-log-softmax-via-lse/task.md +76 -0
  5040. mlsys/tasks/num-log-softmax-x-lse-identity/check.py +32 -0
  5041. mlsys/tasks/num-log-softmax-x-lse-identity/gen_fixtures.py +1 -0
  5042. mlsys/tasks/num-log-softmax-x-lse-identity/meta.json +22 -0
  5043. mlsys/tasks/num-log-softmax-x-lse-identity/solution_ref.py +8 -0
  5044. mlsys/tasks/num-log-softmax-x-lse-identity/starter.py +6 -0
  5045. mlsys/tasks/num-log-softmax-x-lse-identity/task.md +68 -0
  5046. mlsys/tasks/num-log1p-for-tiny-x/check.py +25 -0
  5047. mlsys/tasks/num-log1p-for-tiny-x/gen_fixtures.py +1 -0
  5048. mlsys/tasks/num-log1p-for-tiny-x/meta.json +22 -0
  5049. mlsys/tasks/num-log1p-for-tiny-x/solution_ref.py +8 -0
  5050. mlsys/tasks/num-log1p-for-tiny-x/starter.py +4 -0
  5051. mlsys/tasks/num-log1p-for-tiny-x/task.md +48 -0
  5052. mlsys/tasks/num-logsigmoid-gradient/check.py +48 -0
  5053. mlsys/tasks/num-logsigmoid-gradient/gen_fixtures.py +1 -0
  5054. mlsys/tasks/num-logsigmoid-gradient/meta.json +27 -0
  5055. mlsys/tasks/num-logsigmoid-gradient/solution_ref.py +8 -0
  5056. mlsys/tasks/num-logsigmoid-gradient/starter.py +4 -0
  5057. mlsys/tasks/num-logsigmoid-gradient/task.md +85 -0
  5058. mlsys/tasks/num-logsumexp-with-max-shift/check.py +36 -0
  5059. mlsys/tasks/num-logsumexp-with-max-shift/gen_fixtures.py +0 -0
  5060. mlsys/tasks/num-logsumexp-with-max-shift/meta.json +22 -0
  5061. mlsys/tasks/num-logsumexp-with-max-shift/solution_ref.py +16 -0
  5062. mlsys/tasks/num-logsumexp-with-max-shift/starter.py +22 -0
  5063. mlsys/tasks/num-logsumexp-with-max-shift/task.md +60 -0
  5064. mlsys/tasks/num-loss-scaling-round-trip-of-tiny-gradients/check.py +59 -0
  5065. mlsys/tasks/num-loss-scaling-round-trip-of-tiny-gradients/gen_fixtures.py +1 -0
  5066. mlsys/tasks/num-loss-scaling-round-trip-of-tiny-gradients/meta.json +27 -0
  5067. mlsys/tasks/num-loss-scaling-round-trip-of-tiny-gradients/solution_ref.py +8 -0
  5068. mlsys/tasks/num-loss-scaling-round-trip-of-tiny-gradients/starter.py +4 -0
  5069. mlsys/tasks/num-loss-scaling-round-trip-of-tiny-gradients/task.md +63 -0
  5070. mlsys/tasks/num-low-rank-compression-size-vs-error/check.py +70 -0
  5071. mlsys/tasks/num-low-rank-compression-size-vs-error/gen_fixtures.py +1 -0
  5072. mlsys/tasks/num-low-rank-compression-size-vs-error/meta.json +28 -0
  5073. mlsys/tasks/num-low-rank-compression-size-vs-error/solution_ref.py +11 -0
  5074. mlsys/tasks/num-low-rank-compression-size-vs-error/starter.py +11 -0
  5075. mlsys/tasks/num-low-rank-compression-size-vs-error/task.md +90 -0
  5076. mlsys/tasks/num-lu-with-partial-pivoting-check-pa-lu/check.py +60 -0
  5077. mlsys/tasks/num-lu-with-partial-pivoting-check-pa-lu/gen_fixtures.py +1 -0
  5078. mlsys/tasks/num-lu-with-partial-pivoting-check-pa-lu/meta.json +22 -0
  5079. mlsys/tasks/num-lu-with-partial-pivoting-check-pa-lu/solution_ref.py +25 -0
  5080. mlsys/tasks/num-lu-with-partial-pivoting-check-pa-lu/starter.py +4 -0
  5081. mlsys/tasks/num-lu-with-partial-pivoting-check-pa-lu/task.md +68 -0
  5082. mlsys/tasks/num-lu-without-pivoting-reconstruct-a-lu/check.py +60 -0
  5083. mlsys/tasks/num-lu-without-pivoting-reconstruct-a-lu/gen_fixtures.py +1 -0
  5084. mlsys/tasks/num-lu-without-pivoting-reconstruct-a-lu/meta.json +22 -0
  5085. mlsys/tasks/num-lu-without-pivoting-reconstruct-a-lu/solution_ref.py +20 -0
  5086. mlsys/tasks/num-lu-without-pivoting-reconstruct-a-lu/starter.py +4 -0
  5087. mlsys/tasks/num-lu-without-pivoting-reconstruct-a-lu/task.md +76 -0
  5088. mlsys/tasks/num-manual-broadcast-to-common-shape/check.py +90 -0
  5089. mlsys/tasks/num-manual-broadcast-to-common-shape/gen_fixtures.py +1 -0
  5090. mlsys/tasks/num-manual-broadcast-to-common-shape/meta.json +27 -0
  5091. mlsys/tasks/num-manual-broadcast-to-common-shape/solution_ref.py +47 -0
  5092. mlsys/tasks/num-manual-broadcast-to-common-shape/starter.py +6 -0
  5093. mlsys/tasks/num-manual-broadcast-to-common-shape/task.md +61 -0
  5094. mlsys/tasks/num-matrix-vector-from-scratch/check.py +34 -0
  5095. mlsys/tasks/num-matrix-vector-from-scratch/gen_fixtures.py +1 -0
  5096. mlsys/tasks/num-matrix-vector-from-scratch/meta.json +27 -0
  5097. mlsys/tasks/num-matrix-vector-from-scratch/solution_ref.py +15 -0
  5098. mlsys/tasks/num-matrix-vector-from-scratch/starter.py +6 -0
  5099. mlsys/tasks/num-matrix-vector-from-scratch/task.md +51 -0
  5100. mlsys/tasks/num-micrograd-style-value-with-backward/check.py +75 -0
  5101. mlsys/tasks/num-micrograd-style-value-with-backward/gen_fixtures.py +2 -0
  5102. mlsys/tasks/num-micrograd-style-value-with-backward/meta.json +27 -0
  5103. mlsys/tasks/num-micrograd-style-value-with-backward/solution_ref.py +79 -0
  5104. mlsys/tasks/num-micrograd-style-value-with-backward/starter.py +35 -0
  5105. mlsys/tasks/num-micrograd-style-value-with-backward/task.md +107 -0
  5106. mlsys/tasks/num-mini-softfloat-add-with-guard-round-sticky/check.py +42 -0
  5107. mlsys/tasks/num-mini-softfloat-add-with-guard-round-sticky/gen_fixtures.py +1 -0
  5108. mlsys/tasks/num-mini-softfloat-add-with-guard-round-sticky/meta.json +22 -0
  5109. mlsys/tasks/num-mini-softfloat-add-with-guard-round-sticky/solution_ref.py +99 -0
  5110. mlsys/tasks/num-mini-softfloat-add-with-guard-round-sticky/starter.py +2 -0
  5111. mlsys/tasks/num-mini-softfloat-add-with-guard-round-sticky/task.md +67 -0
  5112. mlsys/tasks/num-mixed-precision-compensated-accumulator/check.py +39 -0
  5113. mlsys/tasks/num-mixed-precision-compensated-accumulator/gen_fixtures.py +1 -0
  5114. mlsys/tasks/num-mixed-precision-compensated-accumulator/meta.json +22 -0
  5115. mlsys/tasks/num-mixed-precision-compensated-accumulator/solution_ref.py +14 -0
  5116. mlsys/tasks/num-mixed-precision-compensated-accumulator/starter.py +4 -0
  5117. mlsys/tasks/num-mixed-precision-compensated-accumulator/task.md +65 -0
  5118. mlsys/tasks/num-modeled-cache-misses-vs-tile-size/check.py +60 -0
  5119. mlsys/tasks/num-modeled-cache-misses-vs-tile-size/gen_fixtures.py +1 -0
  5120. mlsys/tasks/num-modeled-cache-misses-vs-tile-size/meta.json +22 -0
  5121. mlsys/tasks/num-modeled-cache-misses-vs-tile-size/solution_ref.py +37 -0
  5122. mlsys/tasks/num-modeled-cache-misses-vs-tile-size/starter.py +2 -0
  5123. mlsys/tasks/num-modeled-cache-misses-vs-tile-size/task.md +85 -0
  5124. mlsys/tasks/num-naive-matmul-forbidding-blas/check.py +49 -0
  5125. mlsys/tasks/num-naive-matmul-forbidding-blas/gen_fixtures.py +1 -0
  5126. mlsys/tasks/num-naive-matmul-forbidding-blas/meta.json +27 -0
  5127. mlsys/tasks/num-naive-matmul-forbidding-blas/solution_ref.py +15 -0
  5128. mlsys/tasks/num-naive-matmul-forbidding-blas/starter.py +4 -0
  5129. mlsys/tasks/num-naive-matmul-forbidding-blas/task.md +45 -0
  5130. mlsys/tasks/num-naive-triple-loop-matmul/check.py +22 -0
  5131. mlsys/tasks/num-naive-triple-loop-matmul/gen_fixtures.py +1 -0
  5132. mlsys/tasks/num-naive-triple-loop-matmul/meta.json +22 -0
  5133. mlsys/tasks/num-naive-triple-loop-matmul/solution_ref.py +16 -0
  5134. mlsys/tasks/num-naive-triple-loop-matmul/starter.py +4 -0
  5135. mlsys/tasks/num-naive-triple-loop-matmul/task.md +36 -0
  5136. mlsys/tasks/num-naive-vs-stable-lse-on-overflow-underflow-fixture/check.py +46 -0
  5137. mlsys/tasks/num-naive-vs-stable-lse-on-overflow-underflow-fixture/fixtures/x_overflow.npy +0 -0
  5138. mlsys/tasks/num-naive-vs-stable-lse-on-overflow-underflow-fixture/fixtures/x_underflow.npy +0 -0
  5139. mlsys/tasks/num-naive-vs-stable-lse-on-overflow-underflow-fixture/gen_fixtures.py +35 -0
  5140. mlsys/tasks/num-naive-vs-stable-lse-on-overflow-underflow-fixture/meta.json +25 -0
  5141. mlsys/tasks/num-naive-vs-stable-lse-on-overflow-underflow-fixture/solution_ref.py +14 -0
  5142. mlsys/tasks/num-naive-vs-stable-lse-on-overflow-underflow-fixture/starter.py +13 -0
  5143. mlsys/tasks/num-naive-vs-stable-lse-on-overflow-underflow-fixture/task.md +71 -0
  5144. mlsys/tasks/num-naive-vs-stable-softmax-argmax-in-fp16/check.py +49 -0
  5145. mlsys/tasks/num-naive-vs-stable-softmax-argmax-in-fp16/gen_fixtures.py +1 -0
  5146. mlsys/tasks/num-naive-vs-stable-softmax-argmax-in-fp16/meta.json +22 -0
  5147. mlsys/tasks/num-naive-vs-stable-softmax-argmax-in-fp16/solution_ref.py +9 -0
  5148. mlsys/tasks/num-naive-vs-stable-softmax-argmax-in-fp16/starter.py +4 -0
  5149. mlsys/tasks/num-naive-vs-stable-softmax-argmax-in-fp16/task.md +75 -0
  5150. mlsys/tasks/num-naive-vs-welford-vs-two-pass-accuracy/check.py +25 -0
  5151. mlsys/tasks/num-naive-vs-welford-vs-two-pass-accuracy/fixtures/x.npy +0 -0
  5152. mlsys/tasks/num-naive-vs-welford-vs-two-pass-accuracy/gen_fixtures.py +24 -0
  5153. mlsys/tasks/num-naive-vs-welford-vs-two-pass-accuracy/meta.json +24 -0
  5154. mlsys/tasks/num-naive-vs-welford-vs-two-pass-accuracy/solution_ref.py +16 -0
  5155. mlsys/tasks/num-naive-vs-welford-vs-two-pass-accuracy/starter.py +6 -0
  5156. mlsys/tasks/num-naive-vs-welford-vs-two-pass-accuracy/task.md +82 -0
  5157. mlsys/tasks/num-nan-aware-max-argmax-matching-nanmax/check.py +31 -0
  5158. mlsys/tasks/num-nan-aware-max-argmax-matching-nanmax/gen_fixtures.py +1 -0
  5159. mlsys/tasks/num-nan-aware-max-argmax-matching-nanmax/meta.json +22 -0
  5160. mlsys/tasks/num-nan-aware-max-argmax-matching-nanmax/solution_ref.py +19 -0
  5161. mlsys/tasks/num-nan-aware-max-argmax-matching-nanmax/starter.py +5 -0
  5162. mlsys/tasks/num-nan-aware-max-argmax-matching-nanmax/task.md +62 -0
  5163. mlsys/tasks/num-nan-safe-masked-reduction-kill-0-inf/check.py +51 -0
  5164. mlsys/tasks/num-nan-safe-masked-reduction-kill-0-inf/gen_fixtures.py +1 -0
  5165. mlsys/tasks/num-nan-safe-masked-reduction-kill-0-inf/meta.json +22 -0
  5166. mlsys/tasks/num-nan-safe-masked-reduction-kill-0-inf/solution_ref.py +10 -0
  5167. mlsys/tasks/num-nan-safe-masked-reduction-kill-0-inf/starter.py +9 -0
  5168. mlsys/tasks/num-nan-safe-masked-reduction-kill-0-inf/task.md +64 -0
  5169. mlsys/tasks/num-nextafter-x-inf-by-integer-bit-increment/check.py +50 -0
  5170. mlsys/tasks/num-nextafter-x-inf-by-integer-bit-increment/gen_fixtures.py +0 -0
  5171. mlsys/tasks/num-nextafter-x-inf-by-integer-bit-increment/meta.json +22 -0
  5172. mlsys/tasks/num-nextafter-x-inf-by-integer-bit-increment/solution_ref.py +39 -0
  5173. mlsys/tasks/num-nextafter-x-inf-by-integer-bit-increment/starter.py +29 -0
  5174. mlsys/tasks/num-nextafter-x-inf-by-integer-bit-increment/task.md +62 -0
  5175. mlsys/tasks/num-numerically-stable-softplus/check.py +30 -0
  5176. mlsys/tasks/num-numerically-stable-softplus/gen_fixtures.py +1 -0
  5177. mlsys/tasks/num-numerically-stable-softplus/meta.json +22 -0
  5178. mlsys/tasks/num-numerically-stable-softplus/solution_ref.py +6 -0
  5179. mlsys/tasks/num-numerically-stable-softplus/starter.py +4 -0
  5180. mlsys/tasks/num-numerically-stable-softplus/task.md +58 -0
  5181. mlsys/tasks/num-off-diagonal-norm-decreases-jacobi/check.py +100 -0
  5182. mlsys/tasks/num-off-diagonal-norm-decreases-jacobi/fixtures/A.npy +0 -0
  5183. mlsys/tasks/num-off-diagonal-norm-decreases-jacobi/gen_fixtures.py +30 -0
  5184. mlsys/tasks/num-off-diagonal-norm-decreases-jacobi/meta.json +24 -0
  5185. mlsys/tasks/num-off-diagonal-norm-decreases-jacobi/solution_ref.py +80 -0
  5186. mlsys/tasks/num-off-diagonal-norm-decreases-jacobi/starter.py +25 -0
  5187. mlsys/tasks/num-off-diagonal-norm-decreases-jacobi/task.md +92 -0
  5188. mlsys/tasks/num-one-level-strassen/check.py +45 -0
  5189. mlsys/tasks/num-one-level-strassen/gen_fixtures.py +1 -0
  5190. mlsys/tasks/num-one-level-strassen/meta.json +27 -0
  5191. mlsys/tasks/num-one-level-strassen/solution_ref.py +26 -0
  5192. mlsys/tasks/num-one-level-strassen/starter.py +4 -0
  5193. mlsys/tasks/num-one-level-strassen/task.md +98 -0
  5194. mlsys/tasks/num-one-sided-jacobi-svd/check.py +78 -0
  5195. mlsys/tasks/num-one-sided-jacobi-svd/gen_fixtures.py +39 -0
  5196. mlsys/tasks/num-one-sided-jacobi-svd/meta.json +22 -0
  5197. mlsys/tasks/num-one-sided-jacobi-svd/solution_ref.py +61 -0
  5198. mlsys/tasks/num-one-sided-jacobi-svd/starter.py +17 -0
  5199. mlsys/tasks/num-one-sided-jacobi-svd/task.md +68 -0
  5200. mlsys/tasks/num-online-blockwise-softmax-flash-recurrence/check.py +49 -0
  5201. mlsys/tasks/num-online-blockwise-softmax-flash-recurrence/gen_fixtures.py +1 -0
  5202. mlsys/tasks/num-online-blockwise-softmax-flash-recurrence/meta.json +20 -0
  5203. mlsys/tasks/num-online-blockwise-softmax-flash-recurrence/solution_ref.py +28 -0
  5204. mlsys/tasks/num-online-blockwise-softmax-flash-recurrence/starter.py +5 -0
  5205. mlsys/tasks/num-online-blockwise-softmax-flash-recurrence/task.md +73 -0
  5206. mlsys/tasks/num-online-skewness-kurtosis/check.py +46 -0
  5207. mlsys/tasks/num-online-skewness-kurtosis/gen_fixtures.py +1 -0
  5208. mlsys/tasks/num-online-skewness-kurtosis/meta.json +22 -0
  5209. mlsys/tasks/num-online-skewness-kurtosis/solution_ref.py +33 -0
  5210. mlsys/tasks/num-online-skewness-kurtosis/starter.py +2 -0
  5211. mlsys/tasks/num-online-skewness-kurtosis/task.md +64 -0
  5212. mlsys/tasks/num-optimal-step-h-sqrt-eps-for-central-diff/check.py +52 -0
  5213. mlsys/tasks/num-optimal-step-h-sqrt-eps-for-central-diff/gen_fixtures.py +1 -0
  5214. mlsys/tasks/num-optimal-step-h-sqrt-eps-for-central-diff/meta.json +22 -0
  5215. mlsys/tasks/num-optimal-step-h-sqrt-eps-for-central-diff/solution_ref.py +16 -0
  5216. mlsys/tasks/num-optimal-step-h-sqrt-eps-for-central-diff/starter.py +9 -0
  5217. mlsys/tasks/num-optimal-step-h-sqrt-eps-for-central-diff/task.md +80 -0
  5218. mlsys/tasks/num-optimal-tile-size-under-cache-constraint/check.py +45 -0
  5219. mlsys/tasks/num-optimal-tile-size-under-cache-constraint/gen_fixtures.py +1 -0
  5220. mlsys/tasks/num-optimal-tile-size-under-cache-constraint/meta.json +22 -0
  5221. mlsys/tasks/num-optimal-tile-size-under-cache-constraint/solution_ref.py +19 -0
  5222. mlsys/tasks/num-optimal-tile-size-under-cache-constraint/starter.py +2 -0
  5223. mlsys/tasks/num-optimal-tile-size-under-cache-constraint/task.md +78 -0
  5224. mlsys/tasks/num-orthogonality-error-q-tq-i/check.py +58 -0
  5225. mlsys/tasks/num-orthogonality-error-q-tq-i/gen_fixtures.py +1 -0
  5226. mlsys/tasks/num-orthogonality-error-q-tq-i/meta.json +22 -0
  5227. mlsys/tasks/num-orthogonality-error-q-tq-i/solution_ref.py +7 -0
  5228. mlsys/tasks/num-orthogonality-error-q-tq-i/starter.py +5 -0
  5229. mlsys/tasks/num-orthogonality-error-q-tq-i/task.md +49 -0
  5230. mlsys/tasks/num-pairwise-tree-summation/check.py +19 -0
  5231. mlsys/tasks/num-pairwise-tree-summation/gen_fixtures.py +1 -0
  5232. mlsys/tasks/num-pairwise-tree-summation/meta.json +22 -0
  5233. mlsys/tasks/num-pairwise-tree-summation/solution_ref.py +18 -0
  5234. mlsys/tasks/num-pairwise-tree-summation/starter.py +4 -0
  5235. mlsys/tasks/num-pairwise-tree-summation/task.md +31 -0
  5236. mlsys/tasks/num-parallel-merge-of-two-welford-accumulators/check.py +52 -0
  5237. mlsys/tasks/num-parallel-merge-of-two-welford-accumulators/gen_fixtures.py +1 -0
  5238. mlsys/tasks/num-parallel-merge-of-two-welford-accumulators/meta.json +22 -0
  5239. mlsys/tasks/num-parallel-merge-of-two-welford-accumulators/solution_ref.py +14 -0
  5240. mlsys/tasks/num-parallel-merge-of-two-welford-accumulators/starter.py +2 -0
  5241. mlsys/tasks/num-parallel-merge-of-two-welford-accumulators/task.md +87 -0
  5242. mlsys/tasks/num-per-channel-fp8-scale-maximizing-snr/check.py +89 -0
  5243. mlsys/tasks/num-per-channel-fp8-scale-maximizing-snr/gen_fixtures.py +1 -0
  5244. mlsys/tasks/num-per-channel-fp8-scale-maximizing-snr/meta.json +22 -0
  5245. mlsys/tasks/num-per-channel-fp8-scale-maximizing-snr/solution_ref.py +54 -0
  5246. mlsys/tasks/num-per-channel-fp8-scale-maximizing-snr/starter.py +33 -0
  5247. mlsys/tasks/num-per-channel-fp8-scale-maximizing-snr/task.md +66 -0
  5248. mlsys/tasks/num-per-format-reconstruction-error-fp16-bf16-fp8/check.py +77 -0
  5249. mlsys/tasks/num-per-format-reconstruction-error-fp16-bf16-fp8/gen_fixtures.py +1 -0
  5250. mlsys/tasks/num-per-format-reconstruction-error-fp16-bf16-fp8/meta.json +34 -0
  5251. mlsys/tasks/num-per-format-reconstruction-error-fp16-bf16-fp8/solution_ref.py +42 -0
  5252. mlsys/tasks/num-per-format-reconstruction-error-fp16-bf16-fp8/starter.py +10 -0
  5253. mlsys/tasks/num-per-format-reconstruction-error-fp16-bf16-fp8/task.md +68 -0
  5254. mlsys/tasks/num-permutation-invariant-bit-stable-reduction/check.py +68 -0
  5255. mlsys/tasks/num-permutation-invariant-bit-stable-reduction/gen_fixtures.py +1 -0
  5256. mlsys/tasks/num-permutation-invariant-bit-stable-reduction/meta.json +22 -0
  5257. mlsys/tasks/num-permutation-invariant-bit-stable-reduction/solution_ref.py +29 -0
  5258. mlsys/tasks/num-permutation-invariant-bit-stable-reduction/starter.py +4 -0
  5259. mlsys/tasks/num-permutation-invariant-bit-stable-reduction/task.md +67 -0
  5260. mlsys/tasks/num-pivot-permutation-matches-reference/check.py +31 -0
  5261. mlsys/tasks/num-pivot-permutation-matches-reference/gen_fixtures.py +1 -0
  5262. mlsys/tasks/num-pivot-permutation-matches-reference/meta.json +22 -0
  5263. mlsys/tasks/num-pivot-permutation-matches-reference/solution_ref.py +22 -0
  5264. mlsys/tasks/num-pivot-permutation-matches-reference/starter.py +7 -0
  5265. mlsys/tasks/num-pivot-permutation-matches-reference/task.md +53 -0
  5266. mlsys/tasks/num-power-iteration-dominant-eigenpair/check.py +42 -0
  5267. mlsys/tasks/num-power-iteration-dominant-eigenpair/gen_fixtures.py +1 -0
  5268. mlsys/tasks/num-power-iteration-dominant-eigenpair/meta.json +22 -0
  5269. mlsys/tasks/num-power-iteration-dominant-eigenpair/solution_ref.py +12 -0
  5270. mlsys/tasks/num-power-iteration-dominant-eigenpair/starter.py +13 -0
  5271. mlsys/tasks/num-power-iteration-dominant-eigenpair/task.md +48 -0
  5272. mlsys/tasks/num-predict-backward-sum-axes/check.py +34 -0
  5273. mlsys/tasks/num-predict-backward-sum-axes/gen_fixtures.py +1 -0
  5274. mlsys/tasks/num-predict-backward-sum-axes/meta.json +22 -0
  5275. mlsys/tasks/num-predict-backward-sum-axes/solution_ref.py +13 -0
  5276. mlsys/tasks/num-predict-backward-sum-axes/starter.py +4 -0
  5277. mlsys/tasks/num-predict-backward-sum-axes/task.md +29 -0
  5278. mlsys/tasks/num-predict-broadcast-result-shape/check.py +29 -0
  5279. mlsys/tasks/num-predict-broadcast-result-shape/gen_fixtures.py +1 -0
  5280. mlsys/tasks/num-predict-broadcast-result-shape/meta.json +22 -0
  5281. mlsys/tasks/num-predict-broadcast-result-shape/solution_ref.py +11 -0
  5282. mlsys/tasks/num-predict-broadcast-result-shape/starter.py +2 -0
  5283. mlsys/tasks/num-predict-broadcast-result-shape/task.md +24 -0
  5284. mlsys/tasks/num-predict-final-shape-of-a-broadcast-chain/check.py +52 -0
  5285. mlsys/tasks/num-predict-final-shape-of-a-broadcast-chain/gen_fixtures.py +1 -0
  5286. mlsys/tasks/num-predict-final-shape-of-a-broadcast-chain/meta.json +22 -0
  5287. mlsys/tasks/num-predict-final-shape-of-a-broadcast-chain/solution_ref.py +23 -0
  5288. mlsys/tasks/num-predict-final-shape-of-a-broadcast-chain/starter.py +3 -0
  5289. mlsys/tasks/num-predict-final-shape-of-a-broadcast-chain/task.md +63 -0
  5290. mlsys/tasks/num-predict-ieee-special-value-expressions/check.py +39 -0
  5291. mlsys/tasks/num-predict-ieee-special-value-expressions/gen_fixtures.py +1 -0
  5292. mlsys/tasks/num-predict-ieee-special-value-expressions/meta.json +22 -0
  5293. mlsys/tasks/num-predict-ieee-special-value-expressions/solution_ref.py +21 -0
  5294. mlsys/tasks/num-predict-ieee-special-value-expressions/starter.py +4 -0
  5295. mlsys/tasks/num-predict-ieee-special-value-expressions/task.md +53 -0
  5296. mlsys/tasks/num-predict-rne-image-of-exact-reals/check.py +141 -0
  5297. mlsys/tasks/num-predict-rne-image-of-exact-reals/gen_fixtures.py +3 -0
  5298. mlsys/tasks/num-predict-rne-image-of-exact-reals/meta.json +22 -0
  5299. mlsys/tasks/num-predict-rne-image-of-exact-reals/solution_ref.py +50 -0
  5300. mlsys/tasks/num-predict-rne-image-of-exact-reals/starter.py +9 -0
  5301. mlsys/tasks/num-predict-rne-image-of-exact-reals/task.md +100 -0
  5302. mlsys/tasks/num-predict-truncate-vs-round-to-nearest-results/check.py +25 -0
  5303. mlsys/tasks/num-predict-truncate-vs-round-to-nearest-results/gen_fixtures.py +1 -0
  5304. mlsys/tasks/num-predict-truncate-vs-round-to-nearest-results/meta.json +22 -0
  5305. mlsys/tasks/num-predict-truncate-vs-round-to-nearest-results/solution_ref.py +25 -0
  5306. mlsys/tasks/num-predict-truncate-vs-round-to-nearest-results/starter.py +4 -0
  5307. mlsys/tasks/num-predict-truncate-vs-round-to-nearest-results/task.md +42 -0
  5308. mlsys/tasks/num-predict-view-vs-copy-for-an-op-sequence/check.py +43 -0
  5309. mlsys/tasks/num-predict-view-vs-copy-for-an-op-sequence/gen_fixtures.py +1 -0
  5310. mlsys/tasks/num-predict-view-vs-copy-for-an-op-sequence/meta.json +22 -0
  5311. mlsys/tasks/num-predict-view-vs-copy-for-an-op-sequence/solution_ref.py +20 -0
  5312. mlsys/tasks/num-predict-view-vs-copy-for-an-op-sequence/starter.py +2 -0
  5313. mlsys/tasks/num-predict-view-vs-copy-for-an-op-sequence/task.md +68 -0
  5314. mlsys/tasks/num-prove-constant-shift-invariance/check.py +41 -0
  5315. mlsys/tasks/num-prove-constant-shift-invariance/gen_fixtures.py +1 -0
  5316. mlsys/tasks/num-prove-constant-shift-invariance/meta.json +20 -0
  5317. mlsys/tasks/num-prove-constant-shift-invariance/solution_ref.py +21 -0
  5318. mlsys/tasks/num-prove-constant-shift-invariance/starter.py +8 -0
  5319. mlsys/tasks/num-prove-constant-shift-invariance/task.md +50 -0
  5320. mlsys/tasks/num-prove-kahan-sum-is-a-real-per-element-loop/check.py +57 -0
  5321. mlsys/tasks/num-prove-kahan-sum-is-a-real-per-element-loop/gen_fixtures.py +0 -0
  5322. mlsys/tasks/num-prove-kahan-sum-is-a-real-per-element-loop/meta.json +27 -0
  5323. mlsys/tasks/num-prove-kahan-sum-is-a-real-per-element-loop/solution_ref.py +20 -0
  5324. mlsys/tasks/num-prove-kahan-sum-is-a-real-per-element-loop/starter.py +28 -0
  5325. mlsys/tasks/num-prove-kahan-sum-is-a-real-per-element-loop/task.md +69 -0
  5326. mlsys/tasks/num-prove-naive-std-loses-all-digits-welford-recovers/check.py +57 -0
  5327. mlsys/tasks/num-prove-naive-std-loses-all-digits-welford-recovers/gen_fixtures.py +2 -0
  5328. mlsys/tasks/num-prove-naive-std-loses-all-digits-welford-recovers/meta.json +32 -0
  5329. mlsys/tasks/num-prove-naive-std-loses-all-digits-welford-recovers/solution_ref.py +16 -0
  5330. mlsys/tasks/num-prove-naive-std-loses-all-digits-welford-recovers/starter.py +10 -0
  5331. mlsys/tasks/num-prove-naive-std-loses-all-digits-welford-recovers/task.md +87 -0
  5332. mlsys/tasks/num-quantify-sum-order-discrepancy/check.py +33 -0
  5333. mlsys/tasks/num-quantify-sum-order-discrepancy/gen_fixtures.py +1 -0
  5334. mlsys/tasks/num-quantify-sum-order-discrepancy/meta.json +22 -0
  5335. mlsys/tasks/num-quantify-sum-order-discrepancy/solution_ref.py +12 -0
  5336. mlsys/tasks/num-quantify-sum-order-discrepancy/starter.py +2 -0
  5337. mlsys/tasks/num-quantify-sum-order-discrepancy/task.md +51 -0
  5338. mlsys/tasks/num-rank-1-cholesky-update/check.py +32 -0
  5339. mlsys/tasks/num-rank-1-cholesky-update/gen_fixtures.py +1 -0
  5340. mlsys/tasks/num-rank-1-cholesky-update/meta.json +22 -0
  5341. mlsys/tasks/num-rank-1-cholesky-update/solution_ref.py +19 -0
  5342. mlsys/tasks/num-rank-1-cholesky-update/starter.py +4 -0
  5343. mlsys/tasks/num-rank-1-cholesky-update/task.md +80 -0
  5344. mlsys/tasks/num-rank-ill-conditioned-systems/check.py +40 -0
  5345. mlsys/tasks/num-rank-ill-conditioned-systems/gen_fixtures.py +1 -0
  5346. mlsys/tasks/num-rank-ill-conditioned-systems/meta.json +22 -0
  5347. mlsys/tasks/num-rank-ill-conditioned-systems/solution_ref.py +9 -0
  5348. mlsys/tasks/num-rank-ill-conditioned-systems/starter.py +4 -0
  5349. mlsys/tasks/num-rank-ill-conditioned-systems/task.md +51 -0
  5350. mlsys/tasks/num-rank-via-singular-value-threshold/check.py +64 -0
  5351. mlsys/tasks/num-rank-via-singular-value-threshold/gen_fixtures.py +1 -0
  5352. mlsys/tasks/num-rank-via-singular-value-threshold/meta.json +22 -0
  5353. mlsys/tasks/num-rank-via-singular-value-threshold/solution_ref.py +9 -0
  5354. mlsys/tasks/num-rank-via-singular-value-threshold/starter.py +4 -0
  5355. mlsys/tasks/num-rank-via-singular-value-threshold/task.md +61 -0
  5356. mlsys/tasks/num-rayleigh-quotient-iteration/check.py +37 -0
  5357. mlsys/tasks/num-rayleigh-quotient-iteration/gen_fixtures.py +1 -0
  5358. mlsys/tasks/num-rayleigh-quotient-iteration/meta.json +22 -0
  5359. mlsys/tasks/num-rayleigh-quotient-iteration/solution_ref.py +23 -0
  5360. mlsys/tasks/num-rayleigh-quotient-iteration/starter.py +6 -0
  5361. mlsys/tasks/num-rayleigh-quotient-iteration/task.md +80 -0
  5362. mlsys/tasks/num-reassemble-fp32-from-stored-fields-round-trip/check.py +28 -0
  5363. mlsys/tasks/num-reassemble-fp32-from-stored-fields-round-trip/gen_fixtures.py +1 -0
  5364. mlsys/tasks/num-reassemble-fp32-from-stored-fields-round-trip/meta.json +22 -0
  5365. mlsys/tasks/num-reassemble-fp32-from-stored-fields-round-trip/solution_ref.py +9 -0
  5366. mlsys/tasks/num-reassemble-fp32-from-stored-fields-round-trip/starter.py +4 -0
  5367. mlsys/tasks/num-reassemble-fp32-from-stored-fields-round-trip/task.md +66 -0
  5368. mlsys/tasks/num-reconstruct-a-stable-equivalent-expression/check.py +33 -0
  5369. mlsys/tasks/num-reconstruct-a-stable-equivalent-expression/gen_fixtures.py +1 -0
  5370. mlsys/tasks/num-reconstruct-a-stable-equivalent-expression/meta.json +22 -0
  5371. mlsys/tasks/num-reconstruct-a-stable-equivalent-expression/solution_ref.py +7 -0
  5372. mlsys/tasks/num-reconstruct-a-stable-equivalent-expression/starter.py +4 -0
  5373. mlsys/tasks/num-reconstruct-a-stable-equivalent-expression/task.md +72 -0
  5374. mlsys/tasks/num-reconstruct-a-u-sigma-v-t/check.py +24 -0
  5375. mlsys/tasks/num-reconstruct-a-u-sigma-v-t/gen_fixtures.py +1 -0
  5376. mlsys/tasks/num-reconstruct-a-u-sigma-v-t/meta.json +22 -0
  5377. mlsys/tasks/num-reconstruct-a-u-sigma-v-t/solution_ref.py +7 -0
  5378. mlsys/tasks/num-reconstruct-a-u-sigma-v-t/starter.py +5 -0
  5379. mlsys/tasks/num-reconstruct-a-u-sigma-v-t/task.md +54 -0
  5380. mlsys/tasks/num-reconstruct-a-v-lambda-v-t/check.py +33 -0
  5381. mlsys/tasks/num-reconstruct-a-v-lambda-v-t/gen_fixtures.py +1 -0
  5382. mlsys/tasks/num-reconstruct-a-v-lambda-v-t/meta.json +22 -0
  5383. mlsys/tasks/num-reconstruct-a-v-lambda-v-t/solution_ref.py +6 -0
  5384. mlsys/tasks/num-reconstruct-a-v-lambda-v-t/starter.py +4 -0
  5385. mlsys/tasks/num-reconstruct-a-v-lambda-v-t/task.md +63 -0
  5386. mlsys/tasks/num-reduction-depth-o-log-n/check.py +30 -0
  5387. mlsys/tasks/num-reduction-depth-o-log-n/gen_fixtures.py +1 -0
  5388. mlsys/tasks/num-reduction-depth-o-log-n/meta.json +22 -0
  5389. mlsys/tasks/num-reduction-depth-o-log-n/solution_ref.py +9 -0
  5390. mlsys/tasks/num-reduction-depth-o-log-n/starter.py +3 -0
  5391. mlsys/tasks/num-reduction-depth-o-log-n/task.md +39 -0
  5392. mlsys/tasks/num-report-machine-epsilon-for-fp32/check.py +9 -0
  5393. mlsys/tasks/num-report-machine-epsilon-for-fp32/gen_fixtures.py +1 -0
  5394. mlsys/tasks/num-report-machine-epsilon-for-fp32/meta.json +22 -0
  5395. mlsys/tasks/num-report-machine-epsilon-for-fp32/solution_ref.py +3 -0
  5396. mlsys/tasks/num-report-machine-epsilon-for-fp32/starter.py +2 -0
  5397. mlsys/tasks/num-report-machine-epsilon-for-fp32/task.md +39 -0
  5398. mlsys/tasks/num-reshape-view-vs-copy-classification/check.py +37 -0
  5399. mlsys/tasks/num-reshape-view-vs-copy-classification/gen_fixtures.py +1 -0
  5400. mlsys/tasks/num-reshape-view-vs-copy-classification/meta.json +22 -0
  5401. mlsys/tasks/num-reshape-view-vs-copy-classification/solution_ref.py +18 -0
  5402. mlsys/tasks/num-reshape-view-vs-copy-classification/starter.py +4 -0
  5403. mlsys/tasks/num-reshape-view-vs-copy-classification/task.md +57 -0
  5404. mlsys/tasks/num-reverse-pass-grads-vs-finite-diff/check.py +86 -0
  5405. mlsys/tasks/num-reverse-pass-grads-vs-finite-diff/gen_fixtures.py +1 -0
  5406. mlsys/tasks/num-reverse-pass-grads-vs-finite-diff/meta.json +22 -0
  5407. mlsys/tasks/num-reverse-pass-grads-vs-finite-diff/solution_ref.py +44 -0
  5408. mlsys/tasks/num-reverse-pass-grads-vs-finite-diff/starter.py +13 -0
  5409. mlsys/tasks/num-reverse-pass-grads-vs-finite-diff/task.md +78 -0
  5410. mlsys/tasks/num-rolling-window-mean-one-reduction-over-a-view/check.py +59 -0
  5411. mlsys/tasks/num-rolling-window-mean-one-reduction-over-a-view/gen_fixtures.py +1 -0
  5412. mlsys/tasks/num-rolling-window-mean-one-reduction-over-a-view/meta.json +22 -0
  5413. mlsys/tasks/num-rolling-window-mean-one-reduction-over-a-view/solution_ref.py +12 -0
  5414. mlsys/tasks/num-rolling-window-mean-one-reduction-over-a-view/starter.py +4 -0
  5415. mlsys/tasks/num-rolling-window-mean-one-reduction-over-a-view/task.md +77 -0
  5416. mlsys/tasks/num-round-half-to-even-fixed-point-quantizer/check.py +36 -0
  5417. mlsys/tasks/num-round-half-to-even-fixed-point-quantizer/gen_fixtures.py +1 -0
  5418. mlsys/tasks/num-round-half-to-even-fixed-point-quantizer/meta.json +22 -0
  5419. mlsys/tasks/num-round-half-to-even-fixed-point-quantizer/solution_ref.py +6 -0
  5420. mlsys/tasks/num-round-half-to-even-fixed-point-quantizer/starter.py +4 -0
  5421. mlsys/tasks/num-round-half-to-even-fixed-point-quantizer/task.md +47 -0
  5422. mlsys/tasks/num-scan-work-hillis-steele-vs-blelloch/check.py +53 -0
  5423. mlsys/tasks/num-scan-work-hillis-steele-vs-blelloch/gen_fixtures.py +1 -0
  5424. mlsys/tasks/num-scan-work-hillis-steele-vs-blelloch/meta.json +22 -0
  5425. mlsys/tasks/num-scan-work-hillis-steele-vs-blelloch/solution_ref.py +31 -0
  5426. mlsys/tasks/num-scan-work-hillis-steele-vs-blelloch/starter.py +2 -0
  5427. mlsys/tasks/num-scan-work-hillis-steele-vs-blelloch/task.md +68 -0
  5428. mlsys/tasks/num-segmented-scan/check.py +34 -0
  5429. mlsys/tasks/num-segmented-scan/gen_fixtures.py +1 -0
  5430. mlsys/tasks/num-segmented-scan/meta.json +22 -0
  5431. mlsys/tasks/num-segmented-scan/solution_ref.py +10 -0
  5432. mlsys/tasks/num-segmented-scan/starter.py +2 -0
  5433. mlsys/tasks/num-segmented-scan/task.md +61 -0
  5434. mlsys/tasks/num-sequential-inclusive-scan/check.py +30 -0
  5435. mlsys/tasks/num-sequential-inclusive-scan/gen_fixtures.py +1 -0
  5436. mlsys/tasks/num-sequential-inclusive-scan/meta.json +22 -0
  5437. mlsys/tasks/num-sequential-inclusive-scan/solution_ref.py +11 -0
  5438. mlsys/tasks/num-sequential-inclusive-scan/starter.py +4 -0
  5439. mlsys/tasks/num-sequential-inclusive-scan/task.md +57 -0
  5440. mlsys/tasks/num-sequential-reduction-correctness/check.py +49 -0
  5441. mlsys/tasks/num-sequential-reduction-correctness/gen_fixtures.py +1 -0
  5442. mlsys/tasks/num-sequential-reduction-correctness/meta.json +22 -0
  5443. mlsys/tasks/num-sequential-reduction-correctness/solution_ref.py +8 -0
  5444. mlsys/tasks/num-sequential-reduction-correctness/starter.py +4 -0
  5445. mlsys/tasks/num-sequential-reduction-correctness/task.md +60 -0
  5446. mlsys/tasks/num-sequential-vs-tree-reduction-accuracy/check.py +39 -0
  5447. mlsys/tasks/num-sequential-vs-tree-reduction-accuracy/gen_fixtures.py +1 -0
  5448. mlsys/tasks/num-sequential-vs-tree-reduction-accuracy/meta.json +22 -0
  5449. mlsys/tasks/num-sequential-vs-tree-reduction-accuracy/solution_ref.py +16 -0
  5450. mlsys/tasks/num-sequential-vs-tree-reduction-accuracy/starter.py +4 -0
  5451. mlsys/tasks/num-sequential-vs-tree-reduction-accuracy/task.md +62 -0
  5452. mlsys/tasks/num-shared-memory-tiled-cuda-matmul/check.py +62 -0
  5453. mlsys/tasks/num-shared-memory-tiled-cuda-matmul/gen_fixtures.py +1 -0
  5454. mlsys/tasks/num-shared-memory-tiled-cuda-matmul/meta.json +27 -0
  5455. mlsys/tasks/num-shared-memory-tiled-cuda-matmul/solution_ref.py +27 -0
  5456. mlsys/tasks/num-shared-memory-tiled-cuda-matmul/starter.py +4 -0
  5457. mlsys/tasks/num-shared-memory-tiled-cuda-matmul/task.md +80 -0
  5458. mlsys/tasks/num-shifted-inverse-iteration-to-a-target/check.py +62 -0
  5459. mlsys/tasks/num-shifted-inverse-iteration-to-a-target/gen_fixtures.py +1 -0
  5460. mlsys/tasks/num-shifted-inverse-iteration-to-a-target/meta.json +22 -0
  5461. mlsys/tasks/num-shifted-inverse-iteration-to-a-target/solution_ref.py +15 -0
  5462. mlsys/tasks/num-shifted-inverse-iteration-to-a-target/starter.py +4 -0
  5463. mlsys/tasks/num-shifted-inverse-iteration-to-a-target/task.md +74 -0
  5464. mlsys/tasks/num-signed-zero-and-copysign-semantics/check.py +24 -0
  5465. mlsys/tasks/num-signed-zero-and-copysign-semantics/gen_fixtures.py +1 -0
  5466. mlsys/tasks/num-signed-zero-and-copysign-semantics/meta.json +22 -0
  5467. mlsys/tasks/num-signed-zero-and-copysign-semantics/solution_ref.py +14 -0
  5468. mlsys/tasks/num-signed-zero-and-copysign-semantics/starter.py +4 -0
  5469. mlsys/tasks/num-signed-zero-and-copysign-semantics/task.md +56 -0
  5470. mlsys/tasks/num-solution-sensitivity-to-b-perturbation/check.py +48 -0
  5471. mlsys/tasks/num-solution-sensitivity-to-b-perturbation/gen_fixtures.py +1 -0
  5472. mlsys/tasks/num-solution-sensitivity-to-b-perturbation/meta.json +22 -0
  5473. mlsys/tasks/num-solution-sensitivity-to-b-perturbation/solution_ref.py +11 -0
  5474. mlsys/tasks/num-solution-sensitivity-to-b-perturbation/starter.py +4 -0
  5475. mlsys/tasks/num-solution-sensitivity-to-b-perturbation/task.md +80 -0
  5476. mlsys/tasks/num-solve-ax-b-via-lu-tri-solves/check.py +59 -0
  5477. mlsys/tasks/num-solve-ax-b-via-lu-tri-solves/gen_fixtures.py +1 -0
  5478. mlsys/tasks/num-solve-ax-b-via-lu-tri-solves/meta.json +22 -0
  5479. mlsys/tasks/num-solve-ax-b-via-lu-tri-solves/solution_ref.py +33 -0
  5480. mlsys/tasks/num-solve-ax-b-via-lu-tri-solves/starter.py +4 -0
  5481. mlsys/tasks/num-solve-ax-b-via-lu-tri-solves/task.md +77 -0
  5482. mlsys/tasks/num-solve-spd-system-via-cholesky/check.py +35 -0
  5483. mlsys/tasks/num-solve-spd-system-via-cholesky/gen_fixtures.py +1 -0
  5484. mlsys/tasks/num-solve-spd-system-via-cholesky/meta.json +22 -0
  5485. mlsys/tasks/num-solve-spd-system-via-cholesky/solution_ref.py +36 -0
  5486. mlsys/tasks/num-solve-spd-system-via-cholesky/starter.py +4 -0
  5487. mlsys/tasks/num-solve-spd-system-via-cholesky/task.md +69 -0
  5488. mlsys/tasks/num-spot-the-cancelling-subtraction/check.py +31 -0
  5489. mlsys/tasks/num-spot-the-cancelling-subtraction/gen_fixtures.py +1 -0
  5490. mlsys/tasks/num-spot-the-cancelling-subtraction/meta.json +22 -0
  5491. mlsys/tasks/num-spot-the-cancelling-subtraction/solution_ref.py +16 -0
  5492. mlsys/tasks/num-spot-the-cancelling-subtraction/starter.py +5 -0
  5493. mlsys/tasks/num-spot-the-cancelling-subtraction/task.md +49 -0
  5494. mlsys/tasks/num-stable-log-add-exp-a-b/check.py +36 -0
  5495. mlsys/tasks/num-stable-log-add-exp-a-b/gen_fixtures.py +1 -0
  5496. mlsys/tasks/num-stable-log-add-exp-a-b/meta.json +22 -0
  5497. mlsys/tasks/num-stable-log-add-exp-a-b/solution_ref.py +8 -0
  5498. mlsys/tasks/num-stable-log-add-exp-a-b/starter.py +4 -0
  5499. mlsys/tasks/num-stable-log-add-exp-a-b/task.md +73 -0
  5500. mlsys/tasks/num-stable-softmax-on-logits-up-to-1e4/check.py +24 -0
  5501. mlsys/tasks/num-stable-softmax-on-logits-up-to-1e4/gen_fixtures.py +1 -0
  5502. mlsys/tasks/num-stable-softmax-on-logits-up-to-1e4/meta.json +22 -0
  5503. mlsys/tasks/num-stable-softmax-on-logits-up-to-1e4/solution_ref.py +8 -0
  5504. mlsys/tasks/num-stable-softmax-on-logits-up-to-1e4/starter.py +4 -0
  5505. mlsys/tasks/num-stable-softmax-on-logits-up-to-1e4/task.md +47 -0
  5506. mlsys/tasks/num-stochastic-rounding-accumulation-bias/check.py +65 -0
  5507. mlsys/tasks/num-stochastic-rounding-accumulation-bias/gen_fixtures.py +1 -0
  5508. mlsys/tasks/num-stochastic-rounding-accumulation-bias/meta.json +23 -0
  5509. mlsys/tasks/num-stochastic-rounding-accumulation-bias/solution_ref.py +22 -0
  5510. mlsys/tasks/num-stochastic-rounding-accumulation-bias/starter.py +20 -0
  5511. mlsys/tasks/num-stochastic-rounding-accumulation-bias/task.md +111 -0
  5512. mlsys/tasks/num-streaming-lse-over-blocks/check.py +39 -0
  5513. mlsys/tasks/num-streaming-lse-over-blocks/gen_fixtures.py +1 -0
  5514. mlsys/tasks/num-streaming-lse-over-blocks/meta.json +27 -0
  5515. mlsys/tasks/num-streaming-lse-over-blocks/solution_ref.py +16 -0
  5516. mlsys/tasks/num-streaming-lse-over-blocks/starter.py +6 -0
  5517. mlsys/tasks/num-streaming-lse-over-blocks/task.md +71 -0
  5518. mlsys/tasks/num-sum-to-shape-unbroadcast/check.py +43 -0
  5519. mlsys/tasks/num-sum-to-shape-unbroadcast/gen_fixtures.py +1 -0
  5520. mlsys/tasks/num-sum-to-shape-unbroadcast/meta.json +22 -0
  5521. mlsys/tasks/num-sum-to-shape-unbroadcast/solution_ref.py +14 -0
  5522. mlsys/tasks/num-sum-to-shape-unbroadcast/starter.py +5 -0
  5523. mlsys/tasks/num-sum-to-shape-unbroadcast/task.md +46 -0
  5524. mlsys/tasks/num-svd-via-eig-of-a-ta/check.py +61 -0
  5525. mlsys/tasks/num-svd-via-eig-of-a-ta/gen_fixtures.py +1 -0
  5526. mlsys/tasks/num-svd-via-eig-of-a-ta/meta.json +22 -0
  5527. mlsys/tasks/num-svd-via-eig-of-a-ta/solution_ref.py +13 -0
  5528. mlsys/tasks/num-svd-via-eig-of-a-ta/starter.py +6 -0
  5529. mlsys/tasks/num-svd-via-eig-of-a-ta/task.md +49 -0
  5530. mlsys/tasks/num-temperature-sweep-entropy-kl/check.py +33 -0
  5531. mlsys/tasks/num-temperature-sweep-entropy-kl/gen_fixtures.py +1 -0
  5532. mlsys/tasks/num-temperature-sweep-entropy-kl/meta.json +22 -0
  5533. mlsys/tasks/num-temperature-sweep-entropy-kl/solution_ref.py +31 -0
  5534. mlsys/tasks/num-temperature-sweep-entropy-kl/starter.py +4 -0
  5535. mlsys/tasks/num-temperature-sweep-entropy-kl/task.md +52 -0
  5536. mlsys/tasks/num-tight-ulp-error-bound-for-a-dot-product/check.py +42 -0
  5537. mlsys/tasks/num-tight-ulp-error-bound-for-a-dot-product/gen_fixtures.py +1 -0
  5538. mlsys/tasks/num-tight-ulp-error-bound-for-a-dot-product/meta.json +22 -0
  5539. mlsys/tasks/num-tight-ulp-error-bound-for-a-dot-product/solution_ref.py +6 -0
  5540. mlsys/tasks/num-tight-ulp-error-bound-for-a-dot-product/starter.py +4 -0
  5541. mlsys/tasks/num-tight-ulp-error-bound-for-a-dot-product/task.md +62 -0
  5542. mlsys/tasks/num-transpose-as-stride-permutation-no-copy/check.py +38 -0
  5543. mlsys/tasks/num-transpose-as-stride-permutation-no-copy/gen_fixtures.py +1 -0
  5544. mlsys/tasks/num-transpose-as-stride-permutation-no-copy/meta.json +22 -0
  5545. mlsys/tasks/num-transpose-as-stride-permutation-no-copy/solution_ref.py +5 -0
  5546. mlsys/tasks/num-transpose-as-stride-permutation-no-copy/starter.py +4 -0
  5547. mlsys/tasks/num-transpose-as-stride-permutation-no-copy/task.md +66 -0
  5548. mlsys/tasks/num-tree-pairwise-reduction-structure/check.py +55 -0
  5549. mlsys/tasks/num-tree-pairwise-reduction-structure/gen_fixtures.py +1 -0
  5550. mlsys/tasks/num-tree-pairwise-reduction-structure/meta.json +22 -0
  5551. mlsys/tasks/num-tree-pairwise-reduction-structure/solution_ref.py +19 -0
  5552. mlsys/tasks/num-tree-pairwise-reduction-structure/starter.py +2 -0
  5553. mlsys/tasks/num-tree-pairwise-reduction-structure/task.md +56 -0
  5554. mlsys/tasks/num-triangular-solve-flop-count/check.py +21 -0
  5555. mlsys/tasks/num-triangular-solve-flop-count/gen_fixtures.py +1 -0
  5556. mlsys/tasks/num-triangular-solve-flop-count/meta.json +22 -0
  5557. mlsys/tasks/num-triangular-solve-flop-count/solution_ref.py +5 -0
  5558. mlsys/tasks/num-triangular-solve-flop-count/starter.py +2 -0
  5559. mlsys/tasks/num-triangular-solve-flop-count/task.md +53 -0
  5560. mlsys/tasks/num-triangular-solve-with-multiple-rhs/check.py +59 -0
  5561. mlsys/tasks/num-triangular-solve-with-multiple-rhs/gen_fixtures.py +1 -0
  5562. mlsys/tasks/num-triangular-solve-with-multiple-rhs/meta.json +22 -0
  5563. mlsys/tasks/num-triangular-solve-with-multiple-rhs/solution_ref.py +13 -0
  5564. mlsys/tasks/num-triangular-solve-with-multiple-rhs/starter.py +4 -0
  5565. mlsys/tasks/num-triangular-solve-with-multiple-rhs/task.md +68 -0
  5566. mlsys/tasks/num-truncated-rank-k-reconstruction-error/check.py +29 -0
  5567. mlsys/tasks/num-truncated-rank-k-reconstruction-error/gen_fixtures.py +1 -0
  5568. mlsys/tasks/num-truncated-rank-k-reconstruction-error/meta.json +22 -0
  5569. mlsys/tasks/num-truncated-rank-k-reconstruction-error/solution_ref.py +6 -0
  5570. mlsys/tasks/num-truncated-rank-k-reconstruction-error/starter.py +4 -0
  5571. mlsys/tasks/num-truncated-rank-k-reconstruction-error/task.md +75 -0
  5572. mlsys/tasks/num-ulp-based-allclose-reproduces-numpy-edge-cases/check.py +64 -0
  5573. mlsys/tasks/num-ulp-based-allclose-reproduces-numpy-edge-cases/gen_fixtures.py +1 -0
  5574. mlsys/tasks/num-ulp-based-allclose-reproduces-numpy-edge-cases/meta.json +22 -0
  5575. mlsys/tasks/num-ulp-based-allclose-reproduces-numpy-edge-cases/solution_ref.py +16 -0
  5576. mlsys/tasks/num-ulp-based-allclose-reproduces-numpy-edge-cases/starter.py +4 -0
  5577. mlsys/tasks/num-ulp-based-allclose-reproduces-numpy-edge-cases/task.md +81 -0
  5578. mlsys/tasks/num-ulp-distance-as-integer-step-count/check.py +82 -0
  5579. mlsys/tasks/num-ulp-distance-as-integer-step-count/gen_fixtures.py +1 -0
  5580. mlsys/tasks/num-ulp-distance-as-integer-step-count/meta.json +22 -0
  5581. mlsys/tasks/num-ulp-distance-as-integer-step-count/solution_ref.py +17 -0
  5582. mlsys/tasks/num-ulp-distance-as-integer-step-count/starter.py +4 -0
  5583. mlsys/tasks/num-ulp-distance-as-integer-step-count/task.md +71 -0
  5584. mlsys/tasks/num-unshifted-qr-algorithm-eigenvalues/check.py +39 -0
  5585. mlsys/tasks/num-unshifted-qr-algorithm-eigenvalues/gen_fixtures.py +1 -0
  5586. mlsys/tasks/num-unshifted-qr-algorithm-eigenvalues/meta.json +22 -0
  5587. mlsys/tasks/num-unshifted-qr-algorithm-eigenvalues/solution_ref.py +12 -0
  5588. mlsys/tasks/num-unshifted-qr-algorithm-eigenvalues/starter.py +4 -0
  5589. mlsys/tasks/num-unshifted-qr-algorithm-eigenvalues/task.md +72 -0
  5590. mlsys/tasks/num-verify-the-2-23-spacing-law-by-counting-representables/check.py +17 -0
  5591. mlsys/tasks/num-verify-the-2-23-spacing-law-by-counting-representables/gen_fixtures.py +1 -0
  5592. mlsys/tasks/num-verify-the-2-23-spacing-law-by-counting-representables/meta.json +22 -0
  5593. mlsys/tasks/num-verify-the-2-23-spacing-law-by-counting-representables/solution_ref.py +10 -0
  5594. mlsys/tasks/num-verify-the-2-23-spacing-law-by-counting-representables/starter.py +2 -0
  5595. mlsys/tasks/num-verify-the-2-23-spacing-law-by-counting-representables/task.md +27 -0
  5596. mlsys/tasks/num-vjp-of-broadcasted-add-mul/check.py +69 -0
  5597. mlsys/tasks/num-vjp-of-broadcasted-add-mul/gen_fixtures.py +0 -0
  5598. mlsys/tasks/num-vjp-of-broadcasted-add-mul/meta.json +23 -0
  5599. mlsys/tasks/num-vjp-of-broadcasted-add-mul/solution_ref.py +44 -0
  5600. mlsys/tasks/num-vjp-of-broadcasted-add-mul/starter.py +43 -0
  5601. mlsys/tasks/num-vjp-of-broadcasted-add-mul/task.md +76 -0
  5602. mlsys/tasks/num-vjp-of-elementwise-mul-exp-log/check.py +56 -0
  5603. mlsys/tasks/num-vjp-of-elementwise-mul-exp-log/gen_fixtures.py +1 -0
  5604. mlsys/tasks/num-vjp-of-elementwise-mul-exp-log/meta.json +22 -0
  5605. mlsys/tasks/num-vjp-of-elementwise-mul-exp-log/solution_ref.py +13 -0
  5606. mlsys/tasks/num-vjp-of-elementwise-mul-exp-log/starter.py +4 -0
  5607. mlsys/tasks/num-vjp-of-elementwise-mul-exp-log/task.md +82 -0
  5608. mlsys/tasks/num-vjp-of-layernorm/check.py +49 -0
  5609. mlsys/tasks/num-vjp-of-layernorm/gen_fixtures.py +1 -0
  5610. mlsys/tasks/num-vjp-of-layernorm/meta.json +22 -0
  5611. mlsys/tasks/num-vjp-of-layernorm/solution_ref.py +16 -0
  5612. mlsys/tasks/num-vjp-of-layernorm/starter.py +4 -0
  5613. mlsys/tasks/num-vjp-of-layernorm/task.md +84 -0
  5614. mlsys/tasks/num-vjp-of-log-softmax/check.py +51 -0
  5615. mlsys/tasks/num-vjp-of-log-softmax/gen_fixtures.py +1 -0
  5616. mlsys/tasks/num-vjp-of-log-softmax/meta.json +22 -0
  5617. mlsys/tasks/num-vjp-of-log-softmax/solution_ref.py +19 -0
  5618. mlsys/tasks/num-vjp-of-log-softmax/starter.py +10 -0
  5619. mlsys/tasks/num-vjp-of-log-softmax/task.md +74 -0
  5620. mlsys/tasks/num-vjp-of-matmul/check.py +66 -0
  5621. mlsys/tasks/num-vjp-of-matmul/gen_fixtures.py +1 -0
  5622. mlsys/tasks/num-vjp-of-matmul/meta.json +22 -0
  5623. mlsys/tasks/num-vjp-of-matmul/solution_ref.py +30 -0
  5624. mlsys/tasks/num-vjp-of-matmul/starter.py +4 -0
  5625. mlsys/tasks/num-vjp-of-matmul/task.md +72 -0
  5626. mlsys/tasks/num-vjp-of-softmax/check.py +42 -0
  5627. mlsys/tasks/num-vjp-of-softmax/gen_fixtures.py +1 -0
  5628. mlsys/tasks/num-vjp-of-softmax/meta.json +22 -0
  5629. mlsys/tasks/num-vjp-of-softmax/solution_ref.py +10 -0
  5630. mlsys/tasks/num-vjp-of-softmax/starter.py +4 -0
  5631. mlsys/tasks/num-vjp-of-softmax/task.md +58 -0
  5632. mlsys/tasks/num-warp-shuffle-block-reduction-modeled/check.py +46 -0
  5633. mlsys/tasks/num-warp-shuffle-block-reduction-modeled/gen_fixtures.py +1 -0
  5634. mlsys/tasks/num-warp-shuffle-block-reduction-modeled/meta.json +27 -0
  5635. mlsys/tasks/num-warp-shuffle-block-reduction-modeled/solution_ref.py +22 -0
  5636. mlsys/tasks/num-warp-shuffle-block-reduction-modeled/starter.py +2 -0
  5637. mlsys/tasks/num-warp-shuffle-block-reduction-modeled/task.md +60 -0
  5638. mlsys/tasks/num-welford-one-pass-mean-variance/check.py +43 -0
  5639. mlsys/tasks/num-welford-one-pass-mean-variance/gen_fixtures.py +1 -0
  5640. mlsys/tasks/num-welford-one-pass-mean-variance/meta.json +27 -0
  5641. mlsys/tasks/num-welford-one-pass-mean-variance/solution_ref.py +22 -0
  5642. mlsys/tasks/num-welford-one-pass-mean-variance/starter.py +11 -0
  5643. mlsys/tasks/num-welford-one-pass-mean-variance/task.md +66 -0
  5644. mlsys/tasks/num-wilkinson-shifted-qr/check.py +29 -0
  5645. mlsys/tasks/num-wilkinson-shifted-qr/gen_fixtures.py +1 -0
  5646. mlsys/tasks/num-wilkinson-shifted-qr/meta.json +22 -0
  5647. mlsys/tasks/num-wilkinson-shifted-qr/solution_ref.py +30 -0
  5648. mlsys/tasks/num-wilkinson-shifted-qr/starter.py +4 -0
  5649. mlsys/tasks/num-wilkinson-shifted-qr/task.md +83 -0
  5650. mlsys/tasks/py-cnt-fib-frames/check.py +25 -0
  5651. mlsys/tasks/py-cnt-fib-frames/gen_fixtures.py +1 -0
  5652. mlsys/tasks/py-cnt-fib-frames/meta.json +22 -0
  5653. mlsys/tasks/py-cnt-fib-frames/solution_ref.py +20 -0
  5654. mlsys/tasks/py-cnt-fib-frames/starter.py +3 -0
  5655. mlsys/tasks/py-cnt-fib-frames/task.md +36 -0
  5656. mlsys/tasks/pyt-aggregate-footprint-of-an-object-graph/check.py +80 -0
  5657. mlsys/tasks/pyt-aggregate-footprint-of-an-object-graph/gen_fixtures.py +1 -0
  5658. mlsys/tasks/pyt-aggregate-footprint-of-an-object-graph/meta.json +22 -0
  5659. mlsys/tasks/pyt-aggregate-footprint-of-an-object-graph/solution_ref.py +39 -0
  5660. mlsys/tasks/pyt-aggregate-footprint-of-an-object-graph/starter.py +4 -0
  5661. mlsys/tasks/pyt-aggregate-footprint-of-an-object-graph/task.md +72 -0
  5662. mlsys/tasks/pyt-amortized-append-copy-count-model/check.py +39 -0
  5663. mlsys/tasks/pyt-amortized-append-copy-count-model/gen_fixtures.py +1 -0
  5664. mlsys/tasks/pyt-amortized-append-copy-count-model/meta.json +22 -0
  5665. mlsys/tasks/pyt-amortized-append-copy-count-model/solution_ref.py +19 -0
  5666. mlsys/tasks/pyt-amortized-append-copy-count-model/starter.py +2 -0
  5667. mlsys/tasks/pyt-amortized-append-copy-count-model/task.md +59 -0
  5668. mlsys/tasks/pyt-atomic-vs-non-atomic-bytecode-classifier/check.py +44 -0
  5669. mlsys/tasks/pyt-atomic-vs-non-atomic-bytecode-classifier/gen_fixtures.py +1 -0
  5670. mlsys/tasks/pyt-atomic-vs-non-atomic-bytecode-classifier/meta.json +24 -0
  5671. mlsys/tasks/pyt-atomic-vs-non-atomic-bytecode-classifier/solution_ref.py +22 -0
  5672. mlsys/tasks/pyt-atomic-vs-non-atomic-bytecode-classifier/starter.py +2 -0
  5673. mlsys/tasks/pyt-atomic-vs-non-atomic-bytecode-classifier/task.md +49 -0
  5674. mlsys/tasks/pyt-auto-registering-metaclass/check.py +37 -0
  5675. mlsys/tasks/pyt-auto-registering-metaclass/gen_fixtures.py +1 -0
  5676. mlsys/tasks/pyt-auto-registering-metaclass/meta.json +22 -0
  5677. mlsys/tasks/pyt-auto-registering-metaclass/solution_ref.py +23 -0
  5678. mlsys/tasks/pyt-auto-registering-metaclass/starter.py +2 -0
  5679. mlsys/tasks/pyt-auto-registering-metaclass/task.md +51 -0
  5680. mlsys/tasks/pyt-await-desugaring-to-yield-from-await/check.py +58 -0
  5681. mlsys/tasks/pyt-await-desugaring-to-yield-from-await/gen_fixtures.py +1 -0
  5682. mlsys/tasks/pyt-await-desugaring-to-yield-from-await/meta.json +22 -0
  5683. mlsys/tasks/pyt-await-desugaring-to-yield-from-await/solution_ref.py +38 -0
  5684. mlsys/tasks/pyt-await-desugaring-to-yield-from-await/starter.py +2 -0
  5685. mlsys/tasks/pyt-await-desugaring-to-yield-from-await/task.md +73 -0
  5686. mlsys/tasks/pyt-bignum-30-bit-limb-layout/check.py +46 -0
  5687. mlsys/tasks/pyt-bignum-30-bit-limb-layout/gen_fixtures.py +1 -0
  5688. mlsys/tasks/pyt-bignum-30-bit-limb-layout/meta.json +22 -0
  5689. mlsys/tasks/pyt-bignum-30-bit-limb-layout/solution_ref.py +23 -0
  5690. mlsys/tasks/pyt-bignum-30-bit-limb-layout/starter.py +4 -0
  5691. mlsys/tasks/pyt-bignum-30-bit-limb-layout/task.md +65 -0
  5692. mlsys/tasks/pyt-blocks-per-pool-computation/check.py +35 -0
  5693. mlsys/tasks/pyt-blocks-per-pool-computation/gen_fixtures.py +1 -0
  5694. mlsys/tasks/pyt-blocks-per-pool-computation/meta.json +22 -0
  5695. mlsys/tasks/pyt-blocks-per-pool-computation/solution_ref.py +9 -0
  5696. mlsys/tasks/pyt-blocks-per-pool-computation/starter.py +4 -0
  5697. mlsys/tasks/pyt-blocks-per-pool-computation/task.md +83 -0
  5698. mlsys/tasks/pyt-boxed-int-list-vs-numpy-int64-footprint-ratio/check.py +48 -0
  5699. mlsys/tasks/pyt-boxed-int-list-vs-numpy-int64-footprint-ratio/gen_fixtures.py +1 -0
  5700. mlsys/tasks/pyt-boxed-int-list-vs-numpy-int64-footprint-ratio/meta.json +22 -0
  5701. mlsys/tasks/pyt-boxed-int-list-vs-numpy-int64-footprint-ratio/solution_ref.py +18 -0
  5702. mlsys/tasks/pyt-boxed-int-list-vs-numpy-int64-footprint-ratio/starter.py +3 -0
  5703. mlsys/tasks/pyt-boxed-int-list-vs-numpy-int64-footprint-ratio/task.md +65 -0
  5704. mlsys/tasks/pyt-build-cached-property-from-scratch/check.py +95 -0
  5705. mlsys/tasks/pyt-build-cached-property-from-scratch/gen_fixtures.py +1 -0
  5706. mlsys/tasks/pyt-build-cached-property-from-scratch/meta.json +27 -0
  5707. mlsys/tasks/pyt-build-cached-property-from-scratch/solution_ref.py +26 -0
  5708. mlsys/tasks/pyt-build-cached-property-from-scratch/starter.py +17 -0
  5709. mlsys/tasks/pyt-build-cached-property-from-scratch/task.md +85 -0
  5710. mlsys/tasks/pyt-byte-pack-a-pyobject-pyvarobject-header/check.py +45 -0
  5711. mlsys/tasks/pyt-byte-pack-a-pyobject-pyvarobject-header/gen_fixtures.py +1 -0
  5712. mlsys/tasks/pyt-byte-pack-a-pyobject-pyvarobject-header/meta.json +22 -0
  5713. mlsys/tasks/pyt-byte-pack-a-pyobject-pyvarobject-header/solution_ref.py +13 -0
  5714. mlsys/tasks/pyt-byte-pack-a-pyobject-pyvarobject-header/starter.py +4 -0
  5715. mlsys/tasks/pyt-byte-pack-a-pyobject-pyvarobject-header/task.md +60 -0
  5716. mlsys/tasks/pyt-c-contiguous-vs-non-contiguous-classifier/check.py +49 -0
  5717. mlsys/tasks/pyt-c-contiguous-vs-non-contiguous-classifier/gen_fixtures.py +1 -0
  5718. mlsys/tasks/pyt-c-contiguous-vs-non-contiguous-classifier/meta.json +22 -0
  5719. mlsys/tasks/pyt-c-contiguous-vs-non-contiguous-classifier/solution_ref.py +23 -0
  5720. mlsys/tasks/pyt-c-contiguous-vs-non-contiguous-classifier/starter.py +3 -0
  5721. mlsys/tasks/pyt-c-contiguous-vs-non-contiguous-classifier/task.md +76 -0
  5722. mlsys/tasks/pyt-cap-peak-live-large-object-count/check.py +66 -0
  5723. mlsys/tasks/pyt-cap-peak-live-large-object-count/gen_fixtures.py +2 -0
  5724. mlsys/tasks/pyt-cap-peak-live-large-object-count/meta.json +27 -0
  5725. mlsys/tasks/pyt-cap-peak-live-large-object-count/solution_ref.py +12 -0
  5726. mlsys/tasks/pyt-cap-peak-live-large-object-count/starter.py +6 -0
  5727. mlsys/tasks/pyt-cap-peak-live-large-object-count/task.md +75 -0
  5728. mlsys/tasks/pyt-cellvars-vs-freevars/check.py +71 -0
  5729. mlsys/tasks/pyt-cellvars-vs-freevars/gen_fixtures.py +1 -0
  5730. mlsys/tasks/pyt-cellvars-vs-freevars/meta.json +22 -0
  5731. mlsys/tasks/pyt-cellvars-vs-freevars/solution_ref.py +21 -0
  5732. mlsys/tasks/pyt-cellvars-vs-freevars/starter.py +4 -0
  5733. mlsys/tasks/pyt-cellvars-vs-freevars/task.md +80 -0
  5734. mlsys/tasks/pyt-circular-import-failure-predictor/check.py +116 -0
  5735. mlsys/tasks/pyt-circular-import-failure-predictor/gen_fixtures.py +0 -0
  5736. mlsys/tasks/pyt-circular-import-failure-predictor/meta.json +22 -0
  5737. mlsys/tasks/pyt-circular-import-failure-predictor/solution_ref.py +62 -0
  5738. mlsys/tasks/pyt-circular-import-failure-predictor/starter.py +50 -0
  5739. mlsys/tasks/pyt-circular-import-failure-predictor/task.md +90 -0
  5740. mlsys/tasks/pyt-class-creation-event-ordering/check.py +42 -0
  5741. mlsys/tasks/pyt-class-creation-event-ordering/gen_fixtures.py +1 -0
  5742. mlsys/tasks/pyt-class-creation-event-ordering/meta.json +22 -0
  5743. mlsys/tasks/pyt-class-creation-event-ordering/solution_ref.py +34 -0
  5744. mlsys/tasks/pyt-class-creation-event-ordering/starter.py +2 -0
  5745. mlsys/tasks/pyt-class-creation-event-ordering/task.md +52 -0
  5746. mlsys/tasks/pyt-class-reassignment-compatibility-predictor/check.py +61 -0
  5747. mlsys/tasks/pyt-class-reassignment-compatibility-predictor/gen_fixtures.py +1 -0
  5748. mlsys/tasks/pyt-class-reassignment-compatibility-predictor/meta.json +22 -0
  5749. mlsys/tasks/pyt-class-reassignment-compatibility-predictor/solution_ref.py +10 -0
  5750. mlsys/tasks/pyt-class-reassignment-compatibility-predictor/starter.py +2 -0
  5751. mlsys/tasks/pyt-class-reassignment-compatibility-predictor/task.md +57 -0
  5752. mlsys/tasks/pyt-code-object-field-table/check.py +61 -0
  5753. mlsys/tasks/pyt-code-object-field-table/gen_fixtures.py +1 -0
  5754. mlsys/tasks/pyt-code-object-field-table/meta.json +22 -0
  5755. mlsys/tasks/pyt-code-object-field-table/solution_ref.py +12 -0
  5756. mlsys/tasks/pyt-code-object-field-table/starter.py +4 -0
  5757. mlsys/tasks/pyt-code-object-field-table/task.md +69 -0
  5758. mlsys/tasks/pyt-codepoint-vs-byte-length-across-encodings/check.py +34 -0
  5759. mlsys/tasks/pyt-codepoint-vs-byte-length-across-encodings/gen_fixtures.py +1 -0
  5760. mlsys/tasks/pyt-codepoint-vs-byte-length-across-encodings/meta.json +22 -0
  5761. mlsys/tasks/pyt-codepoint-vs-byte-length-across-encodings/solution_ref.py +11 -0
  5762. mlsys/tasks/pyt-codepoint-vs-byte-length-across-encodings/starter.py +2 -0
  5763. mlsys/tasks/pyt-codepoint-vs-byte-length-across-encodings/task.md +52 -0
  5764. mlsys/tasks/pyt-compact-dict-iteration-order-after-churn/check.py +62 -0
  5765. mlsys/tasks/pyt-compact-dict-iteration-order-after-churn/gen_fixtures.py +1 -0
  5766. mlsys/tasks/pyt-compact-dict-iteration-order-after-churn/meta.json +22 -0
  5767. mlsys/tasks/pyt-compact-dict-iteration-order-after-churn/solution_ref.py +10 -0
  5768. mlsys/tasks/pyt-compact-dict-iteration-order-after-churn/starter.py +6 -0
  5769. mlsys/tasks/pyt-compact-dict-iteration-order-after-churn/task.md +78 -0
  5770. mlsys/tasks/pyt-compare-call-heavy-vs-inlined-line-call-events/check.py +59 -0
  5771. mlsys/tasks/pyt-compare-call-heavy-vs-inlined-line-call-events/gen_fixtures.py +1 -0
  5772. mlsys/tasks/pyt-compare-call-heavy-vs-inlined-line-call-events/meta.json +33 -0
  5773. mlsys/tasks/pyt-compare-call-heavy-vs-inlined-line-call-events/solution_ref.py +22 -0
  5774. mlsys/tasks/pyt-compare-call-heavy-vs-inlined-line-call-events/starter.py +11 -0
  5775. mlsys/tasks/pyt-compare-call-heavy-vs-inlined-line-call-events/task.md +69 -0
  5776. mlsys/tasks/pyt-compare-recompute-events-property-cached-manual-memo/check.py +61 -0
  5777. mlsys/tasks/pyt-compare-recompute-events-property-cached-manual-memo/gen_fixtures.py +1 -0
  5778. mlsys/tasks/pyt-compare-recompute-events-property-cached-manual-memo/meta.json +25 -0
  5779. mlsys/tasks/pyt-compare-recompute-events-property-cached-manual-memo/solution_ref.py +45 -0
  5780. mlsys/tasks/pyt-compare-recompute-events-property-cached-manual-memo/starter.py +27 -0
  5781. mlsys/tasks/pyt-compare-recompute-events-property-cached-manual-memo/task.md +85 -0
  5782. mlsys/tasks/pyt-constant-folding-predictor/check.py +42 -0
  5783. mlsys/tasks/pyt-constant-folding-predictor/gen_fixtures.py +1 -0
  5784. mlsys/tasks/pyt-constant-folding-predictor/meta.json +22 -0
  5785. mlsys/tasks/pyt-constant-folding-predictor/solution_ref.py +19 -0
  5786. mlsys/tasks/pyt-constant-folding-predictor/starter.py +4 -0
  5787. mlsys/tasks/pyt-constant-folding-predictor/task.md +63 -0
  5788. mlsys/tasks/pyt-coroutine-async-gen-generator-classifier/check.py +42 -0
  5789. mlsys/tasks/pyt-coroutine-async-gen-generator-classifier/gen_fixtures.py +1 -0
  5790. mlsys/tasks/pyt-coroutine-async-gen-generator-classifier/meta.json +22 -0
  5791. mlsys/tasks/pyt-coroutine-async-gen-generator-classifier/solution_ref.py +8 -0
  5792. mlsys/tasks/pyt-coroutine-async-gen-generator-classifier/starter.py +2 -0
  5793. mlsys/tasks/pyt-coroutine-async-gen-generator-classifier/task.md +62 -0
  5794. mlsys/tasks/pyt-count-attribute-lookups-during-construction/check.py +48 -0
  5795. mlsys/tasks/pyt-count-attribute-lookups-during-construction/gen_fixtures.py +1 -0
  5796. mlsys/tasks/pyt-count-attribute-lookups-during-construction/meta.json +22 -0
  5797. mlsys/tasks/pyt-count-attribute-lookups-during-construction/solution_ref.py +25 -0
  5798. mlsys/tasks/pyt-count-attribute-lookups-during-construction/starter.py +2 -0
  5799. mlsys/tasks/pyt-count-attribute-lookups-during-construction/task.md +44 -0
  5800. mlsys/tasks/pyt-count-executed-value-stack-ops-in-a-hot-loop/check.py +69 -0
  5801. mlsys/tasks/pyt-count-executed-value-stack-ops-in-a-hot-loop/gen_fixtures.py +2 -0
  5802. mlsys/tasks/pyt-count-executed-value-stack-ops-in-a-hot-loop/meta.json +27 -0
  5803. mlsys/tasks/pyt-count-executed-value-stack-ops-in-a-hot-loop/solution_ref.py +9 -0
  5804. mlsys/tasks/pyt-count-executed-value-stack-ops-in-a-hot-loop/starter.py +6 -0
  5805. mlsys/tasks/pyt-count-executed-value-stack-ops-in-a-hot-loop/task.md +70 -0
  5806. mlsys/tasks/pyt-counter-via-nonlocal-cell/check.py +30 -0
  5807. mlsys/tasks/pyt-counter-via-nonlocal-cell/gen_fixtures.py +1 -0
  5808. mlsys/tasks/pyt-counter-via-nonlocal-cell/meta.json +22 -0
  5809. mlsys/tasks/pyt-counter-via-nonlocal-cell/solution_ref.py +13 -0
  5810. mlsys/tasks/pyt-counter-via-nonlocal-cell/starter.py +2 -0
  5811. mlsys/tasks/pyt-counter-via-nonlocal-cell/task.md +32 -0
  5812. mlsys/tasks/pyt-create-a-class-with-3-arg-type/check.py +50 -0
  5813. mlsys/tasks/pyt-create-a-class-with-3-arg-type/gen_fixtures.py +1 -0
  5814. mlsys/tasks/pyt-create-a-class-with-3-arg-type/meta.json +22 -0
  5815. mlsys/tasks/pyt-create-a-class-with-3-arg-type/solution_ref.py +17 -0
  5816. mlsys/tasks/pyt-create-a-class-with-3-arg-type/starter.py +6 -0
  5817. mlsys/tasks/pyt-create-a-class-with-3-arg-type/task.md +69 -0
  5818. mlsys/tasks/pyt-cut-attribute-lookup-events-under-a-budget/check.py +82 -0
  5819. mlsys/tasks/pyt-cut-attribute-lookup-events-under-a-budget/gen_fixtures.py +1 -0
  5820. mlsys/tasks/pyt-cut-attribute-lookup-events-under-a-budget/meta.json +27 -0
  5821. mlsys/tasks/pyt-cut-attribute-lookup-events-under-a-budget/solution_ref.py +6 -0
  5822. mlsys/tasks/pyt-cut-attribute-lookup-events-under-a-budget/starter.py +2 -0
  5823. mlsys/tasks/pyt-cut-attribute-lookup-events-under-a-budget/task.md +55 -0
  5824. mlsys/tasks/pyt-data-vs-non-data-descriptor-classifier/check.py +113 -0
  5825. mlsys/tasks/pyt-data-vs-non-data-descriptor-classifier/gen_fixtures.py +1 -0
  5826. mlsys/tasks/pyt-data-vs-non-data-descriptor-classifier/meta.json +22 -0
  5827. mlsys/tasks/pyt-data-vs-non-data-descriptor-classifier/solution_ref.py +7 -0
  5828. mlsys/tasks/pyt-data-vs-non-data-descriptor-classifier/starter.py +2 -0
  5829. mlsys/tasks/pyt-data-vs-non-data-descriptor-classifier/task.md +62 -0
  5830. mlsys/tasks/pyt-detect-the-cycle-refcounting-misses/check.py +102 -0
  5831. mlsys/tasks/pyt-detect-the-cycle-refcounting-misses/gen_fixtures.py +1 -0
  5832. mlsys/tasks/pyt-detect-the-cycle-refcounting-misses/meta.json +22 -0
  5833. mlsys/tasks/pyt-detect-the-cycle-refcounting-misses/solution_ref.py +59 -0
  5834. mlsys/tasks/pyt-detect-the-cycle-refcounting-misses/starter.py +2 -0
  5835. mlsys/tasks/pyt-detect-the-cycle-refcounting-misses/task.md +78 -0
  5836. mlsys/tasks/pyt-dict-footprint-before-after-delete-churn/check.py +54 -0
  5837. mlsys/tasks/pyt-dict-footprint-before-after-delete-churn/gen_fixtures.py +1 -0
  5838. mlsys/tasks/pyt-dict-footprint-before-after-delete-churn/meta.json +22 -0
  5839. mlsys/tasks/pyt-dict-footprint-before-after-delete-churn/solution_ref.py +17 -0
  5840. mlsys/tasks/pyt-dict-footprint-before-after-delete-churn/starter.py +4 -0
  5841. mlsys/tasks/pyt-dict-footprint-before-after-delete-churn/task.md +63 -0
  5842. mlsys/tasks/pyt-dict-resize-threshold-and-new-size/check.py +47 -0
  5843. mlsys/tasks/pyt-dict-resize-threshold-and-new-size/gen_fixtures.py +1 -0
  5844. mlsys/tasks/pyt-dict-resize-threshold-and-new-size/meta.json +24 -0
  5845. mlsys/tasks/pyt-dict-resize-threshold-and-new-size/solution_ref.py +24 -0
  5846. mlsys/tasks/pyt-dict-resize-threshold-and-new-size/starter.py +2 -0
  5847. mlsys/tasks/pyt-dict-resize-threshold-and-new-size/task.md +44 -0
  5848. mlsys/tasks/pyt-dict-vs-slots-per-instance-footprint-ratio/check.py +47 -0
  5849. mlsys/tasks/pyt-dict-vs-slots-per-instance-footprint-ratio/gen_fixtures.py +1 -0
  5850. mlsys/tasks/pyt-dict-vs-slots-per-instance-footprint-ratio/meta.json +22 -0
  5851. mlsys/tasks/pyt-dict-vs-slots-per-instance-footprint-ratio/solution_ref.py +24 -0
  5852. mlsys/tasks/pyt-dict-vs-slots-per-instance-footprint-ratio/starter.py +4 -0
  5853. mlsys/tasks/pyt-dict-vs-slots-per-instance-footprint-ratio/task.md +65 -0
  5854. mlsys/tasks/pyt-disassemble-one-function/check.py +20 -0
  5855. mlsys/tasks/pyt-disassemble-one-function/gen_fixtures.py +1 -0
  5856. mlsys/tasks/pyt-disassemble-one-function/meta.json +22 -0
  5857. mlsys/tasks/pyt-disassemble-one-function/solution_ref.py +5 -0
  5858. mlsys/tasks/pyt-disassemble-one-function/starter.py +2 -0
  5859. mlsys/tasks/pyt-disassemble-one-function/task.md +44 -0
  5860. mlsys/tasks/pyt-drive-a-coroutine-by-hand/check.py +53 -0
  5861. mlsys/tasks/pyt-drive-a-coroutine-by-hand/gen_fixtures.py +1 -0
  5862. mlsys/tasks/pyt-drive-a-coroutine-by-hand/meta.json +22 -0
  5863. mlsys/tasks/pyt-drive-a-coroutine-by-hand/solution_ref.py +12 -0
  5864. mlsys/tasks/pyt-drive-a-coroutine-by-hand/starter.py +2 -0
  5865. mlsys/tasks/pyt-drive-a-coroutine-by-hand/task.md +61 -0
  5866. mlsys/tasks/pyt-emit-the-attribute-precedence-rule-list/check.py +91 -0
  5867. mlsys/tasks/pyt-emit-the-attribute-precedence-rule-list/gen_fixtures.py +1 -0
  5868. mlsys/tasks/pyt-emit-the-attribute-precedence-rule-list/meta.json +22 -0
  5869. mlsys/tasks/pyt-emit-the-attribute-precedence-rule-list/solution_ref.py +2 -0
  5870. mlsys/tasks/pyt-emit-the-attribute-precedence-rule-list/starter.py +2 -0
  5871. mlsys/tasks/pyt-emit-the-attribute-precedence-rule-list/task.md +52 -0
  5872. mlsys/tasks/pyt-encode-decode-round-trip-byte-exact/check.py +54 -0
  5873. mlsys/tasks/pyt-encode-decode-round-trip-byte-exact/gen_fixtures.py +1 -0
  5874. mlsys/tasks/pyt-encode-decode-round-trip-byte-exact/meta.json +22 -0
  5875. mlsys/tasks/pyt-encode-decode-round-trip-byte-exact/solution_ref.py +10 -0
  5876. mlsys/tasks/pyt-encode-decode-round-trip-byte-exact/starter.py +2 -0
  5877. mlsys/tasks/pyt-encode-decode-round-trip-byte-exact/task.md +59 -0
  5878. mlsys/tasks/pyt-eval-stack-temporary-lifetime/check.py +26 -0
  5879. mlsys/tasks/pyt-eval-stack-temporary-lifetime/gen_fixtures.py +1 -0
  5880. mlsys/tasks/pyt-eval-stack-temporary-lifetime/meta.json +24 -0
  5881. mlsys/tasks/pyt-eval-stack-temporary-lifetime/solution_ref.py +17 -0
  5882. mlsys/tasks/pyt-eval-stack-temporary-lifetime/starter.py +2 -0
  5883. mlsys/tasks/pyt-eval-stack-temporary-lifetime/task.md +56 -0
  5884. mlsys/tasks/pyt-except-branch-matching-predictor/check.py +49 -0
  5885. mlsys/tasks/pyt-except-branch-matching-predictor/gen_fixtures.py +1 -0
  5886. mlsys/tasks/pyt-except-branch-matching-predictor/meta.json +24 -0
  5887. mlsys/tasks/pyt-except-branch-matching-predictor/solution_ref.py +23 -0
  5888. mlsys/tasks/pyt-except-branch-matching-predictor/starter.py +2 -0
  5889. mlsys/tasks/pyt-except-branch-matching-predictor/task.md +70 -0
  5890. mlsys/tasks/pyt-exception-chaining-cause-vs-context/check.py +37 -0
  5891. mlsys/tasks/pyt-exception-chaining-cause-vs-context/gen_fixtures.py +1 -0
  5892. mlsys/tasks/pyt-exception-chaining-cause-vs-context/meta.json +22 -0
  5893. mlsys/tasks/pyt-exception-chaining-cause-vs-context/solution_ref.py +19 -0
  5894. mlsys/tasks/pyt-exception-chaining-cause-vs-context/starter.py +2 -0
  5895. mlsys/tasks/pyt-exception-chaining-cause-vs-context/task.md +82 -0
  5896. mlsys/tasks/pyt-exceptiongroup-split-subgroup/check.py +92 -0
  5897. mlsys/tasks/pyt-exceptiongroup-split-subgroup/gen_fixtures.py +1 -0
  5898. mlsys/tasks/pyt-exceptiongroup-split-subgroup/meta.json +24 -0
  5899. mlsys/tasks/pyt-exceptiongroup-split-subgroup/solution_ref.py +3 -0
  5900. mlsys/tasks/pyt-exceptiongroup-split-subgroup/starter.py +2 -0
  5901. mlsys/tasks/pyt-exceptiongroup-split-subgroup/task.md +65 -0
  5902. mlsys/tasks/pyt-find-the-retaining-edge-that-blocks-free/check.py +109 -0
  5903. mlsys/tasks/pyt-find-the-retaining-edge-that-blocks-free/gen_fixtures.py +1 -0
  5904. mlsys/tasks/pyt-find-the-retaining-edge-that-blocks-free/meta.json +22 -0
  5905. mlsys/tasks/pyt-find-the-retaining-edge-that-blocks-free/solution_ref.py +35 -0
  5906. mlsys/tasks/pyt-find-the-retaining-edge-that-blocks-free/starter.py +7 -0
  5907. mlsys/tasks/pyt-find-the-retaining-edge-that-blocks-free/task.md +63 -0
  5908. mlsys/tasks/pyt-fix-a-broken-metatype-so-isinstance-tells-the-truth/check.py +25 -0
  5909. mlsys/tasks/pyt-fix-a-broken-metatype-so-isinstance-tells-the-truth/gen_fixtures.py +1 -0
  5910. mlsys/tasks/pyt-fix-a-broken-metatype-so-isinstance-tells-the-truth/meta.json +22 -0
  5911. mlsys/tasks/pyt-fix-a-broken-metatype-so-isinstance-tells-the-truth/solution_ref.py +6 -0
  5912. mlsys/tasks/pyt-fix-a-broken-metatype-so-isinstance-tells-the-truth/starter.py +4 -0
  5913. mlsys/tasks/pyt-fix-a-broken-metatype-so-isinstance-tells-the-truth/task.md +56 -0
  5914. mlsys/tasks/pyt-fix-a-broken-stack-effect-in-a-hand-vm/check.py +78 -0
  5915. mlsys/tasks/pyt-fix-a-broken-stack-effect-in-a-hand-vm/gen_fixtures.py +1 -0
  5916. mlsys/tasks/pyt-fix-a-broken-stack-effect-in-a-hand-vm/meta.json +22 -0
  5917. mlsys/tasks/pyt-fix-a-broken-stack-effect-in-a-hand-vm/solution_ref.py +22 -0
  5918. mlsys/tasks/pyt-fix-a-broken-stack-effect-in-a-hand-vm/starter.py +24 -0
  5919. mlsys/tasks/pyt-fix-a-broken-stack-effect-in-a-hand-vm/task.md +69 -0
  5920. mlsys/tasks/pyt-fix-a-cached-property-that-never-caches/check.py +76 -0
  5921. mlsys/tasks/pyt-fix-a-cached-property-that-never-caches/gen_fixtures.py +1 -0
  5922. mlsys/tasks/pyt-fix-a-cached-property-that-never-caches/meta.json +27 -0
  5923. mlsys/tasks/pyt-fix-a-cached-property-that-never-caches/solution_ref.py +12 -0
  5924. mlsys/tasks/pyt-fix-a-cached-property-that-never-caches/starter.py +18 -0
  5925. mlsys/tasks/pyt-fix-a-cached-property-that-never-caches/task.md +78 -0
  5926. mlsys/tasks/pyt-fix-a-finalizer-blocked-cycle/check.py +35 -0
  5927. mlsys/tasks/pyt-fix-a-finalizer-blocked-cycle/gen_fixtures.py +1 -0
  5928. mlsys/tasks/pyt-fix-a-finalizer-blocked-cycle/meta.json +22 -0
  5929. mlsys/tasks/pyt-fix-a-finalizer-blocked-cycle/solution_ref.py +26 -0
  5930. mlsys/tasks/pyt-fix-a-finalizer-blocked-cycle/starter.py +23 -0
  5931. mlsys/tasks/pyt-fix-a-finalizer-blocked-cycle/task.md +56 -0
  5932. mlsys/tasks/pyt-fix-a-finalizer-that-resurrects-its-object/check.py +36 -0
  5933. mlsys/tasks/pyt-fix-a-finalizer-that-resurrects-its-object/gen_fixtures.py +1 -0
  5934. mlsys/tasks/pyt-fix-a-finalizer-that-resurrects-its-object/meta.json +22 -0
  5935. mlsys/tasks/pyt-fix-a-finalizer-that-resurrects-its-object/solution_ref.py +27 -0
  5936. mlsys/tasks/pyt-fix-a-finalizer-that-resurrects-its-object/starter.py +25 -0
  5937. mlsys/tasks/pyt-fix-a-finalizer-that-resurrects-its-object/task.md +73 -0
  5938. mlsys/tasks/pyt-fix-a-generator-that-skips-cleanup/check.py +49 -0
  5939. mlsys/tasks/pyt-fix-a-generator-that-skips-cleanup/gen_fixtures.py +1 -0
  5940. mlsys/tasks/pyt-fix-a-generator-that-skips-cleanup/meta.json +22 -0
  5941. mlsys/tasks/pyt-fix-a-generator-that-skips-cleanup/solution_ref.py +9 -0
  5942. mlsys/tasks/pyt-fix-a-generator-that-skips-cleanup/starter.py +15 -0
  5943. mlsys/tasks/pyt-fix-a-generator-that-skips-cleanup/task.md +79 -0
  5944. mlsys/tasks/pyt-fix-a-non-data-descriptor-shadowed-by-the-instance-dict/check.py +54 -0
  5945. mlsys/tasks/pyt-fix-a-non-data-descriptor-shadowed-by-the-instance-dict/gen_fixtures.py +1 -0
  5946. mlsys/tasks/pyt-fix-a-non-data-descriptor-shadowed-by-the-instance-dict/meta.json +23 -0
  5947. mlsys/tasks/pyt-fix-a-non-data-descriptor-shadowed-by-the-instance-dict/solution_ref.py +31 -0
  5948. mlsys/tasks/pyt-fix-a-non-data-descriptor-shadowed-by-the-instance-dict/starter.py +29 -0
  5949. mlsys/tasks/pyt-fix-a-non-data-descriptor-shadowed-by-the-instance-dict/task.md +76 -0
  5950. mlsys/tasks/pyt-fix-a-non-restartable-iterator/check.py +19 -0
  5951. mlsys/tasks/pyt-fix-a-non-restartable-iterator/gen_fixtures.py +1 -0
  5952. mlsys/tasks/pyt-fix-a-non-restartable-iterator/meta.json +22 -0
  5953. mlsys/tasks/pyt-fix-a-non-restartable-iterator/solution_ref.py +24 -0
  5954. mlsys/tasks/pyt-fix-a-non-restartable-iterator/starter.py +16 -0
  5955. mlsys/tasks/pyt-fix-a-non-restartable-iterator/task.md +66 -0
  5956. mlsys/tasks/pyt-fix-a-slots-defeating-subclass/check.py +48 -0
  5957. mlsys/tasks/pyt-fix-a-slots-defeating-subclass/gen_fixtures.py +1 -0
  5958. mlsys/tasks/pyt-fix-a-slots-defeating-subclass/meta.json +22 -0
  5959. mlsys/tasks/pyt-fix-a-slots-defeating-subclass/solution_ref.py +7 -0
  5960. mlsys/tasks/pyt-fix-a-slots-defeating-subclass/starter.py +4 -0
  5961. mlsys/tasks/pyt-fix-a-slots-defeating-subclass/task.md +66 -0
  5962. mlsys/tasks/pyt-fix-an-exception-swallowing-bug/check.py +98 -0
  5963. mlsys/tasks/pyt-fix-an-exception-swallowing-bug/gen_fixtures.py +2 -0
  5964. mlsys/tasks/pyt-fix-an-exception-swallowing-bug/meta.json +22 -0
  5965. mlsys/tasks/pyt-fix-an-exception-swallowing-bug/solution_ref.py +21 -0
  5966. mlsys/tasks/pyt-fix-an-exception-swallowing-bug/starter.py +26 -0
  5967. mlsys/tasks/pyt-fix-an-exception-swallowing-bug/task.md +74 -0
  5968. mlsys/tasks/pyt-fix-coroutine-was-never-awaited/check.py +63 -0
  5969. mlsys/tasks/pyt-fix-coroutine-was-never-awaited/gen_fixtures.py +1 -0
  5970. mlsys/tasks/pyt-fix-coroutine-was-never-awaited/meta.json +22 -0
  5971. mlsys/tasks/pyt-fix-coroutine-was-never-awaited/solution_ref.py +24 -0
  5972. mlsys/tasks/pyt-fix-coroutine-was-never-awaited/starter.py +26 -0
  5973. mlsys/tasks/pyt-fix-coroutine-was-never-awaited/task.md +55 -0
  5974. mlsys/tasks/pyt-fix-the-late-binding-closure-bug/check.py +27 -0
  5975. mlsys/tasks/pyt-fix-the-late-binding-closure-bug/gen_fixtures.py +1 -0
  5976. mlsys/tasks/pyt-fix-the-late-binding-closure-bug/meta.json +22 -0
  5977. mlsys/tasks/pyt-fix-the-late-binding-closure-bug/solution_ref.py +3 -0
  5978. mlsys/tasks/pyt-fix-the-late-binding-closure-bug/starter.py +4 -0
  5979. mlsys/tasks/pyt-fix-the-late-binding-closure-bug/task.md +70 -0
  5980. mlsys/tasks/pyt-fix-tombstone-handling-in-a-scratch-open-addressing-dict/check.py +80 -0
  5981. mlsys/tasks/pyt-fix-tombstone-handling-in-a-scratch-open-addressing-dict/gen_fixtures.py +1 -0
  5982. mlsys/tasks/pyt-fix-tombstone-handling-in-a-scratch-open-addressing-dict/meta.json +22 -0
  5983. mlsys/tasks/pyt-fix-tombstone-handling-in-a-scratch-open-addressing-dict/solution_ref.py +59 -0
  5984. mlsys/tasks/pyt-fix-tombstone-handling-in-a-scratch-open-addressing-dict/starter.py +67 -0
  5985. mlsys/tasks/pyt-fix-tombstone-handling-in-a-scratch-open-addressing-dict/task.md +76 -0
  5986. mlsys/tasks/pyt-fixed-vs-variable-size-classifier/check.py +34 -0
  5987. mlsys/tasks/pyt-fixed-vs-variable-size-classifier/gen_fixtures.py +1 -0
  5988. mlsys/tasks/pyt-fixed-vs-variable-size-classifier/meta.json +22 -0
  5989. mlsys/tasks/pyt-fixed-vs-variable-size-classifier/solution_ref.py +14 -0
  5990. mlsys/tasks/pyt-fixed-vs-variable-size-classifier/starter.py +5 -0
  5991. mlsys/tasks/pyt-fixed-vs-variable-size-classifier/task.md +43 -0
  5992. mlsys/tasks/pyt-footprint-sweep-dict-slots-namedtuple-key-shared/check.py +63 -0
  5993. mlsys/tasks/pyt-footprint-sweep-dict-slots-namedtuple-key-shared/gen_fixtures.py +1 -0
  5994. mlsys/tasks/pyt-footprint-sweep-dict-slots-namedtuple-key-shared/meta.json +22 -0
  5995. mlsys/tasks/pyt-footprint-sweep-dict-slots-namedtuple-key-shared/solution_ref.py +49 -0
  5996. mlsys/tasks/pyt-footprint-sweep-dict-slots-namedtuple-key-shared/starter.py +4 -0
  5997. mlsys/tasks/pyt-footprint-sweep-dict-slots-namedtuple-key-shared/task.md +56 -0
  5998. mlsys/tasks/pyt-freed-at-statement-end-classifier/check.py +60 -0
  5999. mlsys/tasks/pyt-freed-at-statement-end-classifier/gen_fixtures.py +1 -0
  6000. mlsys/tasks/pyt-freed-at-statement-end-classifier/meta.json +22 -0
  6001. mlsys/tasks/pyt-freed-at-statement-end-classifier/solution_ref.py +20 -0
  6002. mlsys/tasks/pyt-freed-at-statement-end-classifier/starter.py +2 -0
  6003. mlsys/tasks/pyt-freed-at-statement-end-classifier/task.md +51 -0
  6004. mlsys/tasks/pyt-frozenset-hash-algorithm/check.py +53 -0
  6005. mlsys/tasks/pyt-frozenset-hash-algorithm/gen_fixtures.py +1 -0
  6006. mlsys/tasks/pyt-frozenset-hash-algorithm/meta.json +22 -0
  6007. mlsys/tasks/pyt-frozenset-hash-algorithm/solution_ref.py +27 -0
  6008. mlsys/tasks/pyt-frozenset-hash-algorithm/starter.py +2 -0
  6009. mlsys/tasks/pyt-frozenset-hash-algorithm/task.md +58 -0
  6010. mlsys/tasks/pyt-gc-enabled-vs-frozen-vs-disabled-counts/check.py +63 -0
  6011. mlsys/tasks/pyt-gc-enabled-vs-frozen-vs-disabled-counts/gen_fixtures.py +1 -0
  6012. mlsys/tasks/pyt-gc-enabled-vs-frozen-vs-disabled-counts/meta.json +22 -0
  6013. mlsys/tasks/pyt-gc-enabled-vs-frozen-vs-disabled-counts/solution_ref.py +54 -0
  6014. mlsys/tasks/pyt-gc-enabled-vs-frozen-vs-disabled-counts/starter.py +4 -0
  6015. mlsys/tasks/pyt-gc-enabled-vs-frozen-vs-disabled-counts/task.md +66 -0
  6016. mlsys/tasks/pyt-gc-tracked-vs-untracked-classifier/check.py +40 -0
  6017. mlsys/tasks/pyt-gc-tracked-vs-untracked-classifier/gen_fixtures.py +1 -0
  6018. mlsys/tasks/pyt-gc-tracked-vs-untracked-classifier/meta.json +22 -0
  6019. mlsys/tasks/pyt-gc-tracked-vs-untracked-classifier/solution_ref.py +5 -0
  6020. mlsys/tasks/pyt-gc-tracked-vs-untracked-classifier/starter.py +2 -0
  6021. mlsys/tasks/pyt-gc-tracked-vs-untracked-classifier/task.md +62 -0
  6022. mlsys/tasks/pyt-generator-state-transitions/check.py +37 -0
  6023. mlsys/tasks/pyt-generator-state-transitions/gen_fixtures.py +1 -0
  6024. mlsys/tasks/pyt-generator-state-transitions/meta.json +22 -0
  6025. mlsys/tasks/pyt-generator-state-transitions/solution_ref.py +29 -0
  6026. mlsys/tasks/pyt-generator-state-transitions/starter.py +4 -0
  6027. mlsys/tasks/pyt-generator-state-transitions/task.md +67 -0
  6028. mlsys/tasks/pyt-generator-vs-list-comp-footprint/check.py +23 -0
  6029. mlsys/tasks/pyt-generator-vs-list-comp-footprint/gen_fixtures.py +1 -0
  6030. mlsys/tasks/pyt-generator-vs-list-comp-footprint/meta.json +22 -0
  6031. mlsys/tasks/pyt-generator-vs-list-comp-footprint/solution_ref.py +7 -0
  6032. mlsys/tasks/pyt-generator-vs-list-comp-footprint/starter.py +4 -0
  6033. mlsys/tasks/pyt-generator-vs-list-comp-footprint/task.md +61 -0
  6034. mlsys/tasks/pyt-getsizeof-one-dict-instance-vs-one-slotted-instance/check.py +36 -0
  6035. mlsys/tasks/pyt-getsizeof-one-dict-instance-vs-one-slotted-instance/gen_fixtures.py +1 -0
  6036. mlsys/tasks/pyt-getsizeof-one-dict-instance-vs-one-slotted-instance/meta.json +22 -0
  6037. mlsys/tasks/pyt-getsizeof-one-dict-instance-vs-one-slotted-instance/solution_ref.py +24 -0
  6038. mlsys/tasks/pyt-getsizeof-one-dict-instance-vs-one-slotted-instance/starter.py +4 -0
  6039. mlsys/tasks/pyt-getsizeof-one-dict-instance-vs-one-slotted-instance/task.md +57 -0
  6040. mlsys/tasks/pyt-gil-held-vs-gil-released-op-classifier/check.py +81 -0
  6041. mlsys/tasks/pyt-gil-held-vs-gil-released-op-classifier/gen_fixtures.py +1 -0
  6042. mlsys/tasks/pyt-gil-held-vs-gil-released-op-classifier/meta.json +24 -0
  6043. mlsys/tasks/pyt-gil-held-vs-gil-released-op-classifier/solution_ref.py +68 -0
  6044. mlsys/tasks/pyt-gil-held-vs-gil-released-op-classifier/starter.py +2 -0
  6045. mlsys/tasks/pyt-gil-held-vs-gil-released-op-classifier/task.md +54 -0
  6046. mlsys/tasks/pyt-hand-assemble-bytecode-for-a-small-function/check.py +27 -0
  6047. mlsys/tasks/pyt-hand-assemble-bytecode-for-a-small-function/gen_fixtures.py +1 -0
  6048. mlsys/tasks/pyt-hand-assemble-bytecode-for-a-small-function/meta.json +22 -0
  6049. mlsys/tasks/pyt-hand-assemble-bytecode-for-a-small-function/solution_ref.py +8 -0
  6050. mlsys/tasks/pyt-hand-assemble-bytecode-for-a-small-function/starter.py +2 -0
  6051. mlsys/tasks/pyt-hand-assemble-bytecode-for-a-small-function/task.md +51 -0
  6052. mlsys/tasks/pyt-hand-compute-a-diamond-merge/check.py +54 -0
  6053. mlsys/tasks/pyt-hand-compute-a-diamond-merge/gen_fixtures.py +1 -0
  6054. mlsys/tasks/pyt-hand-compute-a-diamond-merge/meta.json +22 -0
  6055. mlsys/tasks/pyt-hand-compute-a-diamond-merge/solution_ref.py +31 -0
  6056. mlsys/tasks/pyt-hand-compute-a-diamond-merge/starter.py +2 -0
  6057. mlsys/tasks/pyt-hand-compute-a-diamond-merge/task.md +72 -0
  6058. mlsys/tasks/pyt-hand-implement-slot-descriptors/check.py +64 -0
  6059. mlsys/tasks/pyt-hand-implement-slot-descriptors/gen_fixtures.py +1 -0
  6060. mlsys/tasks/pyt-hand-implement-slot-descriptors/meta.json +22 -0
  6061. mlsys/tasks/pyt-hand-implement-slot-descriptors/solution_ref.py +55 -0
  6062. mlsys/tasks/pyt-hand-implement-slot-descriptors/starter.py +2 -0
  6063. mlsys/tasks/pyt-hand-implement-slot-descriptors/task.md +60 -0
  6064. mlsys/tasks/pyt-header-byte-map-of-builtin-objects/check.py +56 -0
  6065. mlsys/tasks/pyt-header-byte-map-of-builtin-objects/gen_fixtures.py +1 -0
  6066. mlsys/tasks/pyt-header-byte-map-of-builtin-objects/meta.json +22 -0
  6067. mlsys/tasks/pyt-header-byte-map-of-builtin-objects/solution_ref.py +13 -0
  6068. mlsys/tasks/pyt-header-byte-map-of-builtin-objects/starter.py +2 -0
  6069. mlsys/tasks/pyt-header-byte-map-of-builtin-objects/task.md +70 -0
  6070. mlsys/tasks/pyt-heap-type-vs-static-type-classifier/check.py +59 -0
  6071. mlsys/tasks/pyt-heap-type-vs-static-type-classifier/gen_fixtures.py +1 -0
  6072. mlsys/tasks/pyt-heap-type-vs-static-type-classifier/meta.json +22 -0
  6073. mlsys/tasks/pyt-heap-type-vs-static-type-classifier/solution_ref.py +3 -0
  6074. mlsys/tasks/pyt-heap-type-vs-static-type-classifier/starter.py +2 -0
  6075. mlsys/tasks/pyt-heap-type-vs-static-type-classifier/task.md +70 -0
  6076. mlsys/tasks/pyt-hit-a-bytes-per-instance-target-for-1e5-nodes/check.py +37 -0
  6077. mlsys/tasks/pyt-hit-a-bytes-per-instance-target-for-1e5-nodes/gen_fixtures.py +1 -0
  6078. mlsys/tasks/pyt-hit-a-bytes-per-instance-target-for-1e5-nodes/meta.json +23 -0
  6079. mlsys/tasks/pyt-hit-a-bytes-per-instance-target-for-1e5-nodes/solution_ref.py +32 -0
  6080. mlsys/tasks/pyt-hit-a-bytes-per-instance-target-for-1e5-nodes/starter.py +31 -0
  6081. mlsys/tasks/pyt-hit-a-bytes-per-instance-target-for-1e5-nodes/task.md +90 -0
  6082. mlsys/tasks/pyt-hit-a-reallocation-count-budget/check.py +24 -0
  6083. mlsys/tasks/pyt-hit-a-reallocation-count-budget/gen_fixtures.py +1 -0
  6084. mlsys/tasks/pyt-hit-a-reallocation-count-budget/meta.json +24 -0
  6085. mlsys/tasks/pyt-hit-a-reallocation-count-budget/solution_ref.py +10 -0
  6086. mlsys/tasks/pyt-hit-a-reallocation-count-budget/starter.py +4 -0
  6087. mlsys/tasks/pyt-hit-a-reallocation-count-budget/task.md +55 -0
  6088. mlsys/tasks/pyt-id-based-identity-partition/check.py +39 -0
  6089. mlsys/tasks/pyt-id-based-identity-partition/gen_fixtures.py +1 -0
  6090. mlsys/tasks/pyt-id-based-identity-partition/meta.json +22 -0
  6091. mlsys/tasks/pyt-id-based-identity-partition/solution_ref.py +12 -0
  6092. mlsys/tasks/pyt-id-based-identity-partition/starter.py +2 -0
  6093. mlsys/tasks/pyt-id-based-identity-partition/task.md +57 -0
  6094. mlsys/tasks/pyt-immortal-object-refcount-sentinel-detector/check.py +29 -0
  6095. mlsys/tasks/pyt-immortal-object-refcount-sentinel-detector/gen_fixtures.py +1 -0
  6096. mlsys/tasks/pyt-immortal-object-refcount-sentinel-detector/meta.json +24 -0
  6097. mlsys/tasks/pyt-immortal-object-refcount-sentinel-detector/solution_ref.py +20 -0
  6098. mlsys/tasks/pyt-immortal-object-refcount-sentinel-detector/starter.py +2 -0
  6099. mlsys/tasks/pyt-immortal-object-refcount-sentinel-detector/task.md +68 -0
  6100. mlsys/tasks/pyt-implement-a-metapathfinder/check.py +76 -0
  6101. mlsys/tasks/pyt-implement-a-metapathfinder/gen_fixtures.py +1 -0
  6102. mlsys/tasks/pyt-implement-a-metapathfinder/meta.json +22 -0
  6103. mlsys/tasks/pyt-implement-a-metapathfinder/solution_ref.py +31 -0
  6104. mlsys/tasks/pyt-implement-a-metapathfinder/starter.py +2 -0
  6105. mlsys/tasks/pyt-implement-a-metapathfinder/task.md +56 -0
  6106. mlsys/tasks/pyt-implement-a-trivial-event-loop/check.py +97 -0
  6107. mlsys/tasks/pyt-implement-a-trivial-event-loop/gen_fixtures.py +1 -0
  6108. mlsys/tasks/pyt-implement-a-trivial-event-loop/meta.json +25 -0
  6109. mlsys/tasks/pyt-implement-a-trivial-event-loop/solution_ref.py +45 -0
  6110. mlsys/tasks/pyt-implement-a-trivial-event-loop/starter.py +21 -0
  6111. mlsys/tasks/pyt-implement-a-trivial-event-loop/task.md +72 -0
  6112. mlsys/tasks/pyt-implement-a-utf-8-encoder-from-scratch/check.py +53 -0
  6113. mlsys/tasks/pyt-implement-a-utf-8-encoder-from-scratch/gen_fixtures.py +1 -0
  6114. mlsys/tasks/pyt-implement-a-utf-8-encoder-from-scratch/meta.json +22 -0
  6115. mlsys/tasks/pyt-implement-a-utf-8-encoder-from-scratch/solution_ref.py +19 -0
  6116. mlsys/tasks/pyt-implement-a-utf-8-encoder-from-scratch/starter.py +2 -0
  6117. mlsys/tasks/pyt-implement-a-utf-8-encoder-from-scratch/task.md +53 -0
  6118. mlsys/tasks/pyt-implement-an-iterator-class/check.py +32 -0
  6119. mlsys/tasks/pyt-implement-an-iterator-class/gen_fixtures.py +1 -0
  6120. mlsys/tasks/pyt-implement-an-iterator-class/meta.json +22 -0
  6121. mlsys/tasks/pyt-implement-an-iterator-class/solution_ref.py +13 -0
  6122. mlsys/tasks/pyt-implement-an-iterator-class/starter.py +11 -0
  6123. mlsys/tasks/pyt-implement-an-iterator-class/task.md +52 -0
  6124. mlsys/tasks/pyt-implement-bignum-add-from-limbs/check.py +69 -0
  6125. mlsys/tasks/pyt-implement-bignum-add-from-limbs/gen_fixtures.py +1 -0
  6126. mlsys/tasks/pyt-implement-bignum-add-from-limbs/meta.json +22 -0
  6127. mlsys/tasks/pyt-implement-bignum-add-from-limbs/solution_ref.py +21 -0
  6128. mlsys/tasks/pyt-implement-bignum-add-from-limbs/starter.py +2 -0
  6129. mlsys/tasks/pyt-implement-bignum-add-from-limbs/task.md +80 -0
  6130. mlsys/tasks/pyt-implement-c3-linearization-from-scratch/check.py +60 -0
  6131. mlsys/tasks/pyt-implement-c3-linearization-from-scratch/gen_fixtures.py +1 -0
  6132. mlsys/tasks/pyt-implement-c3-linearization-from-scratch/meta.json +22 -0
  6133. mlsys/tasks/pyt-implement-c3-linearization-from-scratch/solution_ref.py +40 -0
  6134. mlsys/tasks/pyt-implement-c3-linearization-from-scratch/starter.py +4 -0
  6135. mlsys/tasks/pyt-implement-c3-linearization-from-scratch/task.md +51 -0
  6136. mlsys/tasks/pyt-implement-property-from-scratch/check.py +87 -0
  6137. mlsys/tasks/pyt-implement-property-from-scratch/gen_fixtures.py +1 -0
  6138. mlsys/tasks/pyt-implement-property-from-scratch/meta.json +22 -0
  6139. mlsys/tasks/pyt-implement-property-from-scratch/solution_ref.py +26 -0
  6140. mlsys/tasks/pyt-implement-property-from-scratch/starter.py +2 -0
  6141. mlsys/tasks/pyt-implement-property-from-scratch/task.md +66 -0
  6142. mlsys/tasks/pyt-implement-the-dict-probe-sequence/check.py +40 -0
  6143. mlsys/tasks/pyt-implement-the-dict-probe-sequence/gen_fixtures.py +1 -0
  6144. mlsys/tasks/pyt-implement-the-dict-probe-sequence/meta.json +22 -0
  6145. mlsys/tasks/pyt-implement-the-dict-probe-sequence/solution_ref.py +12 -0
  6146. mlsys/tasks/pyt-implement-the-dict-probe-sequence/starter.py +2 -0
  6147. mlsys/tasks/pyt-implement-the-dict-probe-sequence/task.md +66 -0
  6148. mlsys/tasks/pyt-implement-the-set-probe-sequence/check.py +36 -0
  6149. mlsys/tasks/pyt-implement-the-set-probe-sequence/gen_fixtures.py +1 -0
  6150. mlsys/tasks/pyt-implement-the-set-probe-sequence/meta.json +22 -0
  6151. mlsys/tasks/pyt-implement-the-set-probe-sequence/solution_ref.py +15 -0
  6152. mlsys/tasks/pyt-implement-the-set-probe-sequence/starter.py +2 -0
  6153. mlsys/tasks/pyt-implement-the-set-probe-sequence/task.md +45 -0
  6154. mlsys/tasks/pyt-initial-slot-distribution-histogram/check.py +28 -0
  6155. mlsys/tasks/pyt-initial-slot-distribution-histogram/gen_fixtures.py +1 -0
  6156. mlsys/tasks/pyt-initial-slot-distribution-histogram/meta.json +22 -0
  6157. mlsys/tasks/pyt-initial-slot-distribution-histogram/solution_ref.py +6 -0
  6158. mlsys/tasks/pyt-initial-slot-distribution-histogram/starter.py +2 -0
  6159. mlsys/tasks/pyt-initial-slot-distribution-histogram/task.md +50 -0
  6160. mlsys/tasks/pyt-insert-0-vs-append-shift-count/check.py +29 -0
  6161. mlsys/tasks/pyt-insert-0-vs-append-shift-count/gen_fixtures.py +1 -0
  6162. mlsys/tasks/pyt-insert-0-vs-append-shift-count/meta.json +22 -0
  6163. mlsys/tasks/pyt-insert-0-vs-append-shift-count/solution_ref.py +14 -0
  6164. mlsys/tasks/pyt-insert-0-vs-append-shift-count/starter.py +2 -0
  6165. mlsys/tasks/pyt-insert-0-vs-append-shift-count/task.md +50 -0
  6166. mlsys/tasks/pyt-int-byte-size-growth/check.py +23 -0
  6167. mlsys/tasks/pyt-int-byte-size-growth/gen_fixtures.py +1 -0
  6168. mlsys/tasks/pyt-int-byte-size-growth/meta.json +24 -0
  6169. mlsys/tasks/pyt-int-byte-size-growth/solution_ref.py +14 -0
  6170. mlsys/tasks/pyt-int-byte-size-growth/starter.py +2 -0
  6171. mlsys/tasks/pyt-int-byte-size-growth/task.md +58 -0
  6172. mlsys/tasks/pyt-int-bytes-round-trip/check.py +47 -0
  6173. mlsys/tasks/pyt-int-bytes-round-trip/gen_fixtures.py +1 -0
  6174. mlsys/tasks/pyt-int-bytes-round-trip/meta.json +22 -0
  6175. mlsys/tasks/pyt-int-bytes-round-trip/solution_ref.py +9 -0
  6176. mlsys/tasks/pyt-int-bytes-round-trip/starter.py +2 -0
  6177. mlsys/tasks/pyt-int-bytes-round-trip/task.md +42 -0
  6178. mlsys/tasks/pyt-internal-fragmentation-ratio-for-a-pattern/check.py +39 -0
  6179. mlsys/tasks/pyt-internal-fragmentation-ratio-for-a-pattern/gen_fixtures.py +1 -0
  6180. mlsys/tasks/pyt-internal-fragmentation-ratio-for-a-pattern/meta.json +22 -0
  6181. mlsys/tasks/pyt-internal-fragmentation-ratio-for-a-pattern/solution_ref.py +16 -0
  6182. mlsys/tasks/pyt-internal-fragmentation-ratio-for-a-pattern/starter.py +2 -0
  6183. mlsys/tasks/pyt-internal-fragmentation-ratio-for-a-pattern/task.md +59 -0
  6184. mlsys/tasks/pyt-isinstance-from-an-mro-without-isinstance/check.py +64 -0
  6185. mlsys/tasks/pyt-isinstance-from-an-mro-without-isinstance/gen_fixtures.py +1 -0
  6186. mlsys/tasks/pyt-isinstance-from-an-mro-without-isinstance/meta.json +22 -0
  6187. mlsys/tasks/pyt-isinstance-from-an-mro-without-isinstance/solution_ref.py +17 -0
  6188. mlsys/tasks/pyt-isinstance-from-an-mro-without-isinstance/starter.py +4 -0
  6189. mlsys/tasks/pyt-isinstance-from-an-mro-without-isinstance/task.md +59 -0
  6190. mlsys/tasks/pyt-iterator-vs-iterable-classifier/check.py +31 -0
  6191. mlsys/tasks/pyt-iterator-vs-iterable-classifier/gen_fixtures.py +1 -0
  6192. mlsys/tasks/pyt-iterator-vs-iterable-classifier/meta.json +22 -0
  6193. mlsys/tasks/pyt-iterator-vs-iterable-classifier/solution_ref.py +8 -0
  6194. mlsys/tasks/pyt-iterator-vs-iterable-classifier/starter.py +2 -0
  6195. mlsys/tasks/pyt-iterator-vs-iterable-classifier/task.md +55 -0
  6196. mlsys/tasks/pyt-lazy-pipeline-processes-only-k-of-n/check.py +75 -0
  6197. mlsys/tasks/pyt-lazy-pipeline-processes-only-k-of-n/gen_fixtures.py +1 -0
  6198. mlsys/tasks/pyt-lazy-pipeline-processes-only-k-of-n/meta.json +27 -0
  6199. mlsys/tasks/pyt-lazy-pipeline-processes-only-k-of-n/solution_ref.py +4 -0
  6200. mlsys/tasks/pyt-lazy-pipeline-processes-only-k-of-n/starter.py +2 -0
  6201. mlsys/tasks/pyt-lazy-pipeline-processes-only-k-of-n/task.md +54 -0
  6202. mlsys/tasks/pyt-leak-free-cache-with-weakvaluedictionary/check.py +45 -0
  6203. mlsys/tasks/pyt-leak-free-cache-with-weakvaluedictionary/gen_fixtures.py +1 -0
  6204. mlsys/tasks/pyt-leak-free-cache-with-weakvaluedictionary/meta.json +22 -0
  6205. mlsys/tasks/pyt-leak-free-cache-with-weakvaluedictionary/solution_ref.py +22 -0
  6206. mlsys/tasks/pyt-leak-free-cache-with-weakvaluedictionary/starter.py +4 -0
  6207. mlsys/tasks/pyt-leak-free-cache-with-weakvaluedictionary/task.md +48 -0
  6208. mlsys/tasks/pyt-list-vs-array-vs-numpy-footprint/check.py +41 -0
  6209. mlsys/tasks/pyt-list-vs-array-vs-numpy-footprint/gen_fixtures.py +1 -0
  6210. mlsys/tasks/pyt-list-vs-array-vs-numpy-footprint/meta.json +22 -0
  6211. mlsys/tasks/pyt-list-vs-array-vs-numpy-footprint/solution_ref.py +21 -0
  6212. mlsys/tasks/pyt-list-vs-array-vs-numpy-footprint/starter.py +2 -0
  6213. mlsys/tasks/pyt-list-vs-array-vs-numpy-footprint/task.md +55 -0
  6214. mlsys/tasks/pyt-membership-op-count-set-vs-list/check.py +63 -0
  6215. mlsys/tasks/pyt-membership-op-count-set-vs-list/gen_fixtures.py +1 -0
  6216. mlsys/tasks/pyt-membership-op-count-set-vs-list/meta.json +27 -0
  6217. mlsys/tasks/pyt-membership-op-count-set-vs-list/solution_ref.py +29 -0
  6218. mlsys/tasks/pyt-membership-op-count-set-vs-list/starter.py +2 -0
  6219. mlsys/tasks/pyt-membership-op-count-set-vs-list/task.md +70 -0
  6220. mlsys/tasks/pyt-metaclass-vs-init-subclass-registry-equivalence/check.py +59 -0
  6221. mlsys/tasks/pyt-metaclass-vs-init-subclass-registry-equivalence/gen_fixtures.py +1 -0
  6222. mlsys/tasks/pyt-metaclass-vs-init-subclass-registry-equivalence/meta.json +22 -0
  6223. mlsys/tasks/pyt-metaclass-vs-init-subclass-registry-equivalence/solution_ref.py +47 -0
  6224. mlsys/tasks/pyt-metaclass-vs-init-subclass-registry-equivalence/starter.py +2 -0
  6225. mlsys/tasks/pyt-metaclass-vs-init-subclass-registry-equivalence/task.md +61 -0
  6226. mlsys/tasks/pyt-mini-stack-vm-for-arithmetic-expressions/check.py +95 -0
  6227. mlsys/tasks/pyt-mini-stack-vm-for-arithmetic-expressions/gen_fixtures.py +1 -0
  6228. mlsys/tasks/pyt-mini-stack-vm-for-arithmetic-expressions/meta.json +22 -0
  6229. mlsys/tasks/pyt-mini-stack-vm-for-arithmetic-expressions/solution_ref.py +31 -0
  6230. mlsys/tasks/pyt-mini-stack-vm-for-arithmetic-expressions/starter.py +2 -0
  6231. mlsys/tasks/pyt-mini-stack-vm-for-arithmetic-expressions/task.md +76 -0
  6232. mlsys/tasks/pyt-model-a-refcount-lifetime-timeline/check.py +75 -0
  6233. mlsys/tasks/pyt-model-a-refcount-lifetime-timeline/gen_fixtures.py +1 -0
  6234. mlsys/tasks/pyt-model-a-refcount-lifetime-timeline/meta.json +22 -0
  6235. mlsys/tasks/pyt-model-a-refcount-lifetime-timeline/solution_ref.py +20 -0
  6236. mlsys/tasks/pyt-model-a-refcount-lifetime-timeline/starter.py +2 -0
  6237. mlsys/tasks/pyt-model-a-refcount-lifetime-timeline/task.md +64 -0
  6238. mlsys/tasks/pyt-model-arena-mmap-events-for-a-churn-pattern/check.py +80 -0
  6239. mlsys/tasks/pyt-model-arena-mmap-events-for-a-churn-pattern/gen_fixtures.py +1 -0
  6240. mlsys/tasks/pyt-model-arena-mmap-events-for-a-churn-pattern/meta.json +22 -0
  6241. mlsys/tasks/pyt-model-arena-mmap-events-for-a-churn-pattern/solution_ref.py +59 -0
  6242. mlsys/tasks/pyt-model-arena-mmap-events-for-a-churn-pattern/starter.py +4 -0
  6243. mlsys/tasks/pyt-model-arena-mmap-events-for-a-churn-pattern/task.md +66 -0
  6244. mlsys/tasks/pyt-model-arena-occupancy-over-an-alloc-free-trace/check.py +86 -0
  6245. mlsys/tasks/pyt-model-arena-occupancy-over-an-alloc-free-trace/gen_fixtures.py +1 -0
  6246. mlsys/tasks/pyt-model-arena-occupancy-over-an-alloc-free-trace/meta.json +22 -0
  6247. mlsys/tasks/pyt-model-arena-occupancy-over-an-alloc-free-trace/solution_ref.py +37 -0
  6248. mlsys/tasks/pyt-model-arena-occupancy-over-an-alloc-free-trace/starter.py +2 -0
  6249. mlsys/tasks/pyt-model-arena-occupancy-over-an-alloc-free-trace/task.md +55 -0
  6250. mlsys/tasks/pyt-model-split-key-sharing-dict-savings/check.py +65 -0
  6251. mlsys/tasks/pyt-model-split-key-sharing-dict-savings/gen_fixtures.py +1 -0
  6252. mlsys/tasks/pyt-model-split-key-sharing-dict-savings/meta.json +22 -0
  6253. mlsys/tasks/pyt-model-split-key-sharing-dict-savings/solution_ref.py +42 -0
  6254. mlsys/tasks/pyt-model-split-key-sharing-dict-savings/starter.py +4 -0
  6255. mlsys/tasks/pyt-model-split-key-sharing-dict-savings/task.md +57 -0
  6256. mlsys/tasks/pyt-model-the-gen-0-reclaim-set/check.py +77 -0
  6257. mlsys/tasks/pyt-model-the-gen-0-reclaim-set/gen_fixtures.py +1 -0
  6258. mlsys/tasks/pyt-model-the-gen-0-reclaim-set/meta.json +24 -0
  6259. mlsys/tasks/pyt-model-the-gen-0-reclaim-set/solution_ref.py +38 -0
  6260. mlsys/tasks/pyt-model-the-gen-0-reclaim-set/starter.py +2 -0
  6261. mlsys/tasks/pyt-model-the-gen-0-reclaim-set/task.md +61 -0
  6262. mlsys/tasks/pyt-modeled-gil-acquire-release-count/check.py +43 -0
  6263. mlsys/tasks/pyt-modeled-gil-acquire-release-count/gen_fixtures.py +1 -0
  6264. mlsys/tasks/pyt-modeled-gil-acquire-release-count/meta.json +22 -0
  6265. mlsys/tasks/pyt-modeled-gil-acquire-release-count/solution_ref.py +6 -0
  6266. mlsys/tasks/pyt-modeled-gil-acquire-release-count/starter.py +2 -0
  6267. mlsys/tasks/pyt-modeled-gil-acquire-release-count/task.md +47 -0
  6268. mlsys/tasks/pyt-modeled-thread-switch-schedule/check.py +53 -0
  6269. mlsys/tasks/pyt-modeled-thread-switch-schedule/gen_fixtures.py +1 -0
  6270. mlsys/tasks/pyt-modeled-thread-switch-schedule/meta.json +22 -0
  6271. mlsys/tasks/pyt-modeled-thread-switch-schedule/solution_ref.py +25 -0
  6272. mlsys/tasks/pyt-modeled-thread-switch-schedule/starter.py +2 -0
  6273. mlsys/tasks/pyt-modeled-thread-switch-schedule/task.md +75 -0
  6274. mlsys/tasks/pyt-module-dict-is-the-global-namespace/check.py +21 -0
  6275. mlsys/tasks/pyt-module-dict-is-the-global-namespace/gen_fixtures.py +1 -0
  6276. mlsys/tasks/pyt-module-dict-is-the-global-namespace/meta.json +22 -0
  6277. mlsys/tasks/pyt-module-dict-is-the-global-namespace/solution_ref.py +7 -0
  6278. mlsys/tasks/pyt-module-dict-is-the-global-namespace/starter.py +2 -0
  6279. mlsys/tasks/pyt-module-dict-is-the-global-namespace/task.md +59 -0
  6280. mlsys/tasks/pyt-mro-exists-predictor/check.py +48 -0
  6281. mlsys/tasks/pyt-mro-exists-predictor/gen_fixtures.py +1 -0
  6282. mlsys/tasks/pyt-mro-exists-predictor/meta.json +22 -0
  6283. mlsys/tasks/pyt-mro-exists-predictor/solution_ref.py +53 -0
  6284. mlsys/tasks/pyt-mro-exists-predictor/starter.py +2 -0
  6285. mlsys/tasks/pyt-mro-exists-predictor/task.md +59 -0
  6286. mlsys/tasks/pyt-objects-collected-per-generation/check.py +53 -0
  6287. mlsys/tasks/pyt-objects-collected-per-generation/gen_fixtures.py +1 -0
  6288. mlsys/tasks/pyt-objects-collected-per-generation/meta.json +22 -0
  6289. mlsys/tasks/pyt-objects-collected-per-generation/solution_ref.py +43 -0
  6290. mlsys/tasks/pyt-objects-collected-per-generation/starter.py +4 -0
  6291. mlsys/tasks/pyt-objects-collected-per-generation/task.md +53 -0
  6292. mlsys/tasks/pyt-opcode-sequence-for-a-nontrivial-function/check.py +24 -0
  6293. mlsys/tasks/pyt-opcode-sequence-for-a-nontrivial-function/gen_fixtures.py +1 -0
  6294. mlsys/tasks/pyt-opcode-sequence-for-a-nontrivial-function/meta.json +22 -0
  6295. mlsys/tasks/pyt-opcode-sequence-for-a-nontrivial-function/solution_ref.py +5 -0
  6296. mlsys/tasks/pyt-opcode-sequence-for-a-nontrivial-function/starter.py +2 -0
  6297. mlsys/tasks/pyt-opcode-sequence-for-a-nontrivial-function/task.md +60 -0
  6298. mlsys/tasks/pyt-pep-393-storage-kind-classifier/check.py +40 -0
  6299. mlsys/tasks/pyt-pep-393-storage-kind-classifier/gen_fixtures.py +1 -0
  6300. mlsys/tasks/pyt-pep-393-storage-kind-classifier/meta.json +22 -0
  6301. mlsys/tasks/pyt-pep-393-storage-kind-classifier/solution_ref.py +23 -0
  6302. mlsys/tasks/pyt-pep-393-storage-kind-classifier/starter.py +2 -0
  6303. mlsys/tasks/pyt-pep-393-storage-kind-classifier/task.md +45 -0
  6304. mlsys/tasks/pyt-per-object-overhead-ranking/check.py +28 -0
  6305. mlsys/tasks/pyt-per-object-overhead-ranking/gen_fixtures.py +1 -0
  6306. mlsys/tasks/pyt-per-object-overhead-ranking/meta.json +22 -0
  6307. mlsys/tasks/pyt-per-object-overhead-ranking/solution_ref.py +16 -0
  6308. mlsys/tasks/pyt-per-object-overhead-ranking/starter.py +2 -0
  6309. mlsys/tasks/pyt-per-object-overhead-ranking/task.md +61 -0
  6310. mlsys/tasks/pyt-predict-dict-and-weakref-support/check.py +112 -0
  6311. mlsys/tasks/pyt-predict-dict-and-weakref-support/gen_fixtures.py +1 -0
  6312. mlsys/tasks/pyt-predict-dict-and-weakref-support/meta.json +22 -0
  6313. mlsys/tasks/pyt-predict-dict-and-weakref-support/solution_ref.py +104 -0
  6314. mlsys/tasks/pyt-predict-dict-and-weakref-support/starter.py +2 -0
  6315. mlsys/tasks/pyt-predict-dict-and-weakref-support/task.md +60 -0
  6316. mlsys/tasks/pyt-predict-getrefcount-deltas/check.py +34 -0
  6317. mlsys/tasks/pyt-predict-getrefcount-deltas/gen_fixtures.py +1 -0
  6318. mlsys/tasks/pyt-predict-getrefcount-deltas/meta.json +22 -0
  6319. mlsys/tasks/pyt-predict-getrefcount-deltas/solution_ref.py +24 -0
  6320. mlsys/tasks/pyt-predict-getrefcount-deltas/starter.py +2 -0
  6321. mlsys/tasks/pyt-predict-getrefcount-deltas/task.md +53 -0
  6322. mlsys/tasks/pyt-predict-instance-vs-class-attribute-winner/check.py +59 -0
  6323. mlsys/tasks/pyt-predict-instance-vs-class-attribute-winner/gen_fixtures.py +1 -0
  6324. mlsys/tasks/pyt-predict-instance-vs-class-attribute-winner/meta.json +22 -0
  6325. mlsys/tasks/pyt-predict-instance-vs-class-attribute-winner/solution_ref.py +8 -0
  6326. mlsys/tasks/pyt-predict-instance-vs-class-attribute-winner/starter.py +2 -0
  6327. mlsys/tasks/pyt-predict-instance-vs-class-attribute-winner/task.md +69 -0
  6328. mlsys/tasks/pyt-predict-list-over-allocation-capacities/check.py +35 -0
  6329. mlsys/tasks/pyt-predict-list-over-allocation-capacities/gen_fixtures.py +1 -0
  6330. mlsys/tasks/pyt-predict-list-over-allocation-capacities/meta.json +22 -0
  6331. mlsys/tasks/pyt-predict-list-over-allocation-capacities/solution_ref.py +10 -0
  6332. mlsys/tasks/pyt-predict-list-over-allocation-capacities/starter.py +2 -0
  6333. mlsys/tasks/pyt-predict-list-over-allocation-capacities/task.md +49 -0
  6334. mlsys/tasks/pyt-predict-the-executed-line-number-sequence/check.py +59 -0
  6335. mlsys/tasks/pyt-predict-the-executed-line-number-sequence/gen_fixtures.py +1 -0
  6336. mlsys/tasks/pyt-predict-the-executed-line-number-sequence/meta.json +24 -0
  6337. mlsys/tasks/pyt-predict-the-executed-line-number-sequence/solution_ref.py +19 -0
  6338. mlsys/tasks/pyt-predict-the-executed-line-number-sequence/starter.py +4 -0
  6339. mlsys/tasks/pyt-predict-the-executed-line-number-sequence/task.md +56 -0
  6340. mlsys/tasks/pyt-predict-the-stack-depth-timeline/check.py +41 -0
  6341. mlsys/tasks/pyt-predict-the-stack-depth-timeline/gen_fixtures.py +1 -0
  6342. mlsys/tasks/pyt-predict-the-stack-depth-timeline/meta.json +22 -0
  6343. mlsys/tasks/pyt-predict-the-stack-depth-timeline/solution_ref.py +10 -0
  6344. mlsys/tasks/pyt-predict-the-stack-depth-timeline/starter.py +4 -0
  6345. mlsys/tasks/pyt-predict-the-stack-depth-timeline/task.md +42 -0
  6346. mlsys/tasks/pyt-predict-which-storage-wins-for-30-accesses/check.py +98 -0
  6347. mlsys/tasks/pyt-predict-which-storage-wins-for-30-accesses/gen_fixtures.py +1 -0
  6348. mlsys/tasks/pyt-predict-which-storage-wins-for-30-accesses/meta.json +22 -0
  6349. mlsys/tasks/pyt-predict-which-storage-wins-for-30-accesses/solution_ref.py +18 -0
  6350. mlsys/tasks/pyt-predict-which-storage-wins-for-30-accesses/starter.py +2 -0
  6351. mlsys/tasks/pyt-predict-which-storage-wins-for-30-accesses/task.md +58 -0
  6352. mlsys/tasks/pyt-prepare-ordered-namespace-capture/check.py +44 -0
  6353. mlsys/tasks/pyt-prepare-ordered-namespace-capture/gen_fixtures.py +1 -0
  6354. mlsys/tasks/pyt-prepare-ordered-namespace-capture/meta.json +22 -0
  6355. mlsys/tasks/pyt-prepare-ordered-namespace-capture/solution_ref.py +23 -0
  6356. mlsys/tasks/pyt-prepare-ordered-namespace-capture/starter.py +2 -0
  6357. mlsys/tasks/pyt-prepare-ordered-namespace-capture/task.md +44 -0
  6358. mlsys/tasks/pyt-prove-memory-sharing-no-copy/check.py +32 -0
  6359. mlsys/tasks/pyt-prove-memory-sharing-no-copy/gen_fixtures.py +1 -0
  6360. mlsys/tasks/pyt-prove-memory-sharing-no-copy/meta.json +22 -0
  6361. mlsys/tasks/pyt-prove-memory-sharing-no-copy/solution_ref.py +9 -0
  6362. mlsys/tasks/pyt-prove-memory-sharing-no-copy/starter.py +2 -0
  6363. mlsys/tasks/pyt-prove-memory-sharing-no-copy/task.md +61 -0
  6364. mlsys/tasks/pyt-prove-non-linearizability-and-emit-the-conflicting-pair/check.py +64 -0
  6365. mlsys/tasks/pyt-prove-non-linearizability-and-emit-the-conflicting-pair/gen_fixtures.py +1 -0
  6366. mlsys/tasks/pyt-prove-non-linearizability-and-emit-the-conflicting-pair/meta.json +22 -0
  6367. mlsys/tasks/pyt-prove-non-linearizability-and-emit-the-conflicting-pair/solution_ref.py +16 -0
  6368. mlsys/tasks/pyt-prove-non-linearizability-and-emit-the-conflicting-pair/starter.py +2 -0
  6369. mlsys/tasks/pyt-prove-non-linearizability-and-emit-the-conflicting-pair/task.md +55 -0
  6370. mlsys/tasks/pyt-prove-type-type-is-type-enumerate-the-metatype-chain/check.py +45 -0
  6371. mlsys/tasks/pyt-prove-type-type-is-type-enumerate-the-metatype-chain/gen_fixtures.py +1 -0
  6372. mlsys/tasks/pyt-prove-type-type-is-type-enumerate-the-metatype-chain/meta.json +22 -0
  6373. mlsys/tasks/pyt-prove-type-type-is-type-enumerate-the-metatype-chain/solution_ref.py +9 -0
  6374. mlsys/tasks/pyt-prove-type-type-is-type-enumerate-the-metatype-chain/starter.py +2 -0
  6375. mlsys/tasks/pyt-prove-type-type-is-type-enumerate-the-metatype-chain/task.md +60 -0
  6376. mlsys/tasks/pyt-pymalloc-size-class-mapping/check.py +37 -0
  6377. mlsys/tasks/pyt-pymalloc-size-class-mapping/gen_fixtures.py +1 -0
  6378. mlsys/tasks/pyt-pymalloc-size-class-mapping/meta.json +22 -0
  6379. mlsys/tasks/pyt-pymalloc-size-class-mapping/solution_ref.py +13 -0
  6380. mlsys/tasks/pyt-pymalloc-size-class-mapping/starter.py +3 -0
  6381. mlsys/tasks/pyt-pymalloc-size-class-mapping/task.md +61 -0
  6382. mlsys/tasks/pyt-pymalloc-vs-raw-malloc-threshold-classifier/check.py +45 -0
  6383. mlsys/tasks/pyt-pymalloc-vs-raw-malloc-threshold-classifier/gen_fixtures.py +1 -0
  6384. mlsys/tasks/pyt-pymalloc-vs-raw-malloc-threshold-classifier/meta.json +22 -0
  6385. mlsys/tasks/pyt-pymalloc-vs-raw-malloc-threshold-classifier/solution_ref.py +31 -0
  6386. mlsys/tasks/pyt-pymalloc-vs-raw-malloc-threshold-classifier/starter.py +2 -0
  6387. mlsys/tasks/pyt-pymalloc-vs-raw-malloc-threshold-classifier/task.md +39 -0
  6388. mlsys/tasks/pyt-race-condition-outcome-set/check.py +59 -0
  6389. mlsys/tasks/pyt-race-condition-outcome-set/gen_fixtures.py +1 -0
  6390. mlsys/tasks/pyt-race-condition-outcome-set/meta.json +22 -0
  6391. mlsys/tasks/pyt-race-condition-outcome-set/solution_ref.py +27 -0
  6392. mlsys/tasks/pyt-race-condition-outcome-set/starter.py +2 -0
  6393. mlsys/tasks/pyt-race-condition-outcome-set/task.md +43 -0
  6394. mlsys/tasks/pyt-read-cls-mro/check.py +43 -0
  6395. mlsys/tasks/pyt-read-cls-mro/gen_fixtures.py +1 -0
  6396. mlsys/tasks/pyt-read-cls-mro/meta.json +22 -0
  6397. mlsys/tasks/pyt-read-cls-mro/solution_ref.py +2 -0
  6398. mlsys/tasks/pyt-read-cls-mro/starter.py +2 -0
  6399. mlsys/tasks/pyt-read-cls-mro/task.md +59 -0
  6400. mlsys/tasks/pyt-read-gc-get-count/check.py +32 -0
  6401. mlsys/tasks/pyt-read-gc-get-count/gen_fixtures.py +1 -0
  6402. mlsys/tasks/pyt-read-gc-get-count/meta.json +22 -0
  6403. mlsys/tasks/pyt-read-gc-get-count/solution_ref.py +16 -0
  6404. mlsys/tasks/pyt-read-gc-get-count/starter.py +4 -0
  6405. mlsys/tasks/pyt-read-gc-get-count/task.md +52 -0
  6406. mlsys/tasks/pyt-read-locals-and-cellvars-from-a-frame/check.py +47 -0
  6407. mlsys/tasks/pyt-read-locals-and-cellvars-from-a-frame/gen_fixtures.py +1 -0
  6408. mlsys/tasks/pyt-read-locals-and-cellvars-from-a-frame/meta.json +22 -0
  6409. mlsys/tasks/pyt-read-locals-and-cellvars-from-a-frame/solution_ref.py +39 -0
  6410. mlsys/tasks/pyt-read-locals-and-cellvars-from-a-frame/starter.py +4 -0
  6411. mlsys/tasks/pyt-read-locals-and-cellvars-from-a-frame/task.md +58 -0
  6412. mlsys/tasks/pyt-read-sys-getrefcount-and-correct-the-1/check.py +28 -0
  6413. mlsys/tasks/pyt-read-sys-getrefcount-and-correct-the-1/gen_fixtures.py +1 -0
  6414. mlsys/tasks/pyt-read-sys-getrefcount-and-correct-the-1/meta.json +22 -0
  6415. mlsys/tasks/pyt-read-sys-getrefcount-and-correct-the-1/solution_ref.py +5 -0
  6416. mlsys/tasks/pyt-read-sys-getrefcount-and-correct-the-1/starter.py +4 -0
  6417. mlsys/tasks/pyt-read-sys-getrefcount-and-correct-the-1/task.md +53 -0
  6418. mlsys/tasks/pyt-read-the-size-of-one-object/check.py +28 -0
  6419. mlsys/tasks/pyt-read-the-size-of-one-object/gen_fixtures.py +1 -0
  6420. mlsys/tasks/pyt-read-the-size-of-one-object/meta.json +22 -0
  6421. mlsys/tasks/pyt-read-the-size-of-one-object/solution_ref.py +5 -0
  6422. mlsys/tasks/pyt-read-the-size-of-one-object/starter.py +2 -0
  6423. mlsys/tasks/pyt-read-the-size-of-one-object/task.md +51 -0
  6424. mlsys/tasks/pyt-read-the-type-of-values/check.py +25 -0
  6425. mlsys/tasks/pyt-read-the-type-of-values/gen_fixtures.py +1 -0
  6426. mlsys/tasks/pyt-read-the-type-of-values/meta.json +22 -0
  6427. mlsys/tasks/pyt-read-the-type-of-values/solution_ref.py +2 -0
  6428. mlsys/tasks/pyt-read-the-type-of-values/starter.py +2 -0
  6429. mlsys/tasks/pyt-read-the-type-of-values/task.md +39 -0
  6430. mlsys/tasks/pyt-reconstruct-a-traceback-structurally/check.py +54 -0
  6431. mlsys/tasks/pyt-reconstruct-a-traceback-structurally/gen_fixtures.py +1 -0
  6432. mlsys/tasks/pyt-reconstruct-a-traceback-structurally/meta.json +22 -0
  6433. mlsys/tasks/pyt-reconstruct-a-traceback-structurally/solution_ref.py +13 -0
  6434. mlsys/tasks/pyt-reconstruct-a-traceback-structurally/starter.py +4 -0
  6435. mlsys/tasks/pyt-reconstruct-a-traceback-structurally/task.md +61 -0
  6436. mlsys/tasks/pyt-reconstruct-capacity-from-getsizeof/check.py +27 -0
  6437. mlsys/tasks/pyt-reconstruct-capacity-from-getsizeof/gen_fixtures.py +1 -0
  6438. mlsys/tasks/pyt-reconstruct-capacity-from-getsizeof/meta.json +24 -0
  6439. mlsys/tasks/pyt-reconstruct-capacity-from-getsizeof/solution_ref.py +11 -0
  6440. mlsys/tasks/pyt-reconstruct-capacity-from-getsizeof/starter.py +2 -0
  6441. mlsys/tasks/pyt-reconstruct-capacity-from-getsizeof/task.md +54 -0
  6442. mlsys/tasks/pyt-reconstruct-closure-cells/check.py +46 -0
  6443. mlsys/tasks/pyt-reconstruct-closure-cells/gen_fixtures.py +1 -0
  6444. mlsys/tasks/pyt-reconstruct-closure-cells/meta.json +22 -0
  6445. mlsys/tasks/pyt-reconstruct-closure-cells/solution_ref.py +7 -0
  6446. mlsys/tasks/pyt-reconstruct-closure-cells/starter.py +2 -0
  6447. mlsys/tasks/pyt-reconstruct-closure-cells/task.md +54 -0
  6448. mlsys/tasks/pyt-reconstruct-mro-from-a-super-dispatch-log/check.py +50 -0
  6449. mlsys/tasks/pyt-reconstruct-mro-from-a-super-dispatch-log/gen_fixtures.py +1 -0
  6450. mlsys/tasks/pyt-reconstruct-mro-from-a-super-dispatch-log/meta.json +22 -0
  6451. mlsys/tasks/pyt-reconstruct-mro-from-a-super-dispatch-log/solution_ref.py +9 -0
  6452. mlsys/tasks/pyt-reconstruct-mro-from-a-super-dispatch-log/starter.py +2 -0
  6453. mlsys/tasks/pyt-reconstruct-mro-from-a-super-dispatch-log/task.md +70 -0
  6454. mlsys/tasks/pyt-reconstruct-the-3-12-object-header-exactly/check.py +44 -0
  6455. mlsys/tasks/pyt-reconstruct-the-3-12-object-header-exactly/gen_fixtures.py +1 -0
  6456. mlsys/tasks/pyt-reconstruct-the-3-12-object-header-exactly/meta.json +22 -0
  6457. mlsys/tasks/pyt-reconstruct-the-3-12-object-header-exactly/solution_ref.py +9 -0
  6458. mlsys/tasks/pyt-reconstruct-the-3-12-object-header-exactly/starter.py +6 -0
  6459. mlsys/tasks/pyt-reconstruct-the-3-12-object-header-exactly/task.md +53 -0
  6460. mlsys/tasks/pyt-reconstruct-the-new-init-call-sequence/check.py +38 -0
  6461. mlsys/tasks/pyt-reconstruct-the-new-init-call-sequence/gen_fixtures.py +1 -0
  6462. mlsys/tasks/pyt-reconstruct-the-new-init-call-sequence/meta.json +22 -0
  6463. mlsys/tasks/pyt-reconstruct-the-new-init-call-sequence/solution_ref.py +23 -0
  6464. mlsys/tasks/pyt-reconstruct-the-new-init-call-sequence/starter.py +2 -0
  6465. mlsys/tasks/pyt-reconstruct-the-new-init-call-sequence/task.md +60 -0
  6466. mlsys/tasks/pyt-reduce-instruction-count-while-preserving-output/check.py +59 -0
  6467. mlsys/tasks/pyt-reduce-instruction-count-while-preserving-output/gen_fixtures.py +1 -0
  6468. mlsys/tasks/pyt-reduce-instruction-count-while-preserving-output/meta.json +27 -0
  6469. mlsys/tasks/pyt-reduce-instruction-count-while-preserving-output/solution_ref.py +2 -0
  6470. mlsys/tasks/pyt-reduce-instruction-count-while-preserving-output/starter.py +7 -0
  6471. mlsys/tasks/pyt-reduce-instruction-count-while-preserving-output/task.md +74 -0
  6472. mlsys/tasks/pyt-reimplement-getattribute-resolution-order/check.py +160 -0
  6473. mlsys/tasks/pyt-reimplement-getattribute-resolution-order/gen_fixtures.py +0 -0
  6474. mlsys/tasks/pyt-reimplement-getattribute-resolution-order/meta.json +27 -0
  6475. mlsys/tasks/pyt-reimplement-getattribute-resolution-order/solution_ref.py +61 -0
  6476. mlsys/tasks/pyt-reimplement-getattribute-resolution-order/starter.py +42 -0
  6477. mlsys/tasks/pyt-reimplement-getattribute-resolution-order/task.md +85 -0
  6478. mlsys/tasks/pyt-reimplement-importlib-reload-semantics/check.py +68 -0
  6479. mlsys/tasks/pyt-reimplement-importlib-reload-semantics/gen_fixtures.py +1 -0
  6480. mlsys/tasks/pyt-reimplement-importlib-reload-semantics/meta.json +22 -0
  6481. mlsys/tasks/pyt-reimplement-importlib-reload-semantics/solution_ref.py +4 -0
  6482. mlsys/tasks/pyt-reimplement-importlib-reload-semantics/starter.py +4 -0
  6483. mlsys/tasks/pyt-reimplement-importlib-reload-semantics/task.md +55 -0
  6484. mlsys/tasks/pyt-reimplement-islice-chain-from-scratch/check.py +108 -0
  6485. mlsys/tasks/pyt-reimplement-islice-chain-from-scratch/gen_fixtures.py +2 -0
  6486. mlsys/tasks/pyt-reimplement-islice-chain-from-scratch/meta.json +38 -0
  6487. mlsys/tasks/pyt-reimplement-islice-chain-from-scratch/solution_ref.py +28 -0
  6488. mlsys/tasks/pyt-reimplement-islice-chain-from-scratch/starter.py +15 -0
  6489. mlsys/tasks/pyt-reimplement-islice-chain-from-scratch/task.md +79 -0
  6490. mlsys/tasks/pyt-reinterpret-cast-with-cast/check.py +38 -0
  6491. mlsys/tasks/pyt-reinterpret-cast-with-cast/gen_fixtures.py +1 -0
  6492. mlsys/tasks/pyt-reinterpret-cast-with-cast/meta.json +22 -0
  6493. mlsys/tasks/pyt-reinterpret-cast-with-cast/solution_ref.py +6 -0
  6494. mlsys/tasks/pyt-reinterpret-cast-with-cast/starter.py +2 -0
  6495. mlsys/tasks/pyt-reinterpret-cast-with-cast/task.md +53 -0
  6496. mlsys/tasks/pyt-reorder-bases-so-cooperative-super-fires-fully/check.py +75 -0
  6497. mlsys/tasks/pyt-reorder-bases-so-cooperative-super-fires-fully/gen_fixtures.py +1 -0
  6498. mlsys/tasks/pyt-reorder-bases-so-cooperative-super-fires-fully/meta.json +22 -0
  6499. mlsys/tasks/pyt-reorder-bases-so-cooperative-super-fires-fully/solution_ref.py +18 -0
  6500. mlsys/tasks/pyt-reorder-bases-so-cooperative-super-fires-fully/starter.py +5 -0
  6501. mlsys/tasks/pyt-reorder-bases-so-cooperative-super-fires-fully/task.md +76 -0
  6502. mlsys/tasks/pyt-resolve-a-metaclass-conflict/check.py +30 -0
  6503. mlsys/tasks/pyt-resolve-a-metaclass-conflict/gen_fixtures.py +1 -0
  6504. mlsys/tasks/pyt-resolve-a-metaclass-conflict/meta.json +22 -0
  6505. mlsys/tasks/pyt-resolve-a-metaclass-conflict/solution_ref.py +22 -0
  6506. mlsys/tasks/pyt-resolve-a-metaclass-conflict/starter.py +21 -0
  6507. mlsys/tasks/pyt-resolve-a-metaclass-conflict/task.md +54 -0
  6508. mlsys/tasks/pyt-rewrite-a-generator-as-an-explicit-state-machine/check.py +60 -0
  6509. mlsys/tasks/pyt-rewrite-a-generator-as-an-explicit-state-machine/gen_fixtures.py +1 -0
  6510. mlsys/tasks/pyt-rewrite-a-generator-as-an-explicit-state-machine/meta.json +22 -0
  6511. mlsys/tasks/pyt-rewrite-a-generator-as-an-explicit-state-machine/solution_ref.py +13 -0
  6512. mlsys/tasks/pyt-rewrite-a-generator-as-an-explicit-state-machine/starter.py +2 -0
  6513. mlsys/tasks/pyt-rewrite-a-generator-as-an-explicit-state-machine/task.md +67 -0
  6514. mlsys/tasks/pyt-scales-with-threads-classifier/check.py +65 -0
  6515. mlsys/tasks/pyt-scales-with-threads-classifier/gen_fixtures.py +1 -0
  6516. mlsys/tasks/pyt-scales-with-threads-classifier/meta.json +22 -0
  6517. mlsys/tasks/pyt-scales-with-threads-classifier/solution_ref.py +34 -0
  6518. mlsys/tasks/pyt-scales-with-threads-classifier/starter.py +2 -0
  6519. mlsys/tasks/pyt-scales-with-threads-classifier/task.md +60 -0
  6520. mlsys/tasks/pyt-send-throw-close-protocol/check.py +66 -0
  6521. mlsys/tasks/pyt-send-throw-close-protocol/gen_fixtures.py +1 -0
  6522. mlsys/tasks/pyt-send-throw-close-protocol/meta.json +22 -0
  6523. mlsys/tasks/pyt-send-throw-close-protocol/solution_ref.py +24 -0
  6524. mlsys/tasks/pyt-send-throw-close-protocol/starter.py +2 -0
  6525. mlsys/tasks/pyt-send-throw-close-protocol/task.md +72 -0
  6526. mlsys/tasks/pyt-serialize-a-type-s-populated-dunder-slot-table/check.py +93 -0
  6527. mlsys/tasks/pyt-serialize-a-type-s-populated-dunder-slot-table/gen_fixtures.py +1 -0
  6528. mlsys/tasks/pyt-serialize-a-type-s-populated-dunder-slot-table/meta.json +22 -0
  6529. mlsys/tasks/pyt-serialize-a-type-s-populated-dunder-slot-table/solution_ref.py +22 -0
  6530. mlsys/tasks/pyt-serialize-a-type-s-populated-dunder-slot-table/starter.py +24 -0
  6531. mlsys/tasks/pyt-serialize-a-type-s-populated-dunder-slot-table/task.md +87 -0
  6532. mlsys/tasks/pyt-set-name-descriptor-naming-via-metaclass-path/check.py +54 -0
  6533. mlsys/tasks/pyt-set-name-descriptor-naming-via-metaclass-path/gen_fixtures.py +1 -0
  6534. mlsys/tasks/pyt-set-name-descriptor-naming-via-metaclass-path/meta.json +23 -0
  6535. mlsys/tasks/pyt-set-name-descriptor-naming-via-metaclass-path/solution_ref.py +27 -0
  6536. mlsys/tasks/pyt-set-name-descriptor-naming-via-metaclass-path/starter.py +19 -0
  6537. mlsys/tasks/pyt-set-name-descriptor-naming-via-metaclass-path/task.md +81 -0
  6538. mlsys/tasks/pyt-set-name-name-binding-recovery/check.py +55 -0
  6539. mlsys/tasks/pyt-set-name-name-binding-recovery/gen_fixtures.py +2 -0
  6540. mlsys/tasks/pyt-set-name-name-binding-recovery/meta.json +23 -0
  6541. mlsys/tasks/pyt-set-name-name-binding-recovery/solution_ref.py +32 -0
  6542. mlsys/tasks/pyt-set-name-name-binding-recovery/starter.py +19 -0
  6543. mlsys/tasks/pyt-set-name-name-binding-recovery/task.md +98 -0
  6544. mlsys/tasks/pyt-set-resize-points-and-load-factor/check.py +32 -0
  6545. mlsys/tasks/pyt-set-resize-points-and-load-factor/gen_fixtures.py +1 -0
  6546. mlsys/tasks/pyt-set-resize-points-and-load-factor/meta.json +22 -0
  6547. mlsys/tasks/pyt-set-resize-points-and-load-factor/solution_ref.py +10 -0
  6548. mlsys/tasks/pyt-set-resize-points-and-load-factor/starter.py +4 -0
  6549. mlsys/tasks/pyt-set-resize-points-and-load-factor/task.md +41 -0
  6550. mlsys/tasks/pyt-set-vs-dict-footprint/check.py +31 -0
  6551. mlsys/tasks/pyt-set-vs-dict-footprint/gen_fixtures.py +1 -0
  6552. mlsys/tasks/pyt-set-vs-dict-footprint/meta.json +22 -0
  6553. mlsys/tasks/pyt-set-vs-dict-footprint/solution_ref.py +10 -0
  6554. mlsys/tasks/pyt-set-vs-dict-footprint/starter.py +4 -0
  6555. mlsys/tasks/pyt-set-vs-dict-footprint/task.md +38 -0
  6556. mlsys/tasks/pyt-shape-strides-of-a-memoryview/check.py +53 -0
  6557. mlsys/tasks/pyt-shape-strides-of-a-memoryview/gen_fixtures.py +1 -0
  6558. mlsys/tasks/pyt-shape-strides-of-a-memoryview/meta.json +22 -0
  6559. mlsys/tasks/pyt-shape-strides-of-a-memoryview/solution_ref.py +12 -0
  6560. mlsys/tasks/pyt-shape-strides-of-a-memoryview/starter.py +5 -0
  6561. mlsys/tasks/pyt-shape-strides-of-a-memoryview/task.md +78 -0
  6562. mlsys/tasks/pyt-shared-cell-aliasing/check.py +31 -0
  6563. mlsys/tasks/pyt-shared-cell-aliasing/gen_fixtures.py +1 -0
  6564. mlsys/tasks/pyt-shared-cell-aliasing/meta.json +22 -0
  6565. mlsys/tasks/pyt-shared-cell-aliasing/solution_ref.py +22 -0
  6566. mlsys/tasks/pyt-shared-cell-aliasing/starter.py +2 -0
  6567. mlsys/tasks/pyt-shared-cell-aliasing/task.md +40 -0
  6568. mlsys/tasks/pyt-simulate-the-value-stack-for-an-opcode-subset/check.py +96 -0
  6569. mlsys/tasks/pyt-simulate-the-value-stack-for-an-opcode-subset/gen_fixtures.py +1 -0
  6570. mlsys/tasks/pyt-simulate-the-value-stack-for-an-opcode-subset/meta.json +22 -0
  6571. mlsys/tasks/pyt-simulate-the-value-stack-for-an-opcode-subset/solution_ref.py +24 -0
  6572. mlsys/tasks/pyt-simulate-the-value-stack-for-an-opcode-subset/starter.py +2 -0
  6573. mlsys/tasks/pyt-simulate-the-value-stack-for-an-opcode-subset/task.md +67 -0
  6574. mlsys/tasks/pyt-small-int-interning-classifier/check.py +13 -0
  6575. mlsys/tasks/pyt-small-int-interning-classifier/gen_fixtures.py +1 -0
  6576. mlsys/tasks/pyt-small-int-interning-classifier/meta.json +22 -0
  6577. mlsys/tasks/pyt-small-int-interning-classifier/solution_ref.py +6 -0
  6578. mlsys/tasks/pyt-small-int-interning-classifier/starter.py +2 -0
  6579. mlsys/tasks/pyt-small-int-interning-classifier/task.md +34 -0
  6580. mlsys/tasks/pyt-split-vs-combined-dict-classifier/check.py +136 -0
  6581. mlsys/tasks/pyt-split-vs-combined-dict-classifier/gen_fixtures.py +1 -0
  6582. mlsys/tasks/pyt-split-vs-combined-dict-classifier/meta.json +22 -0
  6583. mlsys/tasks/pyt-split-vs-combined-dict-classifier/solution_ref.py +29 -0
  6584. mlsys/tasks/pyt-split-vs-combined-dict-classifier/starter.py +7 -0
  6585. mlsys/tasks/pyt-split-vs-combined-dict-classifier/task.md +82 -0
  6586. mlsys/tasks/pyt-stack-effect-accounting-and-co-stacksize/check.py +37 -0
  6587. mlsys/tasks/pyt-stack-effect-accounting-and-co-stacksize/gen_fixtures.py +1 -0
  6588. mlsys/tasks/pyt-stack-effect-accounting-and-co-stacksize/meta.json +22 -0
  6589. mlsys/tasks/pyt-stack-effect-accounting-and-co-stacksize/solution_ref.py +17 -0
  6590. mlsys/tasks/pyt-stack-effect-accounting-and-co-stacksize/starter.py +4 -0
  6591. mlsys/tasks/pyt-stack-effect-accounting-and-co-stacksize/task.md +72 -0
  6592. mlsys/tasks/pyt-str-footprint-by-kind-and-length/check.py +36 -0
  6593. mlsys/tasks/pyt-str-footprint-by-kind-and-length/gen_fixtures.py +1 -0
  6594. mlsys/tasks/pyt-str-footprint-by-kind-and-length/meta.json +22 -0
  6595. mlsys/tasks/pyt-str-footprint-by-kind-and-length/solution_ref.py +12 -0
  6596. mlsys/tasks/pyt-str-footprint-by-kind-and-length/starter.py +2 -0
  6597. mlsys/tasks/pyt-str-footprint-by-kind-and-length/task.md +62 -0
  6598. mlsys/tasks/pyt-string-interning-classifier/check.py +31 -0
  6599. mlsys/tasks/pyt-string-interning-classifier/gen_fixtures.py +1 -0
  6600. mlsys/tasks/pyt-string-interning-classifier/meta.json +24 -0
  6601. mlsys/tasks/pyt-string-interning-classifier/solution_ref.py +2 -0
  6602. mlsys/tasks/pyt-string-interning-classifier/starter.py +2 -0
  6603. mlsys/tasks/pyt-string-interning-classifier/task.md +50 -0
  6604. mlsys/tasks/pyt-struct-unpack-over-a-buffer-without-copying/check.py +75 -0
  6605. mlsys/tasks/pyt-struct-unpack-over-a-buffer-without-copying/gen_fixtures.py +1 -0
  6606. mlsys/tasks/pyt-struct-unpack-over-a-buffer-without-copying/meta.json +27 -0
  6607. mlsys/tasks/pyt-struct-unpack-over-a-buffer-without-copying/solution_ref.py +12 -0
  6608. mlsys/tasks/pyt-struct-unpack-over-a-buffer-without-copying/starter.py +4 -0
  6609. mlsys/tasks/pyt-struct-unpack-over-a-buffer-without-copying/task.md +64 -0
  6610. mlsys/tasks/pyt-sys-modules-caching-behavior/check.py +59 -0
  6611. mlsys/tasks/pyt-sys-modules-caching-behavior/gen_fixtures.py +1 -0
  6612. mlsys/tasks/pyt-sys-modules-caching-behavior/meta.json +22 -0
  6613. mlsys/tasks/pyt-sys-modules-caching-behavior/solution_ref.py +15 -0
  6614. mlsys/tasks/pyt-sys-modules-caching-behavior/starter.py +5 -0
  6615. mlsys/tasks/pyt-sys-modules-caching-behavior/task.md +71 -0
  6616. mlsys/tasks/pyt-trace-the-c3-merge-steps/check.py +57 -0
  6617. mlsys/tasks/pyt-trace-the-c3-merge-steps/gen_fixtures.py +1 -0
  6618. mlsys/tasks/pyt-trace-the-c3-merge-steps/meta.json +22 -0
  6619. mlsys/tasks/pyt-trace-the-c3-merge-steps/solution_ref.py +26 -0
  6620. mlsys/tasks/pyt-trace-the-c3-merge-steps/starter.py +2 -0
  6621. mlsys/tasks/pyt-trace-the-c3-merge-steps/task.md +44 -0
  6622. mlsys/tasks/pyt-use-property-and-observe-recompute/check.py +40 -0
  6623. mlsys/tasks/pyt-use-property-and-observe-recompute/gen_fixtures.py +1 -0
  6624. mlsys/tasks/pyt-use-property-and-observe-recompute/meta.json +22 -0
  6625. mlsys/tasks/pyt-use-property-and-observe-recompute/solution_ref.py +7 -0
  6626. mlsys/tasks/pyt-use-property-and-observe-recompute/starter.py +9 -0
  6627. mlsys/tasks/pyt-use-property-and-observe-recompute/task.md +29 -0
  6628. mlsys/tasks/pyt-validated-property-round-trip-byte-identity/check.py +75 -0
  6629. mlsys/tasks/pyt-validated-property-round-trip-byte-identity/gen_fixtures.py +2 -0
  6630. mlsys/tasks/pyt-validated-property-round-trip-byte-identity/meta.json +22 -0
  6631. mlsys/tasks/pyt-validated-property-round-trip-byte-identity/solution_ref.py +29 -0
  6632. mlsys/tasks/pyt-validated-property-round-trip-byte-identity/starter.py +13 -0
  6633. mlsys/tasks/pyt-validated-property-round-trip-byte-identity/task.md +86 -0
  6634. mlsys/tasks/pyt-walk-a-traceback-object/check.py +52 -0
  6635. mlsys/tasks/pyt-walk-a-traceback-object/gen_fixtures.py +1 -0
  6636. mlsys/tasks/pyt-walk-a-traceback-object/meta.json +22 -0
  6637. mlsys/tasks/pyt-walk-a-traceback-object/solution_ref.py +17 -0
  6638. mlsys/tasks/pyt-walk-a-traceback-object/starter.py +2 -0
  6639. mlsys/tasks/pyt-walk-a-traceback-object/task.md +78 -0
  6640. mlsys/tasks/pyt-walk-the-frame-stack/check.py +23 -0
  6641. mlsys/tasks/pyt-walk-the-frame-stack/gen_fixtures.py +1 -0
  6642. mlsys/tasks/pyt-walk-the-frame-stack/meta.json +22 -0
  6643. mlsys/tasks/pyt-walk-the-frame-stack/solution_ref.py +10 -0
  6644. mlsys/tasks/pyt-walk-the-frame-stack/starter.py +4 -0
  6645. mlsys/tasks/pyt-walk-the-frame-stack/task.md +48 -0
  6646. mlsys/tasks/pyt-weakkeydictionary-identity-eviction/check.py +46 -0
  6647. mlsys/tasks/pyt-weakkeydictionary-identity-eviction/gen_fixtures.py +1 -0
  6648. mlsys/tasks/pyt-weakkeydictionary-identity-eviction/meta.json +22 -0
  6649. mlsys/tasks/pyt-weakkeydictionary-identity-eviction/solution_ref.py +17 -0
  6650. mlsys/tasks/pyt-weakkeydictionary-identity-eviction/starter.py +14 -0
  6651. mlsys/tasks/pyt-weakkeydictionary-identity-eviction/task.md +71 -0
  6652. mlsys/tasks/pyt-weakref-callback-ordering/check.py +71 -0
  6653. mlsys/tasks/pyt-weakref-callback-ordering/gen_fixtures.py +2 -0
  6654. mlsys/tasks/pyt-weakref-callback-ordering/meta.json +22 -0
  6655. mlsys/tasks/pyt-weakref-callback-ordering/solution_ref.py +38 -0
  6656. mlsys/tasks/pyt-weakref-callback-ordering/starter.py +18 -0
  6657. mlsys/tasks/pyt-weakref-callback-ordering/task.md +55 -0
  6658. mlsys/tasks/pyt-weakref-slot-requirement-classifier/check.py +41 -0
  6659. mlsys/tasks/pyt-weakref-slot-requirement-classifier/gen_fixtures.py +1 -0
  6660. mlsys/tasks/pyt-weakref-slot-requirement-classifier/meta.json +22 -0
  6661. mlsys/tasks/pyt-weakref-slot-requirement-classifier/solution_ref.py +11 -0
  6662. mlsys/tasks/pyt-weakref-slot-requirement-classifier/starter.py +4 -0
  6663. mlsys/tasks/pyt-weakref-slot-requirement-classifier/task.md +53 -0
  6664. mlsys/tasks/pyt-yield-from-delegation-order/check.py +97 -0
  6665. mlsys/tasks/pyt-yield-from-delegation-order/gen_fixtures.py +3 -0
  6666. mlsys/tasks/pyt-yield-from-delegation-order/meta.json +22 -0
  6667. mlsys/tasks/pyt-yield-from-delegation-order/solution_ref.py +13 -0
  6668. mlsys/tasks/pyt-yield-from-delegation-order/starter.py +8 -0
  6669. mlsys/tasks/pyt-yield-from-delegation-order/task.md +107 -0
  6670. mlsys/tasks/pyt-zero-arg-super-class-cell-mechanics/check.py +62 -0
  6671. mlsys/tasks/pyt-zero-arg-super-class-cell-mechanics/gen_fixtures.py +1 -0
  6672. mlsys/tasks/pyt-zero-arg-super-class-cell-mechanics/meta.json +22 -0
  6673. mlsys/tasks/pyt-zero-arg-super-class-cell-mechanics/solution_ref.py +16 -0
  6674. mlsys/tasks/pyt-zero-arg-super-class-cell-mechanics/starter.py +6 -0
  6675. mlsys/tasks/pyt-zero-arg-super-class-cell-mechanics/task.md +79 -0
  6676. mlsys/tasks/pyt-zero-copy-slice-via-memoryview/check.py +34 -0
  6677. mlsys/tasks/pyt-zero-copy-slice-via-memoryview/gen_fixtures.py +1 -0
  6678. mlsys/tasks/pyt-zero-copy-slice-via-memoryview/meta.json +25 -0
  6679. mlsys/tasks/pyt-zero-copy-slice-via-memoryview/solution_ref.py +2 -0
  6680. mlsys/tasks/pyt-zero-copy-slice-via-memoryview/starter.py +3 -0
  6681. mlsys/tasks/pyt-zero-copy-slice-via-memoryview/task.md +47 -0
  6682. mlsys/tasks/rwa-classify-a-config-as-mha-gqa-mq-and-compute-n-rep/check.py +38 -0
  6683. mlsys/tasks/rwa-classify-a-config-as-mha-gqa-mq-and-compute-n-rep/gen_fixtures.py +1 -0
  6684. mlsys/tasks/rwa-classify-a-config-as-mha-gqa-mq-and-compute-n-rep/meta.json +22 -0
  6685. mlsys/tasks/rwa-classify-a-config-as-mha-gqa-mq-and-compute-n-rep/solution_ref.py +11 -0
  6686. mlsys/tasks/rwa-classify-a-config-as-mha-gqa-mq-and-compute-n-rep/starter.py +2 -0
  6687. mlsys/tasks/rwa-classify-a-config-as-mha-gqa-mq-and-compute-n-rep/task.md +36 -0
  6688. mlsys/tasks/rwa-classify-a-query-as-full-hit-partial-hit-miss/check.py +37 -0
  6689. mlsys/tasks/rwa-classify-a-query-as-full-hit-partial-hit-miss/gen_fixtures.py +1 -0
  6690. mlsys/tasks/rwa-classify-a-query-as-full-hit-partial-hit-miss/meta.json +22 -0
  6691. mlsys/tasks/rwa-classify-a-query-as-full-hit-partial-hit-miss/solution_ref.py +21 -0
  6692. mlsys/tasks/rwa-classify-a-query-as-full-hit-partial-hit-miss/starter.py +2 -0
  6693. mlsys/tasks/rwa-classify-a-query-as-full-hit-partial-hit-miss/task.md +62 -0
  6694. mlsys/tasks/rwa-classify-block-mask-tiles-as-full-partial-empty/check.py +61 -0
  6695. mlsys/tasks/rwa-classify-block-mask-tiles-as-full-partial-empty/gen_fixtures.py +1 -0
  6696. mlsys/tasks/rwa-classify-block-mask-tiles-as-full-partial-empty/meta.json +16 -0
  6697. mlsys/tasks/rwa-classify-block-mask-tiles-as-full-partial-empty/solution_ref.py +22 -0
  6698. mlsys/tasks/rwa-classify-block-mask-tiles-as-full-partial-empty/starter.py +2 -0
  6699. mlsys/tasks/rwa-classify-block-mask-tiles-as-full-partial-empty/task.md +53 -0
  6700. mlsys/tasks/rwa-classify-causal-tiles-as-full-diagonal-masked/check.py +49 -0
  6701. mlsys/tasks/rwa-classify-causal-tiles-as-full-diagonal-masked/gen_fixtures.py +1 -0
  6702. mlsys/tasks/rwa-classify-causal-tiles-as-full-diagonal-masked/meta.json +16 -0
  6703. mlsys/tasks/rwa-classify-causal-tiles-as-full-diagonal-masked/solution_ref.py +14 -0
  6704. mlsys/tasks/rwa-classify-causal-tiles-as-full-diagonal-masked/starter.py +2 -0
  6705. mlsys/tasks/rwa-classify-causal-tiles-as-full-diagonal-masked/task.md +44 -0
  6706. mlsys/tasks/rwa-classify-each-past-token-as-sink-window-evicted/check.py +42 -0
  6707. mlsys/tasks/rwa-classify-each-past-token-as-sink-window-evicted/gen_fixtures.py +1 -0
  6708. mlsys/tasks/rwa-classify-each-past-token-as-sink-window-evicted/meta.json +22 -0
  6709. mlsys/tasks/rwa-classify-each-past-token-as-sink-window-evicted/solution_ref.py +16 -0
  6710. mlsys/tasks/rwa-classify-each-past-token-as-sink-window-evicted/starter.py +6 -0
  6711. mlsys/tasks/rwa-classify-each-past-token-as-sink-window-evicted/task.md +37 -0
  6712. mlsys/tasks/rwa-classify-per-step-prefill-vs-decode-token-allocation/check.py +37 -0
  6713. mlsys/tasks/rwa-classify-per-step-prefill-vs-decode-token-allocation/gen_fixtures.py +1 -0
  6714. mlsys/tasks/rwa-classify-per-step-prefill-vs-decode-token-allocation/meta.json +22 -0
  6715. mlsys/tasks/rwa-classify-per-step-prefill-vs-decode-token-allocation/solution_ref.py +33 -0
  6716. mlsys/tasks/rwa-classify-per-step-prefill-vs-decode-token-allocation/starter.py +4 -0
  6717. mlsys/tasks/rwa-classify-per-step-prefill-vs-decode-token-allocation/task.md +50 -0
  6718. mlsys/tasks/rwa-classify-the-better-quant-axis-for-a-key-tensor/check.py +28 -0
  6719. mlsys/tasks/rwa-classify-the-better-quant-axis-for-a-key-tensor/gen_fixtures.py +1 -0
  6720. mlsys/tasks/rwa-classify-the-better-quant-axis-for-a-key-tensor/meta.json +22 -0
  6721. mlsys/tasks/rwa-classify-the-better-quant-axis-for-a-key-tensor/solution_ref.py +9 -0
  6722. mlsys/tasks/rwa-classify-the-better-quant-axis-for-a-key-tensor/starter.py +4 -0
  6723. mlsys/tasks/rwa-classify-the-better-quant-axis-for-a-key-tensor/task.md +49 -0
  6724. mlsys/tasks/rwa-classify-the-masking-path-sdpa-takes-for-given-args/check.py +39 -0
  6725. mlsys/tasks/rwa-classify-the-masking-path-sdpa-takes-for-given-args/gen_fixtures.py +1 -0
  6726. mlsys/tasks/rwa-classify-the-masking-path-sdpa-takes-for-given-args/meta.json +22 -0
  6727. mlsys/tasks/rwa-classify-the-masking-path-sdpa-takes-for-given-args/solution_ref.py +28 -0
  6728. mlsys/tasks/rwa-classify-the-masking-path-sdpa-takes-for-given-args/starter.py +2 -0
  6729. mlsys/tasks/rwa-classify-the-masking-path-sdpa-takes-for-given-args/task.md +65 -0
  6730. mlsys/tasks/rwa-classify-the-pyramidkv-per-layer-budget-allocation/check.py +27 -0
  6731. mlsys/tasks/rwa-classify-the-pyramidkv-per-layer-budget-allocation/gen_fixtures.py +1 -0
  6732. mlsys/tasks/rwa-classify-the-pyramidkv-per-layer-budget-allocation/meta.json +22 -0
  6733. mlsys/tasks/rwa-classify-the-pyramidkv-per-layer-budget-allocation/solution_ref.py +33 -0
  6734. mlsys/tasks/rwa-classify-the-pyramidkv-per-layer-budget-allocation/starter.py +7 -0
  6735. mlsys/tasks/rwa-classify-the-pyramidkv-per-layer-budget-allocation/task.md +52 -0
  6736. mlsys/tasks/rwa-classify-values-as-exact-rounded-overflow-in-e4m3-vs-e5m2/check.py +108 -0
  6737. mlsys/tasks/rwa-classify-values-as-exact-rounded-overflow-in-e4m3-vs-e5m2/gen_fixtures.py +1 -0
  6738. mlsys/tasks/rwa-classify-values-as-exact-rounded-overflow-in-e4m3-vs-e5m2/meta.json +22 -0
  6739. mlsys/tasks/rwa-classify-values-as-exact-rounded-overflow-in-e4m3-vs-e5m2/solution_ref.py +18 -0
  6740. mlsys/tasks/rwa-classify-values-as-exact-rounded-overflow-in-e4m3-vs-e5m2/starter.py +17 -0
  6741. mlsys/tasks/rwa-classify-values-as-exact-rounded-overflow-in-e4m3-vs-e5m2/task.md +75 -0
  6742. mlsys/tasks/rwa-classify-which-of-k-v-should-get-higher-bits/check.py +69 -0
  6743. mlsys/tasks/rwa-classify-which-of-k-v-should-get-higher-bits/gen_fixtures.py +1 -0
  6744. mlsys/tasks/rwa-classify-which-of-k-v-should-get-higher-bits/meta.json +22 -0
  6745. mlsys/tasks/rwa-classify-which-of-k-v-should-get-higher-bits/solution_ref.py +47 -0
  6746. mlsys/tasks/rwa-classify-which-of-k-v-should-get-higher-bits/starter.py +4 -0
  6747. mlsys/tasks/rwa-classify-which-of-k-v-should-get-higher-bits/task.md +36 -0
  6748. mlsys/tasks/rwa-compare-asymmetric-k-q8-0-v-q4-0-vs-symmetric-configs/check.py +55 -0
  6749. mlsys/tasks/rwa-compare-asymmetric-k-q8-0-v-q4-0-vs-symmetric-configs/gen_fixtures.py +1 -0
  6750. mlsys/tasks/rwa-compare-asymmetric-k-q8-0-v-q4-0-vs-symmetric-configs/meta.json +22 -0
  6751. mlsys/tasks/rwa-compare-asymmetric-k-q8-0-v-q4-0-vs-symmetric-configs/solution_ref.py +28 -0
  6752. mlsys/tasks/rwa-compare-asymmetric-k-q8-0-v-q4-0-vs-symmetric-configs/starter.py +10 -0
  6753. mlsys/tasks/rwa-compare-asymmetric-k-q8-0-v-q4-0-vs-symmetric-configs/task.md +71 -0
  6754. mlsys/tasks/rwa-compare-block-sparse-vs-dense-identical-output-fewer-pairs/check.py +65 -0
  6755. mlsys/tasks/rwa-compare-block-sparse-vs-dense-identical-output-fewer-pairs/gen_fixtures.py +1 -0
  6756. mlsys/tasks/rwa-compare-block-sparse-vs-dense-identical-output-fewer-pairs/meta.json +27 -0
  6757. mlsys/tasks/rwa-compare-block-sparse-vs-dense-identical-output-fewer-pairs/solution_ref.py +50 -0
  6758. mlsys/tasks/rwa-compare-block-sparse-vs-dense-identical-output-fewer-pairs/starter.py +4 -0
  6759. mlsys/tasks/rwa-compare-block-sparse-vs-dense-identical-output-fewer-pairs/task.md +83 -0
  6760. mlsys/tasks/rwa-compare-e4m3-vs-e5m2-on-outlier-heavy-vs-uniform-kv/check.py +106 -0
  6761. mlsys/tasks/rwa-compare-e4m3-vs-e5m2-on-outlier-heavy-vs-uniform-kv/gen_fixtures.py +1 -0
  6762. mlsys/tasks/rwa-compare-e4m3-vs-e5m2-on-outlier-heavy-vs-uniform-kv/meta.json +37 -0
  6763. mlsys/tasks/rwa-compare-e4m3-vs-e5m2-on-outlier-heavy-vs-uniform-kv/solution_ref.py +59 -0
  6764. mlsys/tasks/rwa-compare-e4m3-vs-e5m2-on-outlier-heavy-vs-uniform-kv/starter.py +11 -0
  6765. mlsys/tasks/rwa-compare-e4m3-vs-e5m2-on-outlier-heavy-vs-uniform-kv/task.md +100 -0
  6766. mlsys/tasks/rwa-compare-exact-prefix-vs-block-granular-vllm-apc-reuse/check.py +120 -0
  6767. mlsys/tasks/rwa-compare-exact-prefix-vs-block-granular-vllm-apc-reuse/gen_fixtures.py +1 -0
  6768. mlsys/tasks/rwa-compare-exact-prefix-vs-block-granular-vllm-apc-reuse/meta.json +22 -0
  6769. mlsys/tasks/rwa-compare-exact-prefix-vs-block-granular-vllm-apc-reuse/solution_ref.py +18 -0
  6770. mlsys/tasks/rwa-compare-exact-prefix-vs-block-granular-vllm-apc-reuse/starter.py +15 -0
  6771. mlsys/tasks/rwa-compare-exact-prefix-vs-block-granular-vllm-apc-reuse/task.md +90 -0
  6772. mlsys/tasks/rwa-compare-fp32-upcast-softmax-vs-pure-fp16-accumulation/check.py +43 -0
  6773. mlsys/tasks/rwa-compare-fp32-upcast-softmax-vs-pure-fp16-accumulation/gen_fixtures.py +1 -0
  6774. mlsys/tasks/rwa-compare-fp32-upcast-softmax-vs-pure-fp16-accumulation/meta.json +27 -0
  6775. mlsys/tasks/rwa-compare-fp32-upcast-softmax-vs-pure-fp16-accumulation/solution_ref.py +8 -0
  6776. mlsys/tasks/rwa-compare-fp32-upcast-softmax-vs-pure-fp16-accumulation/starter.py +4 -0
  6777. mlsys/tasks/rwa-compare-fp32-upcast-softmax-vs-pure-fp16-accumulation/task.md +80 -0
  6778. mlsys/tasks/rwa-compare-mqa-vs-gqa-vs-mha-output-reconstruction/check.py +93 -0
  6779. mlsys/tasks/rwa-compare-mqa-vs-gqa-vs-mha-output-reconstruction/gen_fixtures.py +1 -0
  6780. mlsys/tasks/rwa-compare-mqa-vs-gqa-vs-mha-output-reconstruction/meta.json +27 -0
  6781. mlsys/tasks/rwa-compare-mqa-vs-gqa-vs-mha-output-reconstruction/solution_ref.py +43 -0
  6782. mlsys/tasks/rwa-compare-mqa-vs-gqa-vs-mha-output-reconstruction/starter.py +21 -0
  6783. mlsys/tasks/rwa-compare-mqa-vs-gqa-vs-mha-output-reconstruction/task.md +106 -0
  6784. mlsys/tasks/rwa-compare-padded-dense-vs-ragged-batching/check.py +79 -0
  6785. mlsys/tasks/rwa-compare-padded-dense-vs-ragged-batching/gen_fixtures.py +1 -0
  6786. mlsys/tasks/rwa-compare-padded-dense-vs-ragged-batching/meta.json +27 -0
  6787. mlsys/tasks/rwa-compare-padded-dense-vs-ragged-batching/solution_ref.py +22 -0
  6788. mlsys/tasks/rwa-compare-padded-dense-vs-ragged-batching/starter.py +4 -0
  6789. mlsys/tasks/rwa-compare-padded-dense-vs-ragged-batching/task.md +69 -0
  6790. mlsys/tasks/rwa-compare-prefix-block-sharing-copy-on-write-memory-vs-duplication/check.py +112 -0
  6791. mlsys/tasks/rwa-compare-prefix-block-sharing-copy-on-write-memory-vs-duplication/gen_fixtures.py +1 -0
  6792. mlsys/tasks/rwa-compare-prefix-block-sharing-copy-on-write-memory-vs-duplication/meta.json +27 -0
  6793. mlsys/tasks/rwa-compare-prefix-block-sharing-copy-on-write-memory-vs-duplication/solution_ref.py +34 -0
  6794. mlsys/tasks/rwa-compare-prefix-block-sharing-copy-on-write-memory-vs-duplication/starter.py +22 -0
  6795. mlsys/tasks/rwa-compare-prefix-block-sharing-copy-on-write-memory-vs-duplication/task.md +112 -0
  6796. mlsys/tasks/rwa-compare-recompute-vs-load-from-cpu-crossover/check.py +40 -0
  6797. mlsys/tasks/rwa-compare-recompute-vs-load-from-cpu-crossover/gen_fixtures.py +1 -0
  6798. mlsys/tasks/rwa-compare-recompute-vs-load-from-cpu-crossover/meta.json +22 -0
  6799. mlsys/tasks/rwa-compare-recompute-vs-load-from-cpu-crossover/solution_ref.py +8 -0
  6800. mlsys/tasks/rwa-compare-recompute-vs-load-from-cpu-crossover/starter.py +2 -0
  6801. mlsys/tasks/rwa-compare-recompute-vs-load-from-cpu-crossover/task.md +59 -0
  6802. mlsys/tasks/rwa-compare-sink-window-vs-pure-sliding-window-stability/check.py +86 -0
  6803. mlsys/tasks/rwa-compare-sink-window-vs-pure-sliding-window-stability/gen_fixtures.py +1 -0
  6804. mlsys/tasks/rwa-compare-sink-window-vs-pure-sliding-window-stability/meta.json +22 -0
  6805. mlsys/tasks/rwa-compare-sink-window-vs-pure-sliding-window-stability/solution_ref.py +47 -0
  6806. mlsys/tasks/rwa-compare-sink-window-vs-pure-sliding-window-stability/starter.py +4 -0
  6807. mlsys/tasks/rwa-compare-sink-window-vs-pure-sliding-window-stability/task.md +91 -0
  6808. mlsys/tasks/rwa-compare-snapkv-vs-h2o-vs-knorm-kept-set-error/check.py +120 -0
  6809. mlsys/tasks/rwa-compare-snapkv-vs-h2o-vs-knorm-kept-set-error/gen_fixtures.py +1 -0
  6810. mlsys/tasks/rwa-compare-snapkv-vs-h2o-vs-knorm-kept-set-error/meta.json +27 -0
  6811. mlsys/tasks/rwa-compare-snapkv-vs-h2o-vs-knorm-kept-set-error/solution_ref.py +117 -0
  6812. mlsys/tasks/rwa-compare-snapkv-vs-h2o-vs-knorm-kept-set-error/starter.py +29 -0
  6813. mlsys/tasks/rwa-compare-snapkv-vs-h2o-vs-knorm-kept-set-error/task.md +108 -0
  6814. mlsys/tasks/rwa-compare-the-bit-width-x-group-size-error-frontier/check.py +85 -0
  6815. mlsys/tasks/rwa-compare-the-bit-width-x-group-size-error-frontier/gen_fixtures.py +1 -0
  6816. mlsys/tasks/rwa-compare-the-bit-width-x-group-size-error-frontier/meta.json +27 -0
  6817. mlsys/tasks/rwa-compare-the-bit-width-x-group-size-error-frontier/solution_ref.py +41 -0
  6818. mlsys/tasks/rwa-compare-the-bit-width-x-group-size-error-frontier/starter.py +18 -0
  6819. mlsys/tasks/rwa-compare-the-bit-width-x-group-size-error-frontier/task.md +93 -0
  6820. mlsys/tasks/rwa-compare-the-ttft-vs-itl-knob-as-a-step-count-model/check.py +36 -0
  6821. mlsys/tasks/rwa-compare-the-ttft-vs-itl-knob-as-a-step-count-model/gen_fixtures.py +1 -0
  6822. mlsys/tasks/rwa-compare-the-ttft-vs-itl-knob-as-a-step-count-model/meta.json +22 -0
  6823. mlsys/tasks/rwa-compare-the-ttft-vs-itl-knob-as-a-step-count-model/solution_ref.py +15 -0
  6824. mlsys/tasks/rwa-compare-the-ttft-vs-itl-knob-as-a-step-count-model/starter.py +2 -0
  6825. mlsys/tasks/rwa-compare-the-ttft-vs-itl-knob-as-a-step-count-model/task.md +71 -0
  6826. mlsys/tasks/rwa-compare-truncated-rank-mla-vs-gqa-at-equal-cache-budget/check.py +106 -0
  6827. mlsys/tasks/rwa-compare-truncated-rank-mla-vs-gqa-at-equal-cache-budget/gen_fixtures.py +1 -0
  6828. mlsys/tasks/rwa-compare-truncated-rank-mla-vs-gqa-at-equal-cache-budget/meta.json +27 -0
  6829. mlsys/tasks/rwa-compare-truncated-rank-mla-vs-gqa-at-equal-cache-budget/solution_ref.py +65 -0
  6830. mlsys/tasks/rwa-compare-truncated-rank-mla-vs-gqa-at-equal-cache-budget/starter.py +30 -0
  6831. mlsys/tasks/rwa-compare-truncated-rank-mla-vs-gqa-at-equal-cache-budget/task.md +110 -0
  6832. mlsys/tasks/rwa-compare-xformers-mem-efficient-vs-sdpa-math-backend/check.py +44 -0
  6833. mlsys/tasks/rwa-compare-xformers-mem-efficient-vs-sdpa-math-backend/gen_fixtures.py +1 -0
  6834. mlsys/tasks/rwa-compare-xformers-mem-efficient-vs-sdpa-math-backend/meta.json +22 -0
  6835. mlsys/tasks/rwa-compare-xformers-mem-efficient-vs-sdpa-math-backend/solution_ref.py +21 -0
  6836. mlsys/tasks/rwa-compare-xformers-mem-efficient-vs-sdpa-math-backend/starter.py +4 -0
  6837. mlsys/tasks/rwa-compare-xformers-mem-efficient-vs-sdpa-math-backend/task.md +76 -0
  6838. mlsys/tasks/rwa-debug-accumulator-not-rescaled-when-running-max-grows/check.py +54 -0
  6839. mlsys/tasks/rwa-debug-accumulator-not-rescaled-when-running-max-grows/gen_fixtures.py +2 -0
  6840. mlsys/tasks/rwa-debug-accumulator-not-rescaled-when-running-max-grows/meta.json +22 -0
  6841. mlsys/tasks/rwa-debug-accumulator-not-rescaled-when-running-max-grows/solution_ref.py +34 -0
  6842. mlsys/tasks/rwa-debug-accumulator-not-rescaled-when-running-max-grows/starter.py +35 -0
  6843. mlsys/tasks/rwa-debug-accumulator-not-rescaled-when-running-max-grows/task.md +93 -0
  6844. mlsys/tasks/rwa-debug-bias-scaled-with-qk-instead-of-added-unscaled/check.py +75 -0
  6845. mlsys/tasks/rwa-debug-bias-scaled-with-qk-instead-of-added-unscaled/gen_fixtures.py +1 -0
  6846. mlsys/tasks/rwa-debug-bias-scaled-with-qk-instead-of-added-unscaled/meta.json +22 -0
  6847. mlsys/tasks/rwa-debug-bias-scaled-with-qk-instead-of-added-unscaled/solution_ref.py +24 -0
  6848. mlsys/tasks/rwa-debug-bias-scaled-with-qk-instead-of-added-unscaled/starter.py +21 -0
  6849. mlsys/tasks/rwa-debug-bias-scaled-with-qk-instead-of-added-unscaled/task.md +75 -0
  6850. mlsys/tasks/rwa-debug-block-skipper-drops-a-partial-diagonal-block/check.py +54 -0
  6851. mlsys/tasks/rwa-debug-block-skipper-drops-a-partial-diagonal-block/gen_fixtures.py +1 -0
  6852. mlsys/tasks/rwa-debug-block-skipper-drops-a-partial-diagonal-block/meta.json +22 -0
  6853. mlsys/tasks/rwa-debug-block-skipper-drops-a-partial-diagonal-block/solution_ref.py +46 -0
  6854. mlsys/tasks/rwa-debug-block-skipper-drops-a-partial-diagonal-block/starter.py +40 -0
  6855. mlsys/tasks/rwa-debug-block-skipper-drops-a-partial-diagonal-block/task.md +97 -0
  6856. mlsys/tasks/rwa-debug-causal-mask-applied-after-softmax-instead-of-before/check.py +34 -0
  6857. mlsys/tasks/rwa-debug-causal-mask-applied-after-softmax-instead-of-before/gen_fixtures.py +1 -0
  6858. mlsys/tasks/rwa-debug-causal-mask-applied-after-softmax-instead-of-before/meta.json +22 -0
  6859. mlsys/tasks/rwa-debug-causal-mask-applied-after-softmax-instead-of-before/solution_ref.py +22 -0
  6860. mlsys/tasks/rwa-debug-causal-mask-applied-after-softmax-instead-of-before/starter.py +27 -0
  6861. mlsys/tasks/rwa-debug-causal-mask-applied-after-softmax-instead-of-before/task.md +75 -0
  6862. mlsys/tasks/rwa-debug-fp8-kv-with-scale-1-0-saturates-on-large-values/check.py +54 -0
  6863. mlsys/tasks/rwa-debug-fp8-kv-with-scale-1-0-saturates-on-large-values/gen_fixtures.py +1 -0
  6864. mlsys/tasks/rwa-debug-fp8-kv-with-scale-1-0-saturates-on-large-values/meta.json +22 -0
  6865. mlsys/tasks/rwa-debug-fp8-kv-with-scale-1-0-saturates-on-large-values/solution_ref.py +28 -0
  6866. mlsys/tasks/rwa-debug-fp8-kv-with-scale-1-0-saturates-on-large-values/starter.py +16 -0
  6867. mlsys/tasks/rwa-debug-fp8-kv-with-scale-1-0-saturates-on-large-values/task.md +71 -0
  6868. mlsys/tasks/rwa-debug-gather-ignores-the-partial-last-block-length/check.py +68 -0
  6869. mlsys/tasks/rwa-debug-gather-ignores-the-partial-last-block-length/gen_fixtures.py +1 -0
  6870. mlsys/tasks/rwa-debug-gather-ignores-the-partial-last-block-length/meta.json +22 -0
  6871. mlsys/tasks/rwa-debug-gather-ignores-the-partial-last-block-length/solution_ref.py +17 -0
  6872. mlsys/tasks/rwa-debug-gather-ignores-the-partial-last-block-length/starter.py +20 -0
  6873. mlsys/tasks/rwa-debug-gather-ignores-the-partial-last-block-length/task.md +86 -0
  6874. mlsys/tasks/rwa-debug-global-causal-mask-leaks-across-ragged-segments/check.py +59 -0
  6875. mlsys/tasks/rwa-debug-global-causal-mask-leaks-across-ragged-segments/gen_fixtures.py +1 -0
  6876. mlsys/tasks/rwa-debug-global-causal-mask-leaks-across-ragged-segments/meta.json +22 -0
  6877. mlsys/tasks/rwa-debug-global-causal-mask-leaks-across-ragged-segments/solution_ref.py +35 -0
  6878. mlsys/tasks/rwa-debug-global-causal-mask-leaks-across-ragged-segments/starter.py +29 -0
  6879. mlsys/tasks/rwa-debug-global-causal-mask-leaks-across-ragged-segments/task.md +73 -0
  6880. mlsys/tasks/rwa-debug-keys-quantized-per-token-instead-of-per-channel/check.py +40 -0
  6881. mlsys/tasks/rwa-debug-keys-quantized-per-token-instead-of-per-channel/gen_fixtures.py +1 -0
  6882. mlsys/tasks/rwa-debug-keys-quantized-per-token-instead-of-per-channel/meta.json +22 -0
  6883. mlsys/tasks/rwa-debug-keys-quantized-per-token-instead-of-per-channel/solution_ref.py +10 -0
  6884. mlsys/tasks/rwa-debug-keys-quantized-per-token-instead-of-per-channel/starter.py +13 -0
  6885. mlsys/tasks/rwa-debug-keys-quantized-per-token-instead-of-per-channel/task.md +68 -0
  6886. mlsys/tasks/rwa-debug-matcher-ignores-position-and-matches-a-suffix/check.py +32 -0
  6887. mlsys/tasks/rwa-debug-matcher-ignores-position-and-matches-a-suffix/gen_fixtures.py +1 -0
  6888. mlsys/tasks/rwa-debug-matcher-ignores-position-and-matches-a-suffix/meta.json +22 -0
  6889. mlsys/tasks/rwa-debug-matcher-ignores-position-and-matches-a-suffix/solution_ref.py +6 -0
  6890. mlsys/tasks/rwa-debug-matcher-ignores-position-and-matches-a-suffix/starter.py +13 -0
  6891. mlsys/tasks/rwa-debug-matcher-ignores-position-and-matches-a-suffix/task.md +44 -0
  6892. mlsys/tasks/rwa-debug-offload-path-truncates-dtype-on-serialize/check.py +38 -0
  6893. mlsys/tasks/rwa-debug-offload-path-truncates-dtype-on-serialize/gen_fixtures.py +1 -0
  6894. mlsys/tasks/rwa-debug-offload-path-truncates-dtype-on-serialize/meta.json +22 -0
  6895. mlsys/tasks/rwa-debug-offload-path-truncates-dtype-on-serialize/solution_ref.py +7 -0
  6896. mlsys/tasks/rwa-debug-offload-path-truncates-dtype-on-serialize/starter.py +7 -0
  6897. mlsys/tasks/rwa-debug-offload-path-truncates-dtype-on-serialize/task.md +53 -0
  6898. mlsys/tasks/rwa-debug-per-tensor-scale-instead-of-ggml-per-32-block-scale/check.py +57 -0
  6899. mlsys/tasks/rwa-debug-per-tensor-scale-instead-of-ggml-per-32-block-scale/gen_fixtures.py +1 -0
  6900. mlsys/tasks/rwa-debug-per-tensor-scale-instead-of-ggml-per-32-block-scale/meta.json +22 -0
  6901. mlsys/tasks/rwa-debug-per-tensor-scale-instead-of-ggml-per-32-block-scale/solution_ref.py +15 -0
  6902. mlsys/tasks/rwa-debug-per-tensor-scale-instead-of-ggml-per-32-block-scale/starter.py +11 -0
  6903. mlsys/tasks/rwa-debug-per-tensor-scale-instead-of-ggml-per-32-block-scale/task.md +50 -0
  6904. mlsys/tasks/rwa-debug-rope-applied-inside-the-absorbed-latent-path/check.py +40 -0
  6905. mlsys/tasks/rwa-debug-rope-applied-inside-the-absorbed-latent-path/gen_fixtures.py +1 -0
  6906. mlsys/tasks/rwa-debug-rope-applied-inside-the-absorbed-latent-path/meta.json +22 -0
  6907. mlsys/tasks/rwa-debug-rope-applied-inside-the-absorbed-latent-path/solution_ref.py +19 -0
  6908. mlsys/tasks/rwa-debug-rope-applied-inside-the-absorbed-latent-path/starter.py +21 -0
  6909. mlsys/tasks/rwa-debug-rope-applied-inside-the-absorbed-latent-path/task.md +68 -0
  6910. mlsys/tasks/rwa-debug-running-max-reset-between-chunks/check.py +53 -0
  6911. mlsys/tasks/rwa-debug-running-max-reset-between-chunks/gen_fixtures.py +1 -0
  6912. mlsys/tasks/rwa-debug-running-max-reset-between-chunks/meta.json +24 -0
  6913. mlsys/tasks/rwa-debug-running-max-reset-between-chunks/solution_ref.py +25 -0
  6914. mlsys/tasks/rwa-debug-running-max-reset-between-chunks/starter.py +16 -0
  6915. mlsys/tasks/rwa-debug-running-max-reset-between-chunks/task.md +61 -0
  6916. mlsys/tasks/rwa-debug-sinks-dropped-keeping-only-the-recent-window/check.py +44 -0
  6917. mlsys/tasks/rwa-debug-sinks-dropped-keeping-only-the-recent-window/gen_fixtures.py +1 -0
  6918. mlsys/tasks/rwa-debug-sinks-dropped-keeping-only-the-recent-window/meta.json +22 -0
  6919. mlsys/tasks/rwa-debug-sinks-dropped-keeping-only-the-recent-window/solution_ref.py +20 -0
  6920. mlsys/tasks/rwa-debug-sinks-dropped-keeping-only-the-recent-window/starter.py +18 -0
  6921. mlsys/tasks/rwa-debug-sinks-dropped-keeping-only-the-recent-window/task.md +74 -0
  6922. mlsys/tasks/rwa-debug-snapkv-pools-across-heads-instead-of-the-window/check.py +52 -0
  6923. mlsys/tasks/rwa-debug-snapkv-pools-across-heads-instead-of-the-window/gen_fixtures.py +1 -0
  6924. mlsys/tasks/rwa-debug-snapkv-pools-across-heads-instead-of-the-window/meta.json +22 -0
  6925. mlsys/tasks/rwa-debug-snapkv-pools-across-heads-instead-of-the-window/solution_ref.py +7 -0
  6926. mlsys/tasks/rwa-debug-snapkv-pools-across-heads-instead-of-the-window/starter.py +9 -0
  6927. mlsys/tasks/rwa-debug-snapkv-pools-across-heads-instead-of-the-window/task.md +58 -0
  6928. mlsys/tasks/rwa-debug-tile-repeat-instead-of-repeat-interleave/check.py +35 -0
  6929. mlsys/tasks/rwa-debug-tile-repeat-instead-of-repeat-interleave/gen_fixtures.py +1 -0
  6930. mlsys/tasks/rwa-debug-tile-repeat-instead-of-repeat-interleave/meta.json +22 -0
  6931. mlsys/tasks/rwa-debug-tile-repeat-instead-of-repeat-interleave/solution_ref.py +8 -0
  6932. mlsys/tasks/rwa-debug-tile-repeat-instead-of-repeat-interleave/starter.py +10 -0
  6933. mlsys/tasks/rwa-debug-tile-repeat-instead-of-repeat-interleave/task.md +66 -0
  6934. mlsys/tasks/rwa-derive-commuting-of-additive-score-mods-through-max-subtraction/check.py +55 -0
  6935. mlsys/tasks/rwa-derive-commuting-of-additive-score-mods-through-max-subtraction/gen_fixtures.py +1 -0
  6936. mlsys/tasks/rwa-derive-commuting-of-additive-score-mods-through-max-subtraction/meta.json +22 -0
  6937. mlsys/tasks/rwa-derive-commuting-of-additive-score-mods-through-max-subtraction/solution_ref.py +21 -0
  6938. mlsys/tasks/rwa-derive-commuting-of-additive-score-mods-through-max-subtraction/starter.py +4 -0
  6939. mlsys/tasks/rwa-derive-commuting-of-additive-score-mods-through-max-subtraction/task.md +89 -0
  6940. mlsys/tasks/rwa-derive-effective-bits-per-value-and-the-compression-ratio/check.py +45 -0
  6941. mlsys/tasks/rwa-derive-effective-bits-per-value-and-the-compression-ratio/gen_fixtures.py +1 -0
  6942. mlsys/tasks/rwa-derive-effective-bits-per-value-and-the-compression-ratio/meta.json +22 -0
  6943. mlsys/tasks/rwa-derive-effective-bits-per-value-and-the-compression-ratio/solution_ref.py +6 -0
  6944. mlsys/tasks/rwa-derive-effective-bits-per-value-and-the-compression-ratio/starter.py +2 -0
  6945. mlsys/tasks/rwa-derive-effective-bits-per-value-and-the-compression-ratio/task.md +55 -0
  6946. mlsys/tasks/rwa-derive-exactness-of-variable-size-causal-chunking/check.py +37 -0
  6947. mlsys/tasks/rwa-derive-exactness-of-variable-size-causal-chunking/gen_fixtures.py +1 -0
  6948. mlsys/tasks/rwa-derive-exactness-of-variable-size-causal-chunking/meta.json +22 -0
  6949. mlsys/tasks/rwa-derive-exactness-of-variable-size-causal-chunking/solution_ref.py +30 -0
  6950. mlsys/tasks/rwa-derive-exactness-of-variable-size-causal-chunking/starter.py +4 -0
  6951. mlsys/tasks/rwa-derive-exactness-of-variable-size-causal-chunking/task.md +65 -0
  6952. mlsys/tasks/rwa-derive-expected-attention-scores-under-a-query-gaussian/check.py +93 -0
  6953. mlsys/tasks/rwa-derive-expected-attention-scores-under-a-query-gaussian/gen_fixtures.py +1 -0
  6954. mlsys/tasks/rwa-derive-expected-attention-scores-under-a-query-gaussian/meta.json +27 -0
  6955. mlsys/tasks/rwa-derive-expected-attention-scores-under-a-query-gaussian/solution_ref.py +19 -0
  6956. mlsys/tasks/rwa-derive-expected-attention-scores-under-a-query-gaussian/starter.py +4 -0
  6957. mlsys/tasks/rwa-derive-expected-attention-scores-under-a-query-gaussian/task.md +106 -0
  6958. mlsys/tasks/rwa-derive-implement-the-flashattention-backward-dq-dk-dv/check.py +61 -0
  6959. mlsys/tasks/rwa-derive-implement-the-flashattention-backward-dq-dk-dv/gen_fixtures.py +1 -0
  6960. mlsys/tasks/rwa-derive-implement-the-flashattention-backward-dq-dk-dv/meta.json +22 -0
  6961. mlsys/tasks/rwa-derive-implement-the-flashattention-backward-dq-dk-dv/solution_ref.py +28 -0
  6962. mlsys/tasks/rwa-derive-implement-the-flashattention-backward-dq-dk-dv/starter.py +4 -0
  6963. mlsys/tasks/rwa-derive-implement-the-flashattention-backward-dq-dk-dv/task.md +78 -0
  6964. mlsys/tasks/rwa-derive-implement-the-mem-efficient-backward-with-bias/check.py +62 -0
  6965. mlsys/tasks/rwa-derive-implement-the-mem-efficient-backward-with-bias/gen_fixtures.py +2 -0
  6966. mlsys/tasks/rwa-derive-implement-the-mem-efficient-backward-with-bias/meta.json +22 -0
  6967. mlsys/tasks/rwa-derive-implement-the-mem-efficient-backward-with-bias/solution_ref.py +46 -0
  6968. mlsys/tasks/rwa-derive-implement-the-mem-efficient-backward-with-bias/starter.py +19 -0
  6969. mlsys/tasks/rwa-derive-implement-the-mem-efficient-backward-with-bias/task.md +96 -0
  6970. mlsys/tasks/rwa-derive-is-causal-explicit-inf-mask-and-alibi-bias/check.py +63 -0
  6971. mlsys/tasks/rwa-derive-is-causal-explicit-inf-mask-and-alibi-bias/gen_fixtures.py +1 -0
  6972. mlsys/tasks/rwa-derive-is-causal-explicit-inf-mask-and-alibi-bias/meta.json +27 -0
  6973. mlsys/tasks/rwa-derive-is-causal-explicit-inf-mask-and-alibi-bias/solution_ref.py +18 -0
  6974. mlsys/tasks/rwa-derive-is-causal-explicit-inf-mask-and-alibi-bias/starter.py +4 -0
  6975. mlsys/tasks/rwa-derive-is-causal-explicit-inf-mask-and-alibi-bias/task.md +69 -0
  6976. mlsys/tasks/rwa-derive-low-rank-kv-reconstruction-error-vs-singular-energy/check.py +41 -0
  6977. mlsys/tasks/rwa-derive-low-rank-kv-reconstruction-error-vs-singular-energy/gen_fixtures.py +1 -0
  6978. mlsys/tasks/rwa-derive-low-rank-kv-reconstruction-error-vs-singular-energy/meta.json +22 -0
  6979. mlsys/tasks/rwa-derive-low-rank-kv-reconstruction-error-vs-singular-energy/solution_ref.py +17 -0
  6980. mlsys/tasks/rwa-derive-low-rank-kv-reconstruction-error-vs-singular-energy/starter.py +5 -0
  6981. mlsys/tasks/rwa-derive-low-rank-kv-reconstruction-error-vs-singular-energy/task.md +70 -0
  6982. mlsys/tasks/rwa-derive-mean-pool-uptraining-init-for-kv-heads/check.py +56 -0
  6983. mlsys/tasks/rwa-derive-mean-pool-uptraining-init-for-kv-heads/gen_fixtures.py +1 -0
  6984. mlsys/tasks/rwa-derive-mean-pool-uptraining-init-for-kv-heads/meta.json +22 -0
  6985. mlsys/tasks/rwa-derive-mean-pool-uptraining-init-for-kv-heads/solution_ref.py +29 -0
  6986. mlsys/tasks/rwa-derive-mean-pool-uptraining-init-for-kv-heads/starter.py +15 -0
  6987. mlsys/tasks/rwa-derive-mean-pool-uptraining-init-for-kv-heads/task.md +86 -0
  6988. mlsys/tasks/rwa-derive-output-side-absorption-of-w-uv-into-w-o/check.py +42 -0
  6989. mlsys/tasks/rwa-derive-output-side-absorption-of-w-uv-into-w-o/gen_fixtures.py +1 -0
  6990. mlsys/tasks/rwa-derive-output-side-absorption-of-w-uv-into-w-o/meta.json +22 -0
  6991. mlsys/tasks/rwa-derive-output-side-absorption-of-w-uv-into-w-o/solution_ref.py +12 -0
  6992. mlsys/tasks/rwa-derive-output-side-absorption-of-w-uv-into-w-o/starter.py +4 -0
  6993. mlsys/tasks/rwa-derive-output-side-absorption-of-w-uv-into-w-o/task.md +64 -0
  6994. mlsys/tasks/rwa-derive-query-side-weight-absorption-w-q-t-w-uk/check.py +30 -0
  6995. mlsys/tasks/rwa-derive-query-side-weight-absorption-w-q-t-w-uk/gen_fixtures.py +1 -0
  6996. mlsys/tasks/rwa-derive-query-side-weight-absorption-w-q-t-w-uk/meta.json +22 -0
  6997. mlsys/tasks/rwa-derive-query-side-weight-absorption-w-q-t-w-uk/solution_ref.py +5 -0
  6998. mlsys/tasks/rwa-derive-query-side-weight-absorption-w-q-t-w-uk/starter.py +4 -0
  6999. mlsys/tasks/rwa-derive-query-side-weight-absorption-w-q-t-w-uk/task.md +88 -0
  7000. mlsys/tasks/rwa-derive-symmetric-q4-0-vs-asymmetric-affine-int4-error/check.py +48 -0
  7001. mlsys/tasks/rwa-derive-symmetric-q4-0-vs-asymmetric-affine-int4-error/gen_fixtures.py +1 -0
  7002. mlsys/tasks/rwa-derive-symmetric-q4-0-vs-asymmetric-affine-int4-error/meta.json +22 -0
  7003. mlsys/tasks/rwa-derive-symmetric-q4-0-vs-asymmetric-affine-int4-error/solution_ref.py +25 -0
  7004. mlsys/tasks/rwa-derive-symmetric-q4-0-vs-asymmetric-affine-int4-error/starter.py +4 -0
  7005. mlsys/tasks/rwa-derive-symmetric-q4-0-vs-asymmetric-affine-int4-error/task.md +108 -0
  7006. mlsys/tasks/rwa-derive-the-disaggregation-kv-transfer-byte-count/check.py +85 -0
  7007. mlsys/tasks/rwa-derive-the-disaggregation-kv-transfer-byte-count/gen_fixtures.py +1 -0
  7008. mlsys/tasks/rwa-derive-the-disaggregation-kv-transfer-byte-count/meta.json +27 -0
  7009. mlsys/tasks/rwa-derive-the-disaggregation-kv-transfer-byte-count/solution_ref.py +22 -0
  7010. mlsys/tasks/rwa-derive-the-disaggregation-kv-transfer-byte-count/starter.py +2 -0
  7011. mlsys/tasks/rwa-derive-the-disaggregation-kv-transfer-byte-count/task.md +81 -0
  7012. mlsys/tasks/rwa-derive-the-e4m3-relative-step-from-mantissa-bits/check.py +74 -0
  7013. mlsys/tasks/rwa-derive-the-e4m3-relative-step-from-mantissa-bits/gen_fixtures.py +1 -0
  7014. mlsys/tasks/rwa-derive-the-e4m3-relative-step-from-mantissa-bits/meta.json +22 -0
  7015. mlsys/tasks/rwa-derive-the-e4m3-relative-step-from-mantissa-bits/solution_ref.py +31 -0
  7016. mlsys/tasks/rwa-derive-the-e4m3-relative-step-from-mantissa-bits/starter.py +21 -0
  7017. mlsys/tasks/rwa-derive-the-e4m3-relative-step-from-mantissa-bits/task.md +94 -0
  7018. mlsys/tasks/rwa-derive-the-position-id-remap-for-kept-tokens/check.py +63 -0
  7019. mlsys/tasks/rwa-derive-the-position-id-remap-for-kept-tokens/gen_fixtures.py +1 -0
  7020. mlsys/tasks/rwa-derive-the-position-id-remap-for-kept-tokens/meta.json +22 -0
  7021. mlsys/tasks/rwa-derive-the-position-id-remap-for-kept-tokens/solution_ref.py +30 -0
  7022. mlsys/tasks/rwa-derive-the-position-id-remap-for-kept-tokens/starter.py +4 -0
  7023. mlsys/tasks/rwa-derive-the-position-id-remap-for-kept-tokens/task.md +79 -0
  7024. mlsys/tasks/rwa-derive-the-radix-node-split-on-partial-prefix-insert/check.py +35 -0
  7025. mlsys/tasks/rwa-derive-the-radix-node-split-on-partial-prefix-insert/gen_fixtures.py +1 -0
  7026. mlsys/tasks/rwa-derive-the-radix-node-split-on-partial-prefix-insert/meta.json +22 -0
  7027. mlsys/tasks/rwa-derive-the-radix-node-split-on-partial-prefix-insert/solution_ref.py +6 -0
  7028. mlsys/tasks/rwa-derive-the-radix-node-split-on-partial-prefix-insert/starter.py +2 -0
  7029. mlsys/tasks/rwa-derive-the-radix-node-split-on-partial-prefix-insert/task.md +60 -0
  7030. mlsys/tasks/rwa-derive-the-split-kv-partial-output-merge-log-sum-exp-combine/check.py +40 -0
  7031. mlsys/tasks/rwa-derive-the-split-kv-partial-output-merge-log-sum-exp-combine/gen_fixtures.py +1 -0
  7032. mlsys/tasks/rwa-derive-the-split-kv-partial-output-merge-log-sum-exp-combine/meta.json +22 -0
  7033. mlsys/tasks/rwa-derive-the-split-kv-partial-output-merge-log-sum-exp-combine/solution_ref.py +18 -0
  7034. mlsys/tasks/rwa-derive-the-split-kv-partial-output-merge-log-sum-exp-combine/starter.py +4 -0
  7035. mlsys/tasks/rwa-derive-the-split-kv-partial-output-merge-log-sum-exp-combine/task.md +96 -0
  7036. mlsys/tasks/rwa-flashattention-backward-recompute-ds-p-dp-rowsum-dp-p/check.py +60 -0
  7037. mlsys/tasks/rwa-flashattention-backward-recompute-ds-p-dp-rowsum-dp-p/gen_fixtures.py +1 -0
  7038. mlsys/tasks/rwa-flashattention-backward-recompute-ds-p-dp-rowsum-dp-p/meta.json +22 -0
  7039. mlsys/tasks/rwa-flashattention-backward-recompute-ds-p-dp-rowsum-dp-p/solution_ref.py +23 -0
  7040. mlsys/tasks/rwa-flashattention-backward-recompute-ds-p-dp-rowsum-dp-p/starter.py +4 -0
  7041. mlsys/tasks/rwa-flashattention-backward-recompute-ds-p-dp-rowsum-dp-p/task.md +94 -0
  7042. mlsys/tasks/rwa-implement-an-alibi-score-mod-attention/check.py +63 -0
  7043. mlsys/tasks/rwa-implement-an-alibi-score-mod-attention/gen_fixtures.py +1 -0
  7044. mlsys/tasks/rwa-implement-an-alibi-score-mod-attention/meta.json +22 -0
  7045. mlsys/tasks/rwa-implement-an-alibi-score-mod-attention/solution_ref.py +25 -0
  7046. mlsys/tasks/rwa-implement-an-alibi-score-mod-attention/starter.py +15 -0
  7047. mlsys/tasks/rwa-implement-an-alibi-score-mod-attention/task.md +96 -0
  7048. mlsys/tasks/rwa-implement-append-paged-kv-for-a-ragged-batch/check.py +145 -0
  7049. mlsys/tasks/rwa-implement-append-paged-kv-for-a-ragged-batch/gen_fixtures.py +1 -0
  7050. mlsys/tasks/rwa-implement-append-paged-kv-for-a-ragged-batch/meta.json +27 -0
  7051. mlsys/tasks/rwa-implement-append-paged-kv-for-a-ragged-batch/solution_ref.py +41 -0
  7052. mlsys/tasks/rwa-implement-append-paged-kv-for-a-ragged-batch/starter.py +21 -0
  7053. mlsys/tasks/rwa-implement-append-paged-kv-for-a-ragged-batch/task.md +99 -0
  7054. mlsys/tasks/rwa-implement-batched-paged-decode/check.py +70 -0
  7055. mlsys/tasks/rwa-implement-batched-paged-decode/gen_fixtures.py +1 -0
  7056. mlsys/tasks/rwa-implement-batched-paged-decode/meta.json +22 -0
  7057. mlsys/tasks/rwa-implement-batched-paged-decode/solution_ref.py +40 -0
  7058. mlsys/tasks/rwa-implement-batched-paged-decode/starter.py +4 -0
  7059. mlsys/tasks/rwa-implement-batched-paged-decode/task.md +89 -0
  7060. mlsys/tasks/rwa-implement-blockdiagonalmask-for-packed-sequences/check.py +51 -0
  7061. mlsys/tasks/rwa-implement-blockdiagonalmask-for-packed-sequences/gen_fixtures.py +1 -0
  7062. mlsys/tasks/rwa-implement-blockdiagonalmask-for-packed-sequences/meta.json +22 -0
  7063. mlsys/tasks/rwa-implement-blockdiagonalmask-for-packed-sequences/solution_ref.py +35 -0
  7064. mlsys/tasks/rwa-implement-blockdiagonalmask-for-packed-sequences/starter.py +16 -0
  7065. mlsys/tasks/rwa-implement-blockdiagonalmask-for-packed-sequences/task.md +76 -0
  7066. mlsys/tasks/rwa-implement-chunked-prefill-via-carried-online-softmax/check.py +69 -0
  7067. mlsys/tasks/rwa-implement-chunked-prefill-via-carried-online-softmax/gen_fixtures.py +1 -0
  7068. mlsys/tasks/rwa-implement-chunked-prefill-via-carried-online-softmax/meta.json +22 -0
  7069. mlsys/tasks/rwa-implement-chunked-prefill-via-carried-online-softmax/solution_ref.py +48 -0
  7070. mlsys/tasks/rwa-implement-chunked-prefill-via-carried-online-softmax/starter.py +16 -0
  7071. mlsys/tasks/rwa-implement-chunked-prefill-via-carried-online-softmax/task.md +94 -0
  7072. mlsys/tasks/rwa-implement-flashattention-2-forward-via-tiled-online-softmax/check.py +84 -0
  7073. mlsys/tasks/rwa-implement-flashattention-2-forward-via-tiled-online-softmax/gen_fixtures.py +1 -0
  7074. mlsys/tasks/rwa-implement-flashattention-2-forward-via-tiled-online-softmax/meta.json +27 -0
  7075. mlsys/tasks/rwa-implement-flashattention-2-forward-via-tiled-online-softmax/solution_ref.py +49 -0
  7076. mlsys/tasks/rwa-implement-flashattention-2-forward-via-tiled-online-softmax/starter.py +11 -0
  7077. mlsys/tasks/rwa-implement-flashattention-2-forward-via-tiled-online-softmax/task.md +93 -0
  7078. mlsys/tasks/rwa-implement-gemma2-tanh-soft-capping-score-mod/check.py +50 -0
  7079. mlsys/tasks/rwa-implement-gemma2-tanh-soft-capping-score-mod/gen_fixtures.py +1 -0
  7080. mlsys/tasks/rwa-implement-gemma2-tanh-soft-capping-score-mod/meta.json +22 -0
  7081. mlsys/tasks/rwa-implement-gemma2-tanh-soft-capping-score-mod/solution_ref.py +16 -0
  7082. mlsys/tasks/rwa-implement-gemma2-tanh-soft-capping-score-mod/starter.py +4 -0
  7083. mlsys/tasks/rwa-implement-gemma2-tanh-soft-capping-score-mod/task.md +60 -0
  7084. mlsys/tasks/rwa-implement-gqa-head-expansion-sdpa/check.py +77 -0
  7085. mlsys/tasks/rwa-implement-gqa-head-expansion-sdpa/gen_fixtures.py +1 -0
  7086. mlsys/tasks/rwa-implement-gqa-head-expansion-sdpa/meta.json +27 -0
  7087. mlsys/tasks/rwa-implement-gqa-head-expansion-sdpa/solution_ref.py +33 -0
  7088. mlsys/tasks/rwa-implement-gqa-head-expansion-sdpa/starter.py +17 -0
  7089. mlsys/tasks/rwa-implement-gqa-head-expansion-sdpa/task.md +105 -0
  7090. mlsys/tasks/rwa-implement-h2o-heavy-hitter-eviction-trajectory/check.py +77 -0
  7091. mlsys/tasks/rwa-implement-h2o-heavy-hitter-eviction-trajectory/gen_fixtures.py +1 -0
  7092. mlsys/tasks/rwa-implement-h2o-heavy-hitter-eviction-trajectory/meta.json +22 -0
  7093. mlsys/tasks/rwa-implement-h2o-heavy-hitter-eviction-trajectory/solution_ref.py +69 -0
  7094. mlsys/tasks/rwa-implement-h2o-heavy-hitter-eviction-trajectory/starter.py +35 -0
  7095. mlsys/tasks/rwa-implement-h2o-heavy-hitter-eviction-trajectory/task.md +82 -0
  7096. mlsys/tasks/rwa-implement-int2-quant-with-a-full-precision-recent-token-residual/check.py +46 -0
  7097. mlsys/tasks/rwa-implement-int2-quant-with-a-full-precision-recent-token-residual/gen_fixtures.py +1 -0
  7098. mlsys/tasks/rwa-implement-int2-quant-with-a-full-precision-recent-token-residual/meta.json +27 -0
  7099. mlsys/tasks/rwa-implement-int2-quant-with-a-full-precision-recent-token-residual/solution_ref.py +35 -0
  7100. mlsys/tasks/rwa-implement-int2-quant-with-a-full-precision-recent-token-residual/starter.py +4 -0
  7101. mlsys/tasks/rwa-implement-int2-quant-with-a-full-precision-recent-token-residual/task.md +67 -0
  7102. mlsys/tasks/rwa-implement-kivi-per-channel-key-per-token-value-quant/check.py +79 -0
  7103. mlsys/tasks/rwa-implement-kivi-per-channel-key-per-token-value-quant/gen_fixtures.py +1 -0
  7104. mlsys/tasks/rwa-implement-kivi-per-channel-key-per-token-value-quant/meta.json +22 -0
  7105. mlsys/tasks/rwa-implement-kivi-per-channel-key-per-token-value-quant/solution_ref.py +67 -0
  7106. mlsys/tasks/rwa-implement-kivi-per-channel-key-per-token-value-quant/starter.py +21 -0
  7107. mlsys/tasks/rwa-implement-kivi-per-channel-key-per-token-value-quant/task.md +90 -0
  7108. mlsys/tasks/rwa-implement-knormpress-l2-norm-scoring/check.py +31 -0
  7109. mlsys/tasks/rwa-implement-knormpress-l2-norm-scoring/gen_fixtures.py +1 -0
  7110. mlsys/tasks/rwa-implement-knormpress-l2-norm-scoring/meta.json +22 -0
  7111. mlsys/tasks/rwa-implement-knormpress-l2-norm-scoring/solution_ref.py +7 -0
  7112. mlsys/tasks/rwa-implement-knormpress-l2-norm-scoring/starter.py +4 -0
  7113. mlsys/tasks/rwa-implement-knormpress-l2-norm-scoring/task.md +50 -0
  7114. mlsys/tasks/rwa-implement-lossless-offload-round-trip-attention/check.py +28 -0
  7115. mlsys/tasks/rwa-implement-lossless-offload-round-trip-attention/gen_fixtures.py +1 -0
  7116. mlsys/tasks/rwa-implement-lossless-offload-round-trip-attention/meta.json +22 -0
  7117. mlsys/tasks/rwa-implement-lossless-offload-round-trip-attention/solution_ref.py +26 -0
  7118. mlsys/tasks/rwa-implement-lossless-offload-round-trip-attention/starter.py +5 -0
  7119. mlsys/tasks/rwa-implement-lossless-offload-round-trip-attention/task.md +57 -0
  7120. mlsys/tasks/rwa-implement-lowertriangularmask-causal-attention/check.py +29 -0
  7121. mlsys/tasks/rwa-implement-lowertriangularmask-causal-attention/gen_fixtures.py +1 -0
  7122. mlsys/tasks/rwa-implement-lowertriangularmask-causal-attention/meta.json +22 -0
  7123. mlsys/tasks/rwa-implement-lowertriangularmask-causal-attention/solution_ref.py +11 -0
  7124. mlsys/tasks/rwa-implement-lowertriangularmask-causal-attention/starter.py +4 -0
  7125. mlsys/tasks/rwa-implement-lowertriangularmask-causal-attention/task.md +37 -0
  7126. mlsys/tasks/rwa-implement-mem-efficient-attention-with-an-additive-attn-bias/check.py +56 -0
  7127. mlsys/tasks/rwa-implement-mem-efficient-attention-with-an-additive-attn-bias/gen_fixtures.py +1 -0
  7128. mlsys/tasks/rwa-implement-mem-efficient-attention-with-an-additive-attn-bias/meta.json +27 -0
  7129. mlsys/tasks/rwa-implement-mem-efficient-attention-with-an-additive-attn-bias/solution_ref.py +43 -0
  7130. mlsys/tasks/rwa-implement-mem-efficient-attention-with-an-additive-attn-bias/starter.py +12 -0
  7131. mlsys/tasks/rwa-implement-mem-efficient-attention-with-an-additive-attn-bias/task.md +89 -0
  7132. mlsys/tasks/rwa-implement-mla-down-up-projection-with-latent-cache/check.py +86 -0
  7133. mlsys/tasks/rwa-implement-mla-down-up-projection-with-latent-cache/gen_fixtures.py +1 -0
  7134. mlsys/tasks/rwa-implement-mla-down-up-projection-with-latent-cache/meta.json +27 -0
  7135. mlsys/tasks/rwa-implement-mla-down-up-projection-with-latent-cache/solution_ref.py +38 -0
  7136. mlsys/tasks/rwa-implement-mla-down-up-projection-with-latent-cache/starter.py +20 -0
  7137. mlsys/tasks/rwa-implement-mla-down-up-projection-with-latent-cache/task.md +102 -0
  7138. mlsys/tasks/rwa-implement-mqa-single-kv-head-broadcast/check.py +29 -0
  7139. mlsys/tasks/rwa-implement-mqa-single-kv-head-broadcast/gen_fixtures.py +1 -0
  7140. mlsys/tasks/rwa-implement-mqa-single-kv-head-broadcast/meta.json +22 -0
  7141. mlsys/tasks/rwa-implement-mqa-single-kv-head-broadcast/solution_ref.py +33 -0
  7142. mlsys/tasks/rwa-implement-mqa-single-kv-head-broadcast/starter.py +4 -0
  7143. mlsys/tasks/rwa-implement-mqa-single-kv-head-broadcast/task.md +65 -0
  7144. mlsys/tasks/rwa-implement-ragged-batched-prefill-with-cu-seqlens/check.py +80 -0
  7145. mlsys/tasks/rwa-implement-ragged-batched-prefill-with-cu-seqlens/gen_fixtures.py +1 -0
  7146. mlsys/tasks/rwa-implement-ragged-batched-prefill-with-cu-seqlens/meta.json +22 -0
  7147. mlsys/tasks/rwa-implement-ragged-batched-prefill-with-cu-seqlens/solution_ref.py +37 -0
  7148. mlsys/tasks/rwa-implement-ragged-batched-prefill-with-cu-seqlens/starter.py +17 -0
  7149. mlsys/tasks/rwa-implement-ragged-batched-prefill-with-cu-seqlens/task.md +88 -0
  7150. mlsys/tasks/rwa-implement-scaled-dot-product-attention-semantics/check.py +64 -0
  7151. mlsys/tasks/rwa-implement-scaled-dot-product-attention-semantics/gen_fixtures.py +1 -0
  7152. mlsys/tasks/rwa-implement-scaled-dot-product-attention-semantics/meta.json +27 -0
  7153. mlsys/tasks/rwa-implement-scaled-dot-product-attention-semantics/solution_ref.py +56 -0
  7154. mlsys/tasks/rwa-implement-scaled-dot-product-attention-semantics/starter.py +7 -0
  7155. mlsys/tasks/rwa-implement-scaled-dot-product-attention-semantics/task.md +66 -0
  7156. mlsys/tasks/rwa-implement-scaled-fp8-kv-per-head-vs-per-tensor-scales/check.py +75 -0
  7157. mlsys/tasks/rwa-implement-scaled-fp8-kv-per-head-vs-per-tensor-scales/gen_fixtures.py +1 -0
  7158. mlsys/tasks/rwa-implement-scaled-fp8-kv-per-head-vs-per-tensor-scales/meta.json +27 -0
  7159. mlsys/tasks/rwa-implement-scaled-fp8-kv-per-head-vs-per-tensor-scales/solution_ref.py +38 -0
  7160. mlsys/tasks/rwa-implement-scaled-fp8-kv-per-head-vs-per-tensor-scales/starter.py +7 -0
  7161. mlsys/tasks/rwa-implement-scaled-fp8-kv-per-head-vs-per-tensor-scales/task.md +71 -0
  7162. mlsys/tasks/rwa-implement-sink-sliding-window-eviction-over-a-stream/check.py +60 -0
  7163. mlsys/tasks/rwa-implement-sink-sliding-window-eviction-over-a-stream/gen_fixtures.py +1 -0
  7164. mlsys/tasks/rwa-implement-sink-sliding-window-eviction-over-a-stream/meta.json +27 -0
  7165. mlsys/tasks/rwa-implement-sink-sliding-window-eviction-over-a-stream/solution_ref.py +31 -0
  7166. mlsys/tasks/rwa-implement-sink-sliding-window-eviction-over-a-stream/starter.py +4 -0
  7167. mlsys/tasks/rwa-implement-sink-sliding-window-eviction-over-a-stream/task.md +76 -0
  7168. mlsys/tasks/rwa-implement-sliding-window-document-mask-mod/check.py +77 -0
  7169. mlsys/tasks/rwa-implement-sliding-window-document-mask-mod/gen_fixtures.py +1 -0
  7170. mlsys/tasks/rwa-implement-sliding-window-document-mask-mod/meta.json +27 -0
  7171. mlsys/tasks/rwa-implement-sliding-window-document-mask-mod/solution_ref.py +26 -0
  7172. mlsys/tasks/rwa-implement-sliding-window-document-mask-mod/starter.py +4 -0
  7173. mlsys/tasks/rwa-implement-sliding-window-document-mask-mod/task.md +80 -0
  7174. mlsys/tasks/rwa-implement-snapkv-observation-window-pooled-selection/check.py +105 -0
  7175. mlsys/tasks/rwa-implement-snapkv-observation-window-pooled-selection/gen_fixtures.py +1 -0
  7176. mlsys/tasks/rwa-implement-snapkv-observation-window-pooled-selection/meta.json +27 -0
  7177. mlsys/tasks/rwa-implement-snapkv-observation-window-pooled-selection/solution_ref.py +79 -0
  7178. mlsys/tasks/rwa-implement-snapkv-observation-window-pooled-selection/starter.py +33 -0
  7179. mlsys/tasks/rwa-implement-snapkv-observation-window-pooled-selection/task.md +86 -0
  7180. mlsys/tasks/rwa-implement-the-block-table-gather-then-attend/check.py +64 -0
  7181. mlsys/tasks/rwa-implement-the-block-table-gather-then-attend/gen_fixtures.py +1 -0
  7182. mlsys/tasks/rwa-implement-the-block-table-gather-then-attend/meta.json +22 -0
  7183. mlsys/tasks/rwa-implement-the-block-table-gather-then-attend/solution_ref.py +41 -0
  7184. mlsys/tasks/rwa-implement-the-block-table-gather-then-attend/starter.py +18 -0
  7185. mlsys/tasks/rwa-implement-the-block-table-gather-then-attend/task.md +85 -0
  7186. mlsys/tasks/rwa-implement-the-decoupled-rope-head-concatenation/check.py +37 -0
  7187. mlsys/tasks/rwa-implement-the-decoupled-rope-head-concatenation/gen_fixtures.py +1 -0
  7188. mlsys/tasks/rwa-implement-the-decoupled-rope-head-concatenation/meta.json +22 -0
  7189. mlsys/tasks/rwa-implement-the-decoupled-rope-head-concatenation/solution_ref.py +11 -0
  7190. mlsys/tasks/rwa-implement-the-decoupled-rope-head-concatenation/starter.py +5 -0
  7191. mlsys/tasks/rwa-implement-the-decoupled-rope-head-concatenation/task.md +67 -0
  7192. mlsys/tasks/rwa-implement-the-e4m3-encode-decode-round-trip/check.py +91 -0
  7193. mlsys/tasks/rwa-implement-the-e4m3-encode-decode-round-trip/gen_fixtures.py +1 -0
  7194. mlsys/tasks/rwa-implement-the-e4m3-encode-decode-round-trip/meta.json +22 -0
  7195. mlsys/tasks/rwa-implement-the-e4m3-encode-decode-round-trip/solution_ref.py +45 -0
  7196. mlsys/tasks/rwa-implement-the-e4m3-encode-decode-round-trip/starter.py +28 -0
  7197. mlsys/tasks/rwa-implement-the-e4m3-encode-decode-round-trip/task.md +79 -0
  7198. mlsys/tasks/rwa-implement-the-enable-gqa-broadcast-path/check.py +86 -0
  7199. mlsys/tasks/rwa-implement-the-enable-gqa-broadcast-path/gen_fixtures.py +1 -0
  7200. mlsys/tasks/rwa-implement-the-enable-gqa-broadcast-path/meta.json +22 -0
  7201. mlsys/tasks/rwa-implement-the-enable-gqa-broadcast-path/solution_ref.py +23 -0
  7202. mlsys/tasks/rwa-implement-the-enable-gqa-broadcast-path/starter.py +16 -0
  7203. mlsys/tasks/rwa-implement-the-enable-gqa-broadcast-path/task.md +89 -0
  7204. mlsys/tasks/rwa-implement-the-ggml-q4-0-block-quantizer/check.py +46 -0
  7205. mlsys/tasks/rwa-implement-the-ggml-q4-0-block-quantizer/gen_fixtures.py +1 -0
  7206. mlsys/tasks/rwa-implement-the-ggml-q4-0-block-quantizer/meta.json +22 -0
  7207. mlsys/tasks/rwa-implement-the-ggml-q4-0-block-quantizer/solution_ref.py +18 -0
  7208. mlsys/tasks/rwa-implement-the-ggml-q4-0-block-quantizer/starter.py +4 -0
  7209. mlsys/tasks/rwa-implement-the-ggml-q4-0-block-quantizer/task.md +69 -0
  7210. mlsys/tasks/rwa-implement-the-ggml-q8-0-block-quantizer/check.py +41 -0
  7211. mlsys/tasks/rwa-implement-the-ggml-q8-0-block-quantizer/gen_fixtures.py +1 -0
  7212. mlsys/tasks/rwa-implement-the-ggml-q8-0-block-quantizer/meta.json +22 -0
  7213. mlsys/tasks/rwa-implement-the-ggml-q8-0-block-quantizer/solution_ref.py +16 -0
  7214. mlsys/tasks/rwa-implement-the-ggml-q8-0-block-quantizer/starter.py +4 -0
  7215. mlsys/tasks/rwa-implement-the-ggml-q8-0-block-quantizer/task.md +73 -0
  7216. mlsys/tasks/rwa-implement-the-int4-group-affine-quantizer-to-a-target-error/check.py +106 -0
  7217. mlsys/tasks/rwa-implement-the-int4-group-affine-quantizer-to-a-target-error/gen_fixtures.py +1 -0
  7218. mlsys/tasks/rwa-implement-the-int4-group-affine-quantizer-to-a-target-error/meta.json +27 -0
  7219. mlsys/tasks/rwa-implement-the-int4-group-affine-quantizer-to-a-target-error/solution_ref.py +27 -0
  7220. mlsys/tasks/rwa-implement-the-int4-group-affine-quantizer-to-a-target-error/starter.py +19 -0
  7221. mlsys/tasks/rwa-implement-the-int4-group-affine-quantizer-to-a-target-error/task.md +76 -0
  7222. mlsys/tasks/rwa-implement-the-mlx-group-affine-kv-quantizer/check.py +61 -0
  7223. mlsys/tasks/rwa-implement-the-mlx-group-affine-kv-quantizer/gen_fixtures.py +1 -0
  7224. mlsys/tasks/rwa-implement-the-mlx-group-affine-kv-quantizer/meta.json +27 -0
  7225. mlsys/tasks/rwa-implement-the-mlx-group-affine-kv-quantizer/solution_ref.py +22 -0
  7226. mlsys/tasks/rwa-implement-the-mlx-group-affine-kv-quantizer/starter.py +4 -0
  7227. mlsys/tasks/rwa-implement-the-mlx-group-affine-kv-quantizer/task.md +94 -0
  7228. mlsys/tasks/rwa-implement-the-paged-append-slot-mapping-write-path/check.py +71 -0
  7229. mlsys/tasks/rwa-implement-the-paged-append-slot-mapping-write-path/gen_fixtures.py +2 -0
  7230. mlsys/tasks/rwa-implement-the-paged-append-slot-mapping-write-path/meta.json +22 -0
  7231. mlsys/tasks/rwa-implement-the-paged-append-slot-mapping-write-path/solution_ref.py +67 -0
  7232. mlsys/tasks/rwa-implement-the-paged-append-slot-mapping-write-path/starter.py +34 -0
  7233. mlsys/tasks/rwa-implement-the-paged-append-slot-mapping-write-path/task.md +91 -0
  7234. mlsys/tasks/rwa-implement-the-prefix-tree-reuse-length-recompute-count/check.py +48 -0
  7235. mlsys/tasks/rwa-implement-the-prefix-tree-reuse-length-recompute-count/gen_fixtures.py +1 -0
  7236. mlsys/tasks/rwa-implement-the-prefix-tree-reuse-length-recompute-count/meta.json +22 -0
  7237. mlsys/tasks/rwa-implement-the-prefix-tree-reuse-length-recompute-count/solution_ref.py +32 -0
  7238. mlsys/tasks/rwa-implement-the-prefix-tree-reuse-length-recompute-count/starter.py +2 -0
  7239. mlsys/tasks/rwa-implement-the-prefix-tree-reuse-length-recompute-count/task.md +53 -0
  7240. mlsys/tasks/rwa-measure-batch-kv-memory-paged-vs-max-length-pre-allocation/check.py +31 -0
  7241. mlsys/tasks/rwa-measure-batch-kv-memory-paged-vs-max-length-pre-allocation/gen_fixtures.py +1 -0
  7242. mlsys/tasks/rwa-measure-batch-kv-memory-paged-vs-max-length-pre-allocation/meta.json +22 -0
  7243. mlsys/tasks/rwa-measure-batch-kv-memory-paged-vs-max-length-pre-allocation/solution_ref.py +4 -0
  7244. mlsys/tasks/rwa-measure-batch-kv-memory-paged-vs-max-length-pre-allocation/starter.py +2 -0
  7245. mlsys/tasks/rwa-measure-batch-kv-memory-paged-vs-max-length-pre-allocation/task.md +57 -0
  7246. mlsys/tasks/rwa-measure-bits-per-weight-and-kv-size-for-q8-0-q4-0/check.py +17 -0
  7247. mlsys/tasks/rwa-measure-bits-per-weight-and-kv-size-for-q8-0-q4-0/gen_fixtures.py +1 -0
  7248. mlsys/tasks/rwa-measure-bits-per-weight-and-kv-size-for-q8-0-q4-0/meta.json +22 -0
  7249. mlsys/tasks/rwa-measure-bits-per-weight-and-kv-size-for-q8-0-q4-0/solution_ref.py +14 -0
  7250. mlsys/tasks/rwa-measure-bits-per-weight-and-kv-size-for-q8-0-q4-0/starter.py +3 -0
  7251. mlsys/tasks/rwa-measure-bits-per-weight-and-kv-size-for-q8-0-q4-0/task.md +56 -0
  7252. mlsys/tasks/rwa-measure-blocks-slot-mapping-and-internal-fragmentation/check.py +39 -0
  7253. mlsys/tasks/rwa-measure-blocks-slot-mapping-and-internal-fragmentation/gen_fixtures.py +1 -0
  7254. mlsys/tasks/rwa-measure-blocks-slot-mapping-and-internal-fragmentation/meta.json +22 -0
  7255. mlsys/tasks/rwa-measure-blocks-slot-mapping-and-internal-fragmentation/solution_ref.py +18 -0
  7256. mlsys/tasks/rwa-measure-blocks-slot-mapping-and-internal-fragmentation/starter.py +4 -0
  7257. mlsys/tasks/rwa-measure-blocks-slot-mapping-and-internal-fragmentation/task.md +54 -0
  7258. mlsys/tasks/rwa-measure-cache-hit-rate-and-tokens-saved-over-a-stream/check.py +62 -0
  7259. mlsys/tasks/rwa-measure-cache-hit-rate-and-tokens-saved-over-a-stream/gen_fixtures.py +1 -0
  7260. mlsys/tasks/rwa-measure-cache-hit-rate-and-tokens-saved-over-a-stream/meta.json +22 -0
  7261. mlsys/tasks/rwa-measure-cache-hit-rate-and-tokens-saved-over-a-stream/solution_ref.py +15 -0
  7262. mlsys/tasks/rwa-measure-cache-hit-rate-and-tokens-saved-over-a-stream/starter.py +2 -0
  7263. mlsys/tasks/rwa-measure-cache-hit-rate-and-tokens-saved-over-a-stream/task.md +88 -0
  7264. mlsys/tasks/rwa-measure-hbm-saved-by-layer-wise-offload-scheduling/check.py +51 -0
  7265. mlsys/tasks/rwa-measure-hbm-saved-by-layer-wise-offload-scheduling/gen_fixtures.py +1 -0
  7266. mlsys/tasks/rwa-measure-hbm-saved-by-layer-wise-offload-scheduling/meta.json +22 -0
  7267. mlsys/tasks/rwa-measure-hbm-saved-by-layer-wise-offload-scheduling/solution_ref.py +9 -0
  7268. mlsys/tasks/rwa-measure-hbm-saved-by-layer-wise-offload-scheduling/starter.py +2 -0
  7269. mlsys/tasks/rwa-measure-hbm-saved-by-layer-wise-offload-scheduling/task.md +65 -0
  7270. mlsys/tasks/rwa-measure-kept-token-count-and-memory-from-compression-ratio/check.py +40 -0
  7271. mlsys/tasks/rwa-measure-kept-token-count-and-memory-from-compression-ratio/gen_fixtures.py +1 -0
  7272. mlsys/tasks/rwa-measure-kept-token-count-and-memory-from-compression-ratio/meta.json +22 -0
  7273. mlsys/tasks/rwa-measure-kept-token-count-and-memory-from-compression-ratio/solution_ref.py +30 -0
  7274. mlsys/tasks/rwa-measure-kept-token-count-and-memory-from-compression-ratio/starter.py +6 -0
  7275. mlsys/tasks/rwa-measure-kept-token-count-and-memory-from-compression-ratio/task.md +63 -0
  7276. mlsys/tasks/rwa-measure-mixed-batch-paged-read-count-and-gather-indices/check.py +34 -0
  7277. mlsys/tasks/rwa-measure-mixed-batch-paged-read-count-and-gather-indices/gen_fixtures.py +1 -0
  7278. mlsys/tasks/rwa-measure-mixed-batch-paged-read-count-and-gather-indices/meta.json +22 -0
  7279. mlsys/tasks/rwa-measure-mixed-batch-paged-read-count-and-gather-indices/solution_ref.py +33 -0
  7280. mlsys/tasks/rwa-measure-mixed-batch-paged-read-count-and-gather-indices/starter.py +4 -0
  7281. mlsys/tasks/rwa-measure-mixed-batch-paged-read-count-and-gather-indices/task.md +68 -0
  7282. mlsys/tasks/rwa-measure-mla-cached-bytes-token-vs-gqa/check.py +31 -0
  7283. mlsys/tasks/rwa-measure-mla-cached-bytes-token-vs-gqa/gen_fixtures.py +1 -0
  7284. mlsys/tasks/rwa-measure-mla-cached-bytes-token-vs-gqa/meta.json +27 -0
  7285. mlsys/tasks/rwa-measure-mla-cached-bytes-token-vs-gqa/solution_ref.py +15 -0
  7286. mlsys/tasks/rwa-measure-mla-cached-bytes-token-vs-gqa/starter.py +4 -0
  7287. mlsys/tasks/rwa-measure-mla-cached-bytes-token-vs-gqa/task.md +63 -0
  7288. mlsys/tasks/rwa-measure-per-channel-k-vs-per-token-k-reconstruction-mse/check.py +71 -0
  7289. mlsys/tasks/rwa-measure-per-channel-k-vs-per-token-k-reconstruction-mse/gen_fixtures.py +1 -0
  7290. mlsys/tasks/rwa-measure-per-channel-k-vs-per-token-k-reconstruction-mse/meta.json +22 -0
  7291. mlsys/tasks/rwa-measure-per-channel-k-vs-per-token-k-reconstruction-mse/solution_ref.py +43 -0
  7292. mlsys/tasks/rwa-measure-per-channel-k-vs-per-token-k-reconstruction-mse/starter.py +18 -0
  7293. mlsys/tasks/rwa-measure-per-channel-k-vs-per-token-k-reconstruction-mse/task.md +80 -0
  7294. mlsys/tasks/rwa-measure-per-row-online-softmax-statistics-m-l/check.py +30 -0
  7295. mlsys/tasks/rwa-measure-per-row-online-softmax-statistics-m-l/gen_fixtures.py +1 -0
  7296. mlsys/tasks/rwa-measure-per-row-online-softmax-statistics-m-l/meta.json +27 -0
  7297. mlsys/tasks/rwa-measure-per-row-online-softmax-statistics-m-l/solution_ref.py +7 -0
  7298. mlsys/tasks/rwa-measure-per-row-online-softmax-statistics-m-l/starter.py +2 -0
  7299. mlsys/tasks/rwa-measure-per-row-online-softmax-statistics-m-l/task.md +46 -0
  7300. mlsys/tasks/rwa-measure-prefill-flops-saved-by-prefix-reuse/check.py +67 -0
  7301. mlsys/tasks/rwa-measure-prefill-flops-saved-by-prefix-reuse/gen_fixtures.py +1 -0
  7302. mlsys/tasks/rwa-measure-prefill-flops-saved-by-prefix-reuse/meta.json +22 -0
  7303. mlsys/tasks/rwa-measure-prefill-flops-saved-by-prefix-reuse/solution_ref.py +39 -0
  7304. mlsys/tasks/rwa-measure-prefill-flops-saved-by-prefix-reuse/starter.py +17 -0
  7305. mlsys/tasks/rwa-measure-prefill-flops-saved-by-prefix-reuse/task.md +69 -0
  7306. mlsys/tasks/rwa-measure-skipped-block-count-and-dense-flop-fraction/check.py +54 -0
  7307. mlsys/tasks/rwa-measure-skipped-block-count-and-dense-flop-fraction/gen_fixtures.py +1 -0
  7308. mlsys/tasks/rwa-measure-skipped-block-count-and-dense-flop-fraction/meta.json +27 -0
  7309. mlsys/tasks/rwa-measure-skipped-block-count-and-dense-flop-fraction/solution_ref.py +11 -0
  7310. mlsys/tasks/rwa-measure-skipped-block-count-and-dense-flop-fraction/starter.py +5 -0
  7311. mlsys/tasks/rwa-measure-skipped-block-count-and-dense-flop-fraction/task.md +72 -0
  7312. mlsys/tasks/rwa-measure-the-attention-sink-probability-mass-on-first-tokens/check.py +62 -0
  7313. mlsys/tasks/rwa-measure-the-attention-sink-probability-mass-on-first-tokens/gen_fixtures.py +1 -0
  7314. mlsys/tasks/rwa-measure-the-attention-sink-probability-mass-on-first-tokens/meta.json +22 -0
  7315. mlsys/tasks/rwa-measure-the-attention-sink-probability-mass-on-first-tokens/solution_ref.py +11 -0
  7316. mlsys/tasks/rwa-measure-the-attention-sink-probability-mass-on-first-tokens/starter.py +4 -0
  7317. mlsys/tasks/rwa-measure-the-attention-sink-probability-mass-on-first-tokens/task.md +72 -0
  7318. mlsys/tasks/rwa-measure-the-chunk-schedule-under-a-token-budget/check.py +28 -0
  7319. mlsys/tasks/rwa-measure-the-chunk-schedule-under-a-token-budget/gen_fixtures.py +1 -0
  7320. mlsys/tasks/rwa-measure-the-chunk-schedule-under-a-token-budget/meta.json +22 -0
  7321. mlsys/tasks/rwa-measure-the-chunk-schedule-under-a-token-budget/solution_ref.py +12 -0
  7322. mlsys/tasks/rwa-measure-the-chunk-schedule-under-a-token-budget/starter.py +2 -0
  7323. mlsys/tasks/rwa-measure-the-chunk-schedule-under-a-token-budget/task.md +39 -0
  7324. mlsys/tasks/rwa-measure-the-constant-cache-size-and-attended-pairs/check.py +34 -0
  7325. mlsys/tasks/rwa-measure-the-constant-cache-size-and-attended-pairs/gen_fixtures.py +1 -0
  7326. mlsys/tasks/rwa-measure-the-constant-cache-size-and-attended-pairs/meta.json +22 -0
  7327. mlsys/tasks/rwa-measure-the-constant-cache-size-and-attended-pairs/solution_ref.py +24 -0
  7328. mlsys/tasks/rwa-measure-the-constant-cache-size-and-attended-pairs/starter.py +2 -0
  7329. mlsys/tasks/rwa-measure-the-constant-cache-size-and-attended-pairs/task.md +49 -0
  7330. mlsys/tasks/rwa-measure-the-default-sdpa-scale-and-top-pre-softmax-logit/check.py +38 -0
  7331. mlsys/tasks/rwa-measure-the-default-sdpa-scale-and-top-pre-softmax-logit/gen_fixtures.py +1 -0
  7332. mlsys/tasks/rwa-measure-the-default-sdpa-scale-and-top-pre-softmax-logit/meta.json +27 -0
  7333. mlsys/tasks/rwa-measure-the-default-sdpa-scale-and-top-pre-softmax-logit/solution_ref.py +13 -0
  7334. mlsys/tasks/rwa-measure-the-default-sdpa-scale-and-top-pre-softmax-logit/starter.py +4 -0
  7335. mlsys/tasks/rwa-measure-the-default-sdpa-scale-and-top-pre-softmax-logit/task.md +61 -0
  7336. mlsys/tasks/rwa-measure-the-kv-cache-byte-reduction-ratio/check.py +33 -0
  7337. mlsys/tasks/rwa-measure-the-kv-cache-byte-reduction-ratio/gen_fixtures.py +1 -0
  7338. mlsys/tasks/rwa-measure-the-kv-cache-byte-reduction-ratio/meta.json +22 -0
  7339. mlsys/tasks/rwa-measure-the-kv-cache-byte-reduction-ratio/solution_ref.py +13 -0
  7340. mlsys/tasks/rwa-measure-the-kv-cache-byte-reduction-ratio/starter.py +2 -0
  7341. mlsys/tasks/rwa-measure-the-kv-cache-byte-reduction-ratio/task.md +64 -0
  7342. mlsys/tasks/rwa-measure-the-o-n-memory-of-the-mem-efficient-path/check.py +29 -0
  7343. mlsys/tasks/rwa-measure-the-o-n-memory-of-the-mem-efficient-path/gen_fixtures.py +1 -0
  7344. mlsys/tasks/rwa-measure-the-o-n-memory-of-the-mem-efficient-path/meta.json +27 -0
  7345. mlsys/tasks/rwa-measure-the-o-n-memory-of-the-mem-efficient-path/solution_ref.py +19 -0
  7346. mlsys/tasks/rwa-measure-the-o-n-memory-of-the-mem-efficient-path/starter.py +4 -0
  7347. mlsys/tasks/rwa-measure-the-o-n-memory-of-the-mem-efficient-path/task.md +42 -0
  7348. mlsys/tasks/rwa-measure-the-optimal-per-tensor-scale-and-its-max-error/check.py +109 -0
  7349. mlsys/tasks/rwa-measure-the-optimal-per-tensor-scale-and-its-max-error/gen_fixtures.py +1 -0
  7350. mlsys/tasks/rwa-measure-the-optimal-per-tensor-scale-and-its-max-error/meta.json +32 -0
  7351. mlsys/tasks/rwa-measure-the-optimal-per-tensor-scale-and-its-max-error/solution_ref.py +68 -0
  7352. mlsys/tasks/rwa-measure-the-optimal-per-tensor-scale-and-its-max-error/starter.py +12 -0
  7353. mlsys/tasks/rwa-measure-the-optimal-per-tensor-scale-and-its-max-error/task.md +76 -0
  7354. mlsys/tasks/rwa-optimize-block-size-invariant-exactness-safe-softmax-stability/check.py +91 -0
  7355. mlsys/tasks/rwa-optimize-block-size-invariant-exactness-safe-softmax-stability/gen_fixtures.py +1 -0
  7356. mlsys/tasks/rwa-optimize-block-size-invariant-exactness-safe-softmax-stability/meta.json +28 -0
  7357. mlsys/tasks/rwa-optimize-block-size-invariant-exactness-safe-softmax-stability/solution_ref.py +64 -0
  7358. mlsys/tasks/rwa-optimize-block-size-invariant-exactness-safe-softmax-stability/starter.py +39 -0
  7359. mlsys/tasks/rwa-optimize-block-size-invariant-exactness-safe-softmax-stability/task.md +112 -0
  7360. mlsys/tasks/rwa-optimize-lru-eviction-under-a-node-budget/check.py +96 -0
  7361. mlsys/tasks/rwa-optimize-lru-eviction-under-a-node-budget/gen_fixtures.py +1 -0
  7362. mlsys/tasks/rwa-optimize-lru-eviction-under-a-node-budget/meta.json +22 -0
  7363. mlsys/tasks/rwa-optimize-lru-eviction-under-a-node-budget/solution_ref.py +45 -0
  7364. mlsys/tasks/rwa-optimize-lru-eviction-under-a-node-budget/starter.py +2 -0
  7365. mlsys/tasks/rwa-optimize-lru-eviction-under-a-node-budget/task.md +66 -0
  7366. mlsys/tasks/rwa-optimize-minimal-block-allocation-verify-no-oob-reads/check.py +52 -0
  7367. mlsys/tasks/rwa-optimize-minimal-block-allocation-verify-no-oob-reads/gen_fixtures.py +1 -0
  7368. mlsys/tasks/rwa-optimize-minimal-block-allocation-verify-no-oob-reads/meta.json +22 -0
  7369. mlsys/tasks/rwa-optimize-minimal-block-allocation-verify-no-oob-reads/solution_ref.py +4 -0
  7370. mlsys/tasks/rwa-optimize-minimal-block-allocation-verify-no-oob-reads/starter.py +2 -0
  7371. mlsys/tasks/rwa-optimize-minimal-block-allocation-verify-no-oob-reads/task.md +71 -0
  7372. mlsys/tasks/rwa-optimize-per-head-scale-amax-vs-percentile-clipping/check.py +126 -0
  7373. mlsys/tasks/rwa-optimize-per-head-scale-amax-vs-percentile-clipping/gen_fixtures.py +1 -0
  7374. mlsys/tasks/rwa-optimize-per-head-scale-amax-vs-percentile-clipping/meta.json +22 -0
  7375. mlsys/tasks/rwa-optimize-per-head-scale-amax-vs-percentile-clipping/solution_ref.py +93 -0
  7376. mlsys/tasks/rwa-optimize-per-head-scale-amax-vs-percentile-clipping/starter.py +20 -0
  7377. mlsys/tasks/rwa-optimize-per-head-scale-amax-vs-percentile-clipping/task.md +86 -0
  7378. mlsys/tasks/rwa-optimize-the-sink-window-split-under-a-fixed-budget/check.py +64 -0
  7379. mlsys/tasks/rwa-optimize-the-sink-window-split-under-a-fixed-budget/gen_fixtures.py +1 -0
  7380. mlsys/tasks/rwa-optimize-the-sink-window-split-under-a-fixed-budget/meta.json +22 -0
  7381. mlsys/tasks/rwa-optimize-the-sink-window-split-under-a-fixed-budget/solution_ref.py +43 -0
  7382. mlsys/tasks/rwa-optimize-the-sink-window-split-under-a-fixed-budget/starter.py +4 -0
  7383. mlsys/tasks/rwa-optimize-the-sink-window-split-under-a-fixed-budget/task.md +62 -0
  7384. mlsys/tasks/rwa-optimize-which-prefixes-stay-in-hbm-vs-tier-out/check.py +77 -0
  7385. mlsys/tasks/rwa-optimize-which-prefixes-stay-in-hbm-vs-tier-out/gen_fixtures.py +1 -0
  7386. mlsys/tasks/rwa-optimize-which-prefixes-stay-in-hbm-vs-tier-out/meta.json +22 -0
  7387. mlsys/tasks/rwa-optimize-which-prefixes-stay-in-hbm-vs-tier-out/solution_ref.py +24 -0
  7388. mlsys/tasks/rwa-optimize-which-prefixes-stay-in-hbm-vs-tier-out/starter.py +2 -0
  7389. mlsys/tasks/rwa-optimize-which-prefixes-stay-in-hbm-vs-tier-out/task.md +66 -0
  7390. mlsys/tasks/rwa-reconstruct-decode-output-from-a-disaggregated-prefill-kv/check.py +47 -0
  7391. mlsys/tasks/rwa-reconstruct-decode-output-from-a-disaggregated-prefill-kv/gen_fixtures.py +1 -0
  7392. mlsys/tasks/rwa-reconstruct-decode-output-from-a-disaggregated-prefill-kv/meta.json +23 -0
  7393. mlsys/tasks/rwa-reconstruct-decode-output-from-a-disaggregated-prefill-kv/solution_ref.py +22 -0
  7394. mlsys/tasks/rwa-reconstruct-decode-output-from-a-disaggregated-prefill-kv/starter.py +8 -0
  7395. mlsys/tasks/rwa-reconstruct-decode-output-from-a-disaggregated-prefill-kv/task.md +54 -0
  7396. mlsys/tasks/rwa-reconstruct-full-prefill-by-merging-per-chunk-partials/check.py +55 -0
  7397. mlsys/tasks/rwa-reconstruct-full-prefill-by-merging-per-chunk-partials/gen_fixtures.py +1 -0
  7398. mlsys/tasks/rwa-reconstruct-full-prefill-by-merging-per-chunk-partials/meta.json +22 -0
  7399. mlsys/tasks/rwa-reconstruct-full-prefill-by-merging-per-chunk-partials/solution_ref.py +14 -0
  7400. mlsys/tasks/rwa-reconstruct-full-prefill-by-merging-per-chunk-partials/starter.py +4 -0
  7401. mlsys/tasks/rwa-reconstruct-full-prefill-by-merging-per-chunk-partials/task.md +89 -0
  7402. mlsys/tasks/rwa-reconstruct-p-and-o-from-saved-m-l-log-sum-exp-stats/check.py +79 -0
  7403. mlsys/tasks/rwa-reconstruct-p-and-o-from-saved-m-l-log-sum-exp-stats/gen_fixtures.py +1 -0
  7404. mlsys/tasks/rwa-reconstruct-p-and-o-from-saved-m-l-log-sum-exp-stats/meta.json +22 -0
  7405. mlsys/tasks/rwa-reconstruct-p-and-o-from-saved-m-l-log-sum-exp-stats/solution_ref.py +18 -0
  7406. mlsys/tasks/rwa-reconstruct-p-and-o-from-saved-m-l-log-sum-exp-stats/starter.py +17 -0
  7407. mlsys/tasks/rwa-reconstruct-p-and-o-from-saved-m-l-log-sum-exp-stats/task.md +94 -0
  7408. mlsys/tasks/rwa-reconstruct-per-sequence-tensors-from-a-packed-ragged-batch/check.py +27 -0
  7409. mlsys/tasks/rwa-reconstruct-per-sequence-tensors-from-a-packed-ragged-batch/gen_fixtures.py +1 -0
  7410. mlsys/tasks/rwa-reconstruct-per-sequence-tensors-from-a-packed-ragged-batch/meta.json +22 -0
  7411. mlsys/tasks/rwa-reconstruct-per-sequence-tensors-from-a-packed-ragged-batch/solution_ref.py +17 -0
  7412. mlsys/tasks/rwa-reconstruct-per-sequence-tensors-from-a-packed-ragged-batch/starter.py +2 -0
  7413. mlsys/tasks/rwa-reconstruct-per-sequence-tensors-from-a-packed-ragged-batch/task.md +44 -0
  7414. mlsys/tasks/rwa-reconstruct-the-contiguous-kv-from-a-fragmented-pool/check.py +44 -0
  7415. mlsys/tasks/rwa-reconstruct-the-contiguous-kv-from-a-fragmented-pool/gen_fixtures.py +2 -0
  7416. mlsys/tasks/rwa-reconstruct-the-contiguous-kv-from-a-fragmented-pool/meta.json +22 -0
  7417. mlsys/tasks/rwa-reconstruct-the-contiguous-kv-from-a-fragmented-pool/solution_ref.py +32 -0
  7418. mlsys/tasks/rwa-reconstruct-the-contiguous-kv-from-a-fragmented-pool/starter.py +23 -0
  7419. mlsys/tasks/rwa-reconstruct-the-contiguous-kv-from-a-fragmented-pool/task.md +68 -0
  7420. mlsys/tasks/rwa-reconstruct-the-full-per-query-head-kv-view-from-packed-gqa/check.py +24 -0
  7421. mlsys/tasks/rwa-reconstruct-the-full-per-query-head-kv-view-from-packed-gqa/gen_fixtures.py +1 -0
  7422. mlsys/tasks/rwa-reconstruct-the-full-per-query-head-kv-view-from-packed-gqa/meta.json +22 -0
  7423. mlsys/tasks/rwa-reconstruct-the-full-per-query-head-kv-view-from-packed-gqa/solution_ref.py +27 -0
  7424. mlsys/tasks/rwa-reconstruct-the-full-per-query-head-kv-view-from-packed-gqa/starter.py +4 -0
  7425. mlsys/tasks/rwa-reconstruct-the-full-per-query-head-kv-view-from-packed-gqa/task.md +50 -0
  7426. mlsys/tasks/rwb-achieved-batch-size-histogram/check.py +55 -0
  7427. mlsys/tasks/rwb-achieved-batch-size-histogram/gen_fixtures.py +8 -0
  7428. mlsys/tasks/rwb-achieved-batch-size-histogram/meta.json +22 -0
  7429. mlsys/tasks/rwb-achieved-batch-size-histogram/solution_ref.py +20 -0
  7430. mlsys/tasks/rwb-achieved-batch-size-histogram/starter.py +5 -0
  7431. mlsys/tasks/rwb-achieved-batch-size-histogram/task.md +69 -0
  7432. mlsys/tasks/rwb-admission-order-minimizing-mean-completion-latency/check.py +73 -0
  7433. mlsys/tasks/rwb-admission-order-minimizing-mean-completion-latency/gen_fixtures.py +1 -0
  7434. mlsys/tasks/rwb-admission-order-minimizing-mean-completion-latency/meta.json +22 -0
  7435. mlsys/tasks/rwb-admission-order-minimizing-mean-completion-latency/solution_ref.py +14 -0
  7436. mlsys/tasks/rwb-admission-order-minimizing-mean-completion-latency/starter.py +18 -0
  7437. mlsys/tasks/rwb-admission-order-minimizing-mean-completion-latency/task.md +87 -0
  7438. mlsys/tasks/rwb-aggregate-vs-single-stream-throughput/check.py +31 -0
  7439. mlsys/tasks/rwb-aggregate-vs-single-stream-throughput/gen_fixtures.py +1 -0
  7440. mlsys/tasks/rwb-aggregate-vs-single-stream-throughput/meta.json +22 -0
  7441. mlsys/tasks/rwb-aggregate-vs-single-stream-throughput/solution_ref.py +20 -0
  7442. mlsys/tasks/rwb-aggregate-vs-single-stream-throughput/starter.py +7 -0
  7443. mlsys/tasks/rwb-aggregate-vs-single-stream-throughput/task.md +59 -0
  7444. mlsys/tasks/rwb-apc-with-lru-eviction/check.py +42 -0
  7445. mlsys/tasks/rwb-apc-with-lru-eviction/gen_fixtures.py +1 -0
  7446. mlsys/tasks/rwb-apc-with-lru-eviction/meta.json +22 -0
  7447. mlsys/tasks/rwb-apc-with-lru-eviction/solution_ref.py +28 -0
  7448. mlsys/tasks/rwb-apc-with-lru-eviction/starter.py +12 -0
  7449. mlsys/tasks/rwb-apc-with-lru-eviction/task.md +72 -0
  7450. mlsys/tasks/rwb-apply-a-token-bitmask-to-logits/check.py +30 -0
  7451. mlsys/tasks/rwb-apply-a-token-bitmask-to-logits/gen_fixtures.py +1 -0
  7452. mlsys/tasks/rwb-apply-a-token-bitmask-to-logits/meta.json +22 -0
  7453. mlsys/tasks/rwb-apply-a-token-bitmask-to-logits/solution_ref.py +25 -0
  7454. mlsys/tasks/rwb-apply-a-token-bitmask-to-logits/starter.py +4 -0
  7455. mlsys/tasks/rwb-apply-a-token-bitmask-to-logits/task.md +37 -0
  7456. mlsys/tasks/rwb-attention-flop-count/check.py +28 -0
  7457. mlsys/tasks/rwb-attention-flop-count/gen_fixtures.py +1 -0
  7458. mlsys/tasks/rwb-attention-flop-count/meta.json +22 -0
  7459. mlsys/tasks/rwb-attention-flop-count/solution_ref.py +7 -0
  7460. mlsys/tasks/rwb-attention-flop-count/starter.py +2 -0
  7461. mlsys/tasks/rwb-attention-flop-count/task.md +62 -0
  7462. mlsys/tasks/rwb-attention-flops-packed-vs-padded/check.py +30 -0
  7463. mlsys/tasks/rwb-attention-flops-packed-vs-padded/fixtures/lens.npy +0 -0
  7464. mlsys/tasks/rwb-attention-flops-packed-vs-padded/gen_fixtures.py +26 -0
  7465. mlsys/tasks/rwb-attention-flops-packed-vs-padded/meta.json +24 -0
  7466. mlsys/tasks/rwb-attention-flops-packed-vs-padded/solution_ref.py +37 -0
  7467. mlsys/tasks/rwb-attention-flops-packed-vs-padded/starter.py +16 -0
  7468. mlsys/tasks/rwb-attention-flops-packed-vs-padded/task.md +75 -0
  7469. mlsys/tasks/rwb-batch-width-efficiency-as-slots-fill/check.py +47 -0
  7470. mlsys/tasks/rwb-batch-width-efficiency-as-slots-fill/gen_fixtures.py +1 -0
  7471. mlsys/tasks/rwb-batch-width-efficiency-as-slots-fill/meta.json +22 -0
  7472. mlsys/tasks/rwb-batch-width-efficiency-as-slots-fill/solution_ref.py +8 -0
  7473. mlsys/tasks/rwb-batch-width-efficiency-as-slots-fill/starter.py +9 -0
  7474. mlsys/tasks/rwb-batch-width-efficiency-as-slots-fill/task.md +69 -0
  7475. mlsys/tasks/rwb-block-count-and-last-block-slack-for-a-sequence/check.py +26 -0
  7476. mlsys/tasks/rwb-block-count-and-last-block-slack-for-a-sequence/gen_fixtures.py +1 -0
  7477. mlsys/tasks/rwb-block-count-and-last-block-slack-for-a-sequence/meta.json +22 -0
  7478. mlsys/tasks/rwb-block-count-and-last-block-slack-for-a-sequence/solution_ref.py +7 -0
  7479. mlsys/tasks/rwb-block-count-and-last-block-slack-for-a-sequence/starter.py +4 -0
  7480. mlsys/tasks/rwb-block-count-and-last-block-slack-for-a-sequence/task.md +61 -0
  7481. mlsys/tasks/rwb-block-diagonal-varlen-attention/check.py +62 -0
  7482. mlsys/tasks/rwb-block-diagonal-varlen-attention/fixtures/cu_seqlens.npy +0 -0
  7483. mlsys/tasks/rwb-block-diagonal-varlen-attention/fixtures/k.npy +0 -0
  7484. mlsys/tasks/rwb-block-diagonal-varlen-attention/fixtures/q.npy +0 -0
  7485. mlsys/tasks/rwb-block-diagonal-varlen-attention/fixtures/v.npy +0 -0
  7486. mlsys/tasks/rwb-block-diagonal-varlen-attention/gen_fixtures.py +34 -0
  7487. mlsys/tasks/rwb-block-diagonal-varlen-attention/meta.json +27 -0
  7488. mlsys/tasks/rwb-block-diagonal-varlen-attention/solution_ref.py +36 -0
  7489. mlsys/tasks/rwb-block-diagonal-varlen-attention/starter.py +19 -0
  7490. mlsys/tasks/rwb-block-diagonal-varlen-attention/task.md +83 -0
  7491. mlsys/tasks/rwb-block-size-sensitivity-of-hit-rate/check.py +117 -0
  7492. mlsys/tasks/rwb-block-size-sensitivity-of-hit-rate/gen_fixtures.py +1 -0
  7493. mlsys/tasks/rwb-block-size-sensitivity-of-hit-rate/meta.json +22 -0
  7494. mlsys/tasks/rwb-block-size-sensitivity-of-hit-rate/solution_ref.py +50 -0
  7495. mlsys/tasks/rwb-block-size-sensitivity-of-hit-rate/starter.py +18 -0
  7496. mlsys/tasks/rwb-block-size-sensitivity-of-hit-rate/task.md +80 -0
  7497. mlsys/tasks/rwb-block-table-gather-attention-equivalence/check.py +67 -0
  7498. mlsys/tasks/rwb-block-table-gather-attention-equivalence/fixtures/k.npy +0 -0
  7499. mlsys/tasks/rwb-block-table-gather-attention-equivalence/fixtures/q.npy +0 -0
  7500. mlsys/tasks/rwb-block-table-gather-attention-equivalence/fixtures/v.npy +0 -0
  7501. mlsys/tasks/rwb-block-table-gather-attention-equivalence/gen_fixtures.py +31 -0
  7502. mlsys/tasks/rwb-block-table-gather-attention-equivalence/meta.json +26 -0
  7503. mlsys/tasks/rwb-block-table-gather-attention-equivalence/solution_ref.py +36 -0
  7504. mlsys/tasks/rwb-block-table-gather-attention-equivalence/starter.py +11 -0
  7505. mlsys/tasks/rwb-block-table-gather-attention-equivalence/task.md +80 -0
  7506. mlsys/tasks/rwb-break-even-acceptance-for-a-cost-ratio/check.py +62 -0
  7507. mlsys/tasks/rwb-break-even-acceptance-for-a-cost-ratio/gen_fixtures.py +1 -0
  7508. mlsys/tasks/rwb-break-even-acceptance-for-a-cost-ratio/meta.json +22 -0
  7509. mlsys/tasks/rwb-break-even-acceptance-for-a-cost-ratio/solution_ref.py +32 -0
  7510. mlsys/tasks/rwb-break-even-acceptance-for-a-cost-ratio/starter.py +16 -0
  7511. mlsys/tasks/rwb-break-even-acceptance-for-a-cost-ratio/task.md +91 -0
  7512. mlsys/tasks/rwb-bucket-set-minimizing-waste-under-a-memory-cap/check.py +59 -0
  7513. mlsys/tasks/rwb-bucket-set-minimizing-waste-under-a-memory-cap/gen_fixtures.py +1 -0
  7514. mlsys/tasks/rwb-bucket-set-minimizing-waste-under-a-memory-cap/meta.json +22 -0
  7515. mlsys/tasks/rwb-bucket-set-minimizing-waste-under-a-memory-cap/solution_ref.py +31 -0
  7516. mlsys/tasks/rwb-bucket-set-minimizing-waste-under-a-memory-cap/starter.py +2 -0
  7517. mlsys/tasks/rwb-bucket-set-minimizing-waste-under-a-memory-cap/task.md +68 -0
  7518. mlsys/tasks/rwb-build-cu-seqlens-from-lengths/check.py +28 -0
  7519. mlsys/tasks/rwb-build-cu-seqlens-from-lengths/gen_fixtures.py +1 -0
  7520. mlsys/tasks/rwb-build-cu-seqlens-from-lengths/meta.json +22 -0
  7521. mlsys/tasks/rwb-build-cu-seqlens-from-lengths/solution_ref.py +18 -0
  7522. mlsys/tasks/rwb-build-cu-seqlens-from-lengths/starter.py +4 -0
  7523. mlsys/tasks/rwb-build-cu-seqlens-from-lengths/task.md +40 -0
  7524. mlsys/tasks/rwb-cache-salt-isolation/check.py +37 -0
  7525. mlsys/tasks/rwb-cache-salt-isolation/gen_fixtures.py +1 -0
  7526. mlsys/tasks/rwb-cache-salt-isolation/meta.json +22 -0
  7527. mlsys/tasks/rwb-cache-salt-isolation/solution_ref.py +13 -0
  7528. mlsys/tasks/rwb-cache-salt-isolation/starter.py +2 -0
  7529. mlsys/tasks/rwb-cache-salt-isolation/task.md +41 -0
  7530. mlsys/tasks/rwb-causal-masked-tiled-attention/check.py +40 -0
  7531. mlsys/tasks/rwb-causal-masked-tiled-attention/gen_fixtures.py +1 -0
  7532. mlsys/tasks/rwb-causal-masked-tiled-attention/meta.json +22 -0
  7533. mlsys/tasks/rwb-causal-masked-tiled-attention/solution_ref.py +64 -0
  7534. mlsys/tasks/rwb-causal-masked-tiled-attention/starter.py +16 -0
  7535. mlsys/tasks/rwb-causal-masked-tiled-attention/task.md +70 -0
  7536. mlsys/tasks/rwb-choose-token-budget-minimizing-tail-itl-under-a-ttft-cap/check.py +141 -0
  7537. mlsys/tasks/rwb-choose-token-budget-minimizing-tail-itl-under-a-ttft-cap/gen_fixtures.py +1 -0
  7538. mlsys/tasks/rwb-choose-token-budget-minimizing-tail-itl-under-a-ttft-cap/meta.json +22 -0
  7539. mlsys/tasks/rwb-choose-token-budget-minimizing-tail-itl-under-a-ttft-cap/solution_ref.py +104 -0
  7540. mlsys/tasks/rwb-choose-token-budget-minimizing-tail-itl-under-a-ttft-cap/starter.py +42 -0
  7541. mlsys/tasks/rwb-choose-token-budget-minimizing-tail-itl-under-a-ttft-cap/task.md +92 -0
  7542. mlsys/tasks/rwb-chunked-vs-monolithic-iteration-count-and-ttft/check.py +92 -0
  7543. mlsys/tasks/rwb-chunked-vs-monolithic-iteration-count-and-ttft/fixtures/budget.npy +0 -0
  7544. mlsys/tasks/rwb-chunked-vs-monolithic-iteration-count-and-ttft/fixtures/prompt_lens.npy +0 -0
  7545. mlsys/tasks/rwb-chunked-vs-monolithic-iteration-count-and-ttft/gen_fixtures.py +23 -0
  7546. mlsys/tasks/rwb-chunked-vs-monolithic-iteration-count-and-ttft/meta.json +25 -0
  7547. mlsys/tasks/rwb-chunked-vs-monolithic-iteration-count-and-ttft/solution_ref.py +75 -0
  7548. mlsys/tasks/rwb-chunked-vs-monolithic-iteration-count-and-ttft/starter.py +34 -0
  7549. mlsys/tasks/rwb-chunked-vs-monolithic-iteration-count-and-ttft/task.md +82 -0
  7550. mlsys/tasks/rwb-classify-accept-reject-given-u-p-q/check.py +34 -0
  7551. mlsys/tasks/rwb-classify-accept-reject-given-u-p-q/gen_fixtures.py +1 -0
  7552. mlsys/tasks/rwb-classify-accept-reject-given-u-p-q/meta.json +22 -0
  7553. mlsys/tasks/rwb-classify-accept-reject-given-u-p-q/solution_ref.py +24 -0
  7554. mlsys/tasks/rwb-classify-accept-reject-given-u-p-q/starter.py +4 -0
  7555. mlsys/tasks/rwb-classify-accept-reject-given-u-p-q/task.md +35 -0
  7556. mlsys/tasks/rwb-classify-batch-trigger-size-vs-timeout/check.py +56 -0
  7557. mlsys/tasks/rwb-classify-batch-trigger-size-vs-timeout/gen_fixtures.py +1 -0
  7558. mlsys/tasks/rwb-classify-batch-trigger-size-vs-timeout/meta.json +22 -0
  7559. mlsys/tasks/rwb-classify-batch-trigger-size-vs-timeout/solution_ref.py +31 -0
  7560. mlsys/tasks/rwb-classify-batch-trigger-size-vs-timeout/starter.py +7 -0
  7561. mlsys/tasks/rwb-classify-batch-trigger-size-vs-timeout/task.md +40 -0
  7562. mlsys/tasks/rwb-classify-captured-vs-eager-fallback-batches/check.py +27 -0
  7563. mlsys/tasks/rwb-classify-captured-vs-eager-fallback-batches/gen_fixtures.py +1 -0
  7564. mlsys/tasks/rwb-classify-captured-vs-eager-fallback-batches/meta.json +22 -0
  7565. mlsys/tasks/rwb-classify-captured-vs-eager-fallback-batches/solution_ref.py +19 -0
  7566. mlsys/tasks/rwb-classify-captured-vs-eager-fallback-batches/starter.py +4 -0
  7567. mlsys/tasks/rwb-classify-captured-vs-eager-fallback-batches/task.md +44 -0
  7568. mlsys/tasks/rwb-classify-each-request-prefill-vs-decode-bound/check.py +29 -0
  7569. mlsys/tasks/rwb-classify-each-request-prefill-vs-decode-bound/gen_fixtures.py +1 -0
  7570. mlsys/tasks/rwb-classify-each-request-prefill-vs-decode-bound/meta.json +22 -0
  7571. mlsys/tasks/rwb-classify-each-request-prefill-vs-decode-bound/solution_ref.py +25 -0
  7572. mlsys/tasks/rwb-classify-each-request-prefill-vs-decode-bound/starter.py +2 -0
  7573. mlsys/tasks/rwb-classify-each-request-prefill-vs-decode-bound/task.md +54 -0
  7574. mlsys/tasks/rwb-classify-each-step-compute-vs-memory-bound/check.py +79 -0
  7575. mlsys/tasks/rwb-classify-each-step-compute-vs-memory-bound/gen_fixtures.py +1 -0
  7576. mlsys/tasks/rwb-classify-each-step-compute-vs-memory-bound/meta.json +22 -0
  7577. mlsys/tasks/rwb-classify-each-step-compute-vs-memory-bound/solution_ref.py +8 -0
  7578. mlsys/tasks/rwb-classify-each-step-compute-vs-memory-bound/starter.py +16 -0
  7579. mlsys/tasks/rwb-classify-each-step-compute-vs-memory-bound/task.md +98 -0
  7580. mlsys/tasks/rwb-classify-eligible-sdpa-backend/check.py +33 -0
  7581. mlsys/tasks/rwb-classify-eligible-sdpa-backend/gen_fixtures.py +1 -0
  7582. mlsys/tasks/rwb-classify-eligible-sdpa-backend/meta.json +22 -0
  7583. mlsys/tasks/rwb-classify-eligible-sdpa-backend/solution_ref.py +40 -0
  7584. mlsys/tasks/rwb-classify-eligible-sdpa-backend/starter.py +2 -0
  7585. mlsys/tasks/rwb-classify-eligible-sdpa-backend/task.md +50 -0
  7586. mlsys/tasks/rwb-classify-representable-format-per-value/check.py +73 -0
  7587. mlsys/tasks/rwb-classify-representable-format-per-value/fixtures/values.npy +0 -0
  7588. mlsys/tasks/rwb-classify-representable-format-per-value/gen_fixtures.py +32 -0
  7589. mlsys/tasks/rwb-classify-representable-format-per-value/meta.json +24 -0
  7590. mlsys/tasks/rwb-classify-representable-format-per-value/solution_ref.py +63 -0
  7591. mlsys/tasks/rwb-classify-representable-format-per-value/starter.py +12 -0
  7592. mlsys/tasks/rwb-classify-representable-format-per-value/task.md +69 -0
  7593. mlsys/tasks/rwb-classify-slot-free-busy-at-each-step/check.py +42 -0
  7594. mlsys/tasks/rwb-classify-slot-free-busy-at-each-step/gen_fixtures.py +1 -0
  7595. mlsys/tasks/rwb-classify-slot-free-busy-at-each-step/meta.json +22 -0
  7596. mlsys/tasks/rwb-classify-slot-free-busy-at-each-step/solution_ref.py +24 -0
  7597. mlsys/tasks/rwb-classify-slot-free-busy-at-each-step/starter.py +16 -0
  7598. mlsys/tasks/rwb-classify-slot-free-busy-at-each-step/task.md +91 -0
  7599. mlsys/tasks/rwb-classify-static-vs-continuous-from-an-iteration-trace/check.py +34 -0
  7600. mlsys/tasks/rwb-classify-static-vs-continuous-from-an-iteration-trace/fixtures/active.npy +0 -0
  7601. mlsys/tasks/rwb-classify-static-vs-continuous-from-an-iteration-trace/fixtures/run_len.npy +0 -0
  7602. mlsys/tasks/rwb-classify-static-vs-continuous-from-an-iteration-trace/gen_fixtures.py +100 -0
  7603. mlsys/tasks/rwb-classify-static-vs-continuous-from-an-iteration-trace/meta.json +25 -0
  7604. mlsys/tasks/rwb-classify-static-vs-continuous-from-an-iteration-trace/solution_ref.py +20 -0
  7605. mlsys/tasks/rwb-classify-static-vs-continuous-from-an-iteration-trace/starter.py +10 -0
  7606. mlsys/tasks/rwb-classify-static-vs-continuous-from-an-iteration-trace/task.md +83 -0
  7607. mlsys/tasks/rwb-compute-block-chain-hashes/check.py +35 -0
  7608. mlsys/tasks/rwb-compute-block-chain-hashes/gen_fixtures.py +1 -0
  7609. mlsys/tasks/rwb-compute-block-chain-hashes/meta.json +22 -0
  7610. mlsys/tasks/rwb-compute-block-chain-hashes/solution_ref.py +22 -0
  7611. mlsys/tasks/rwb-compute-block-chain-hashes/starter.py +4 -0
  7612. mlsys/tasks/rwb-compute-block-chain-hashes/task.md +48 -0
  7613. mlsys/tasks/rwb-concurrency-admitted-paged-vs-contiguous/check.py +46 -0
  7614. mlsys/tasks/rwb-concurrency-admitted-paged-vs-contiguous/fixtures/seqlens.npy +0 -0
  7615. mlsys/tasks/rwb-concurrency-admitted-paged-vs-contiguous/gen_fixtures.py +29 -0
  7616. mlsys/tasks/rwb-concurrency-admitted-paged-vs-contiguous/meta.json +24 -0
  7617. mlsys/tasks/rwb-concurrency-admitted-paged-vs-contiguous/solution_ref.py +14 -0
  7618. mlsys/tasks/rwb-concurrency-admitted-paged-vs-contiguous/starter.py +16 -0
  7619. mlsys/tasks/rwb-concurrency-admitted-paged-vs-contiguous/task.md +86 -0
  7620. mlsys/tasks/rwb-constrained-vs-free-argmax-divergence/check.py +104 -0
  7621. mlsys/tasks/rwb-constrained-vs-free-argmax-divergence/gen_fixtures.py +1 -0
  7622. mlsys/tasks/rwb-constrained-vs-free-argmax-divergence/meta.json +22 -0
  7623. mlsys/tasks/rwb-constrained-vs-free-argmax-divergence/solution_ref.py +36 -0
  7624. mlsys/tasks/rwb-constrained-vs-free-argmax-divergence/starter.py +15 -0
  7625. mlsys/tasks/rwb-constrained-vs-free-argmax-divergence/task.md +82 -0
  7626. mlsys/tasks/rwb-continuous-vs-static-throughput-on-one-trace/check.py +73 -0
  7627. mlsys/tasks/rwb-continuous-vs-static-throughput-on-one-trace/gen_fixtures.py +1 -0
  7628. mlsys/tasks/rwb-continuous-vs-static-throughput-on-one-trace/meta.json +22 -0
  7629. mlsys/tasks/rwb-continuous-vs-static-throughput-on-one-trace/solution_ref.py +15 -0
  7630. mlsys/tasks/rwb-continuous-vs-static-throughput-on-one-trace/starter.py +19 -0
  7631. mlsys/tasks/rwb-continuous-vs-static-throughput-on-one-trace/task.md +94 -0
  7632. mlsys/tasks/rwb-debug-a-batcher-that-ignores-the-delay-cap/check.py +66 -0
  7633. mlsys/tasks/rwb-debug-a-batcher-that-ignores-the-delay-cap/fixtures/arrivals.npy +0 -0
  7634. mlsys/tasks/rwb-debug-a-batcher-that-ignores-the-delay-cap/gen_fixtures.py +24 -0
  7635. mlsys/tasks/rwb-debug-a-batcher-that-ignores-the-delay-cap/meta.json +24 -0
  7636. mlsys/tasks/rwb-debug-a-batcher-that-ignores-the-delay-cap/solution_ref.py +49 -0
  7637. mlsys/tasks/rwb-debug-a-batcher-that-ignores-the-delay-cap/starter.py +39 -0
  7638. mlsys/tasks/rwb-debug-a-batcher-that-ignores-the-delay-cap/task.md +78 -0
  7639. mlsys/tasks/rwb-debug-a-hash-that-drops-the-parent-link/check.py +56 -0
  7640. mlsys/tasks/rwb-debug-a-hash-that-drops-the-parent-link/gen_fixtures.py +1 -0
  7641. mlsys/tasks/rwb-debug-a-hash-that-drops-the-parent-link/meta.json +22 -0
  7642. mlsys/tasks/rwb-debug-a-hash-that-drops-the-parent-link/solution_ref.py +8 -0
  7643. mlsys/tasks/rwb-debug-a-hash-that-drops-the-parent-link/starter.py +10 -0
  7644. mlsys/tasks/rwb-debug-a-hash-that-drops-the-parent-link/task.md +58 -0
  7645. mlsys/tasks/rwb-debug-a-mask-that-allows-early-eos/check.py +73 -0
  7646. mlsys/tasks/rwb-debug-a-mask-that-allows-early-eos/gen_fixtures.py +1 -0
  7647. mlsys/tasks/rwb-debug-a-mask-that-allows-early-eos/meta.json +22 -0
  7648. mlsys/tasks/rwb-debug-a-mask-that-allows-early-eos/solution_ref.py +8 -0
  7649. mlsys/tasks/rwb-debug-a-mask-that-allows-early-eos/starter.py +9 -0
  7650. mlsys/tasks/rwb-debug-a-mask-that-allows-early-eos/task.md +74 -0
  7651. mlsys/tasks/rwb-debug-a-mask-that-leaks-across-boundaries/check.py +59 -0
  7652. mlsys/tasks/rwb-debug-a-mask-that-leaks-across-boundaries/gen_fixtures.py +1 -0
  7653. mlsys/tasks/rwb-debug-a-mask-that-leaks-across-boundaries/meta.json +22 -0
  7654. mlsys/tasks/rwb-debug-a-mask-that-leaks-across-boundaries/solution_ref.py +29 -0
  7655. mlsys/tasks/rwb-debug-a-mask-that-leaks-across-boundaries/starter.py +26 -0
  7656. mlsys/tasks/rwb-debug-a-mask-that-leaks-across-boundaries/task.md +72 -0
  7657. mlsys/tasks/rwb-debug-a-merge-that-forgets-the-accumulator-rescale/check.py +59 -0
  7658. mlsys/tasks/rwb-debug-a-merge-that-forgets-the-accumulator-rescale/gen_fixtures.py +1 -0
  7659. mlsys/tasks/rwb-debug-a-merge-that-forgets-the-accumulator-rescale/meta.json +22 -0
  7660. mlsys/tasks/rwb-debug-a-merge-that-forgets-the-accumulator-rescale/solution_ref.py +29 -0
  7661. mlsys/tasks/rwb-debug-a-merge-that-forgets-the-accumulator-rescale/starter.py +24 -0
  7662. mlsys/tasks/rwb-debug-a-merge-that-forgets-the-accumulator-rescale/task.md +78 -0
  7663. mlsys/tasks/rwb-debug-a-missing-1-sqrt-d-scale/check.py +51 -0
  7664. mlsys/tasks/rwb-debug-a-missing-1-sqrt-d-scale/gen_fixtures.py +1 -0
  7665. mlsys/tasks/rwb-debug-a-missing-1-sqrt-d-scale/meta.json +22 -0
  7666. mlsys/tasks/rwb-debug-a-missing-1-sqrt-d-scale/solution_ref.py +14 -0
  7667. mlsys/tasks/rwb-debug-a-missing-1-sqrt-d-scale/starter.py +15 -0
  7668. mlsys/tasks/rwb-debug-a-missing-1-sqrt-d-scale/task.md +77 -0
  7669. mlsys/tasks/rwb-debug-a-packer-that-starves-decodes/check.py +27 -0
  7670. mlsys/tasks/rwb-debug-a-packer-that-starves-decodes/fixtures/state.npy +0 -0
  7671. mlsys/tasks/rwb-debug-a-packer-that-starves-decodes/gen_fixtures.py +46 -0
  7672. mlsys/tasks/rwb-debug-a-packer-that-starves-decodes/meta.json +24 -0
  7673. mlsys/tasks/rwb-debug-a-packer-that-starves-decodes/solution_ref.py +6 -0
  7674. mlsys/tasks/rwb-debug-a-packer-that-starves-decodes/starter.py +9 -0
  7675. mlsys/tasks/rwb-debug-a-packer-that-starves-decodes/task.md +65 -0
  7676. mlsys/tasks/rwb-debug-a-scale-that-clips-outliers/check.py +37 -0
  7677. mlsys/tasks/rwb-debug-a-scale-that-clips-outliers/gen_fixtures.py +1 -0
  7678. mlsys/tasks/rwb-debug-a-scale-that-clips-outliers/meta.json +22 -0
  7679. mlsys/tasks/rwb-debug-a-scale-that-clips-outliers/solution_ref.py +9 -0
  7680. mlsys/tasks/rwb-debug-a-scale-that-clips-outliers/starter.py +12 -0
  7681. mlsys/tasks/rwb-debug-a-scale-that-clips-outliers/task.md +61 -0
  7682. mlsys/tasks/rwb-debug-a-scheduler-that-never-frees-finished-slots/check.py +47 -0
  7683. mlsys/tasks/rwb-debug-a-scheduler-that-never-frees-finished-slots/gen_fixtures.py +1 -0
  7684. mlsys/tasks/rwb-debug-a-scheduler-that-never-frees-finished-slots/meta.json +22 -0
  7685. mlsys/tasks/rwb-debug-a-scheduler-that-never-frees-finished-slots/solution_ref.py +26 -0
  7686. mlsys/tasks/rwb-debug-a-scheduler-that-never-frees-finished-slots/starter.py +33 -0
  7687. mlsys/tasks/rwb-debug-a-scheduler-that-never-frees-finished-slots/task.md +61 -0
  7688. mlsys/tasks/rwb-debug-a-scheduler-that-overflows-np-slots/check.py +51 -0
  7689. mlsys/tasks/rwb-debug-a-scheduler-that-overflows-np-slots/gen_fixtures.py +1 -0
  7690. mlsys/tasks/rwb-debug-a-scheduler-that-overflows-np-slots/meta.json +22 -0
  7691. mlsys/tasks/rwb-debug-a-scheduler-that-overflows-np-slots/solution_ref.py +26 -0
  7692. mlsys/tasks/rwb-debug-a-scheduler-that-overflows-np-slots/starter.py +29 -0
  7693. mlsys/tasks/rwb-debug-a-scheduler-that-overflows-np-slots/task.md +74 -0
  7694. mlsys/tasks/rwb-debug-an-insert-that-never-splits-nodes/check.py +70 -0
  7695. mlsys/tasks/rwb-debug-an-insert-that-never-splits-nodes/gen_fixtures.py +1 -0
  7696. mlsys/tasks/rwb-debug-an-insert-that-never-splits-nodes/meta.json +22 -0
  7697. mlsys/tasks/rwb-debug-an-insert-that-never-splits-nodes/solution_ref.py +47 -0
  7698. mlsys/tasks/rwb-debug-an-insert-that-never-splits-nodes/starter.py +33 -0
  7699. mlsys/tasks/rwb-debug-an-insert-that-never-splits-nodes/task.md +64 -0
  7700. mlsys/tasks/rwb-debug-an-off-by-one-in-slot-mapping/check.py +49 -0
  7701. mlsys/tasks/rwb-debug-an-off-by-one-in-slot-mapping/gen_fixtures.py +1 -0
  7702. mlsys/tasks/rwb-debug-an-off-by-one-in-slot-mapping/meta.json +22 -0
  7703. mlsys/tasks/rwb-debug-an-off-by-one-in-slot-mapping/solution_ref.py +26 -0
  7704. mlsys/tasks/rwb-debug-an-off-by-one-in-slot-mapping/starter.py +27 -0
  7705. mlsys/tasks/rwb-debug-an-off-by-one-in-slot-mapping/task.md +76 -0
  7706. mlsys/tasks/rwb-debug-an-sgmv-segment-off-by-one/check.py +50 -0
  7707. mlsys/tasks/rwb-debug-an-sgmv-segment-off-by-one/gen_fixtures.py +1 -0
  7708. mlsys/tasks/rwb-debug-an-sgmv-segment-off-by-one/meta.json +22 -0
  7709. mlsys/tasks/rwb-debug-an-sgmv-segment-off-by-one/solution_ref.py +10 -0
  7710. mlsys/tasks/rwb-debug-an-sgmv-segment-off-by-one/starter.py +15 -0
  7711. mlsys/tasks/rwb-debug-an-sgmv-segment-off-by-one/task.md +68 -0
  7712. mlsys/tasks/rwb-debug-bucket-assignment-that-rounds-down/check.py +34 -0
  7713. mlsys/tasks/rwb-debug-bucket-assignment-that-rounds-down/gen_fixtures.py +1 -0
  7714. mlsys/tasks/rwb-debug-bucket-assignment-that-rounds-down/meta.json +22 -0
  7715. mlsys/tasks/rwb-debug-bucket-assignment-that-rounds-down/solution_ref.py +9 -0
  7716. mlsys/tasks/rwb-debug-bucket-assignment-that-rounds-down/starter.py +7 -0
  7717. mlsys/tasks/rwb-debug-bucket-assignment-that-rounds-down/task.md +43 -0
  7718. mlsys/tasks/rwb-debug-kv-byte-accounting-gqa-factor-of-2/check.py +76 -0
  7719. mlsys/tasks/rwb-debug-kv-byte-accounting-gqa-factor-of-2/gen_fixtures.py +1 -0
  7720. mlsys/tasks/rwb-debug-kv-byte-accounting-gqa-factor-of-2/meta.json +22 -0
  7721. mlsys/tasks/rwb-debug-kv-byte-accounting-gqa-factor-of-2/solution_ref.py +5 -0
  7722. mlsys/tasks/rwb-debug-kv-byte-accounting-gqa-factor-of-2/starter.py +7 -0
  7723. mlsys/tasks/rwb-debug-kv-byte-accounting-gqa-factor-of-2/task.md +67 -0
  7724. mlsys/tasks/rwb-derive-minimum-max-num-seqs-to-hit-a-throughput-target/check.py +65 -0
  7725. mlsys/tasks/rwb-derive-minimum-max-num-seqs-to-hit-a-throughput-target/gen_fixtures.py +1 -0
  7726. mlsys/tasks/rwb-derive-minimum-max-num-seqs-to-hit-a-throughput-target/meta.json +22 -0
  7727. mlsys/tasks/rwb-derive-minimum-max-num-seqs-to-hit-a-throughput-target/solution_ref.py +14 -0
  7728. mlsys/tasks/rwb-derive-minimum-max-num-seqs-to-hit-a-throughput-target/starter.py +2 -0
  7729. mlsys/tasks/rwb-derive-minimum-max-num-seqs-to-hit-a-throughput-target/task.md +73 -0
  7730. mlsys/tasks/rwb-detect-cross-sequence-leakage-in-a-mask/check.py +27 -0
  7731. mlsys/tasks/rwb-detect-cross-sequence-leakage-in-a-mask/gen_fixtures.py +1 -0
  7732. mlsys/tasks/rwb-detect-cross-sequence-leakage-in-a-mask/meta.json +22 -0
  7733. mlsys/tasks/rwb-detect-cross-sequence-leakage-in-a-mask/solution_ref.py +8 -0
  7734. mlsys/tasks/rwb-detect-cross-sequence-leakage-in-a-mask/starter.py +4 -0
  7735. mlsys/tasks/rwb-detect-cross-sequence-leakage-in-a-mask/task.md +42 -0
  7736. mlsys/tasks/rwb-detect-illegal-block-aliasing/check.py +105 -0
  7737. mlsys/tasks/rwb-detect-illegal-block-aliasing/gen_fixtures.py +2 -0
  7738. mlsys/tasks/rwb-detect-illegal-block-aliasing/meta.json +22 -0
  7739. mlsys/tasks/rwb-detect-illegal-block-aliasing/solution_ref.py +38 -0
  7740. mlsys/tasks/rwb-detect-illegal-block-aliasing/starter.py +24 -0
  7741. mlsys/tasks/rwb-detect-illegal-block-aliasing/task.md +73 -0
  7742. mlsys/tasks/rwb-does-the-string-parse-against-the-grammar/check.py +39 -0
  7743. mlsys/tasks/rwb-does-the-string-parse-against-the-grammar/fixtures/strings.npy +0 -0
  7744. mlsys/tasks/rwb-does-the-string-parse-against-the-grammar/gen_fixtures.py +31 -0
  7745. mlsys/tasks/rwb-does-the-string-parse-against-the-grammar/meta.json +24 -0
  7746. mlsys/tasks/rwb-does-the-string-parse-against-the-grammar/solution_ref.py +26 -0
  7747. mlsys/tasks/rwb-does-the-string-parse-against-the-grammar/starter.py +9 -0
  7748. mlsys/tasks/rwb-does-the-string-parse-against-the-grammar/task.md +65 -0
  7749. mlsys/tasks/rwb-dp-optimal-bucket-selection-k-buckets/check.py +110 -0
  7750. mlsys/tasks/rwb-dp-optimal-bucket-selection-k-buckets/gen_fixtures.py +1 -0
  7751. mlsys/tasks/rwb-dp-optimal-bucket-selection-k-buckets/meta.json +22 -0
  7752. mlsys/tasks/rwb-dp-optimal-bucket-selection-k-buckets/solution_ref.py +50 -0
  7753. mlsys/tasks/rwb-dp-optimal-bucket-selection-k-buckets/starter.py +16 -0
  7754. mlsys/tasks/rwb-dp-optimal-bucket-selection-k-buckets/task.md +86 -0
  7755. mlsys/tasks/rwb-dynamic-batcher-event-simulator/check.py +66 -0
  7756. mlsys/tasks/rwb-dynamic-batcher-event-simulator/fixtures/arrivals.npy +0 -0
  7757. mlsys/tasks/rwb-dynamic-batcher-event-simulator/gen_fixtures.py +23 -0
  7758. mlsys/tasks/rwb-dynamic-batcher-event-simulator/meta.json +24 -0
  7759. mlsys/tasks/rwb-dynamic-batcher-event-simulator/solution_ref.py +28 -0
  7760. mlsys/tasks/rwb-dynamic-batcher-event-simulator/starter.py +15 -0
  7761. mlsys/tasks/rwb-dynamic-batcher-event-simulator/task.md +76 -0
  7762. mlsys/tasks/rwb-dynamic-splitfuse-budget-packer/check.py +85 -0
  7763. mlsys/tasks/rwb-dynamic-splitfuse-budget-packer/gen_fixtures.py +1 -0
  7764. mlsys/tasks/rwb-dynamic-splitfuse-budget-packer/meta.json +22 -0
  7765. mlsys/tasks/rwb-dynamic-splitfuse-budget-packer/solution_ref.py +47 -0
  7766. mlsys/tasks/rwb-dynamic-splitfuse-budget-packer/starter.py +14 -0
  7767. mlsys/tasks/rwb-dynamic-splitfuse-budget-packer/task.md +79 -0
  7768. mlsys/tasks/rwb-e4m3-encode-decode-round-trip/check.py +83 -0
  7769. mlsys/tasks/rwb-e4m3-encode-decode-round-trip/fixtures/x.npy +0 -0
  7770. mlsys/tasks/rwb-e4m3-encode-decode-round-trip/gen_fixtures.py +58 -0
  7771. mlsys/tasks/rwb-e4m3-encode-decode-round-trip/meta.json +25 -0
  7772. mlsys/tasks/rwb-e4m3-encode-decode-round-trip/solution_ref.py +44 -0
  7773. mlsys/tasks/rwb-e4m3-encode-decode-round-trip/starter.py +12 -0
  7774. mlsys/tasks/rwb-e4m3-encode-decode-round-trip/task.md +75 -0
  7775. mlsys/tasks/rwb-e5m2-vs-e4m3-dynamic-range/check.py +26 -0
  7776. mlsys/tasks/rwb-e5m2-vs-e4m3-dynamic-range/gen_fixtures.py +1 -0
  7777. mlsys/tasks/rwb-e5m2-vs-e4m3-dynamic-range/meta.json +22 -0
  7778. mlsys/tasks/rwb-e5m2-vs-e4m3-dynamic-range/solution_ref.py +15 -0
  7779. mlsys/tasks/rwb-e5m2-vs-e4m3-dynamic-range/starter.py +2 -0
  7780. mlsys/tasks/rwb-e5m2-vs-e4m3-dynamic-range/task.md +66 -0
  7781. mlsys/tasks/rwb-enumerate-accepted-strings-up-to-length-l/check.py +35 -0
  7782. mlsys/tasks/rwb-enumerate-accepted-strings-up-to-length-l/gen_fixtures.py +1 -0
  7783. mlsys/tasks/rwb-enumerate-accepted-strings-up-to-length-l/meta.json +22 -0
  7784. mlsys/tasks/rwb-enumerate-accepted-strings-up-to-length-l/solution_ref.py +12 -0
  7785. mlsys/tasks/rwb-enumerate-accepted-strings-up-to-length-l/starter.py +5 -0
  7786. mlsys/tasks/rwb-enumerate-accepted-strings-up-to-length-l/task.md +52 -0
  7787. mlsys/tasks/rwb-expected-acceptance-1-tv-p-q/check.py +63 -0
  7788. mlsys/tasks/rwb-expected-acceptance-1-tv-p-q/fixtures/p.npy +0 -0
  7789. mlsys/tasks/rwb-expected-acceptance-1-tv-p-q/fixtures/q.npy +0 -0
  7790. mlsys/tasks/rwb-expected-acceptance-1-tv-p-q/gen_fixtures.py +39 -0
  7791. mlsys/tasks/rwb-expected-acceptance-1-tv-p-q/meta.json +25 -0
  7792. mlsys/tasks/rwb-expected-acceptance-1-tv-p-q/solution_ref.py +15 -0
  7793. mlsys/tasks/rwb-expected-acceptance-1-tv-p-q/starter.py +13 -0
  7794. mlsys/tasks/rwb-expected-acceptance-1-tv-p-q/task.md +80 -0
  7795. mlsys/tasks/rwb-first-fit-decreasing-bin-packing-into-fixed-bins/check.py +72 -0
  7796. mlsys/tasks/rwb-first-fit-decreasing-bin-packing-into-fixed-bins/gen_fixtures.py +1 -0
  7797. mlsys/tasks/rwb-first-fit-decreasing-bin-packing-into-fixed-bins/meta.json +22 -0
  7798. mlsys/tasks/rwb-first-fit-decreasing-bin-packing-into-fixed-bins/solution_ref.py +38 -0
  7799. mlsys/tasks/rwb-first-fit-decreasing-bin-packing-into-fixed-bins/starter.py +18 -0
  7800. mlsys/tasks/rwb-first-fit-decreasing-bin-packing-into-fixed-bins/task.md +50 -0
  7801. mlsys/tasks/rwb-fixed-slot-np-n-batched-decode-scheduler/check.py +77 -0
  7802. mlsys/tasks/rwb-fixed-slot-np-n-batched-decode-scheduler/fixtures/arrivals.npy +0 -0
  7803. mlsys/tasks/rwb-fixed-slot-np-n-batched-decode-scheduler/fixtures/gen_lens.npy +0 -0
  7804. mlsys/tasks/rwb-fixed-slot-np-n-batched-decode-scheduler/gen_fixtures.py +23 -0
  7805. mlsys/tasks/rwb-fixed-slot-np-n-batched-decode-scheduler/meta.json +25 -0
  7806. mlsys/tasks/rwb-fixed-slot-np-n-batched-decode-scheduler/solution_ref.py +72 -0
  7807. mlsys/tasks/rwb-fixed-slot-np-n-batched-decode-scheduler/starter.py +30 -0
  7808. mlsys/tasks/rwb-fixed-slot-np-n-batched-decode-scheduler/task.md +65 -0
  7809. mlsys/tasks/rwb-fork-branch-continuation-savings/check.py +108 -0
  7810. mlsys/tasks/rwb-fork-branch-continuation-savings/gen_fixtures.py +1 -0
  7811. mlsys/tasks/rwb-fork-branch-continuation-savings/meta.json +22 -0
  7812. mlsys/tasks/rwb-fork-branch-continuation-savings/solution_ref.py +44 -0
  7813. mlsys/tasks/rwb-fork-branch-continuation-savings/starter.py +16 -0
  7814. mlsys/tasks/rwb-fork-branch-continuation-savings/task.md +74 -0
  7815. mlsys/tasks/rwb-fp16-vs-fp32-accumulation-error/check.py +80 -0
  7816. mlsys/tasks/rwb-fp16-vs-fp32-accumulation-error/fixtures/k.npy +0 -0
  7817. mlsys/tasks/rwb-fp16-vs-fp32-accumulation-error/fixtures/q.npy +0 -0
  7818. mlsys/tasks/rwb-fp16-vs-fp32-accumulation-error/fixtures/v.npy +0 -0
  7819. mlsys/tasks/rwb-fp16-vs-fp32-accumulation-error/gen_fixtures.py +26 -0
  7820. mlsys/tasks/rwb-fp16-vs-fp32-accumulation-error/meta.json +26 -0
  7821. mlsys/tasks/rwb-fp16-vs-fp32-accumulation-error/solution_ref.py +61 -0
  7822. mlsys/tasks/rwb-fp16-vs-fp32-accumulation-error/starter.py +17 -0
  7823. mlsys/tasks/rwb-fp16-vs-fp32-accumulation-error/task.md +101 -0
  7824. mlsys/tasks/rwb-goodput-colocated-vs-disaggregated-under-slo/check.py +61 -0
  7825. mlsys/tasks/rwb-goodput-colocated-vs-disaggregated-under-slo/gen_fixtures.py +1 -0
  7826. mlsys/tasks/rwb-goodput-colocated-vs-disaggregated-under-slo/meta.json +22 -0
  7827. mlsys/tasks/rwb-goodput-colocated-vs-disaggregated-under-slo/solution_ref.py +71 -0
  7828. mlsys/tasks/rwb-goodput-colocated-vs-disaggregated-under-slo/starter.py +17 -0
  7829. mlsys/tasks/rwb-goodput-colocated-vs-disaggregated-under-slo/task.md +81 -0
  7830. mlsys/tasks/rwb-gqa-mqa-broadcast-attention/check.py +65 -0
  7831. mlsys/tasks/rwb-gqa-mqa-broadcast-attention/gen_fixtures.py +1 -0
  7832. mlsys/tasks/rwb-gqa-mqa-broadcast-attention/meta.json +22 -0
  7833. mlsys/tasks/rwb-gqa-mqa-broadcast-attention/solution_ref.py +20 -0
  7834. mlsys/tasks/rwb-gqa-mqa-broadcast-attention/starter.py +16 -0
  7835. mlsys/tasks/rwb-gqa-mqa-broadcast-attention/task.md +74 -0
  7836. mlsys/tasks/rwb-group-batch-rows-into-adapter-segments/check.py +30 -0
  7837. mlsys/tasks/rwb-group-batch-rows-into-adapter-segments/gen_fixtures.py +1 -0
  7838. mlsys/tasks/rwb-group-batch-rows-into-adapter-segments/meta.json +22 -0
  7839. mlsys/tasks/rwb-group-batch-rows-into-adapter-segments/solution_ref.py +27 -0
  7840. mlsys/tasks/rwb-group-batch-rows-into-adapter-segments/starter.py +4 -0
  7841. mlsys/tasks/rwb-group-batch-rows-into-adapter-segments/task.md +69 -0
  7842. mlsys/tasks/rwb-internal-fragmentation-paged-vs-contiguous-pre-alloc/check.py +57 -0
  7843. mlsys/tasks/rwb-internal-fragmentation-paged-vs-contiguous-pre-alloc/gen_fixtures.py +1 -0
  7844. mlsys/tasks/rwb-internal-fragmentation-paged-vs-contiguous-pre-alloc/meta.json +27 -0
  7845. mlsys/tasks/rwb-internal-fragmentation-paged-vs-contiguous-pre-alloc/solution_ref.py +14 -0
  7846. mlsys/tasks/rwb-internal-fragmentation-paged-vs-contiguous-pre-alloc/starter.py +10 -0
  7847. mlsys/tasks/rwb-internal-fragmentation-paged-vs-contiguous-pre-alloc/task.md +73 -0
  7848. mlsys/tasks/rwb-json-subset-pushdown-automaton-mask/check.py +154 -0
  7849. mlsys/tasks/rwb-json-subset-pushdown-automaton-mask/fixtures/lengths.npy +0 -0
  7850. mlsys/tasks/rwb-json-subset-pushdown-automaton-mask/fixtures/prefixes.npy +0 -0
  7851. mlsys/tasks/rwb-json-subset-pushdown-automaton-mask/gen_fixtures.py +90 -0
  7852. mlsys/tasks/rwb-json-subset-pushdown-automaton-mask/meta.json +25 -0
  7853. mlsys/tasks/rwb-json-subset-pushdown-automaton-mask/solution_ref.py +140 -0
  7854. mlsys/tasks/rwb-json-subset-pushdown-automaton-mask/starter.py +11 -0
  7855. mlsys/tasks/rwb-json-subset-pushdown-automaton-mask/task.md +78 -0
  7856. mlsys/tasks/rwb-k-4-vs-k-8-waste-tradeoff/check.py +85 -0
  7857. mlsys/tasks/rwb-k-4-vs-k-8-waste-tradeoff/fixtures/counts.npy +0 -0
  7858. mlsys/tasks/rwb-k-4-vs-k-8-waste-tradeoff/fixtures/sizes.npy +0 -0
  7859. mlsys/tasks/rwb-k-4-vs-k-8-waste-tradeoff/gen_fixtures.py +32 -0
  7860. mlsys/tasks/rwb-k-4-vs-k-8-waste-tradeoff/meta.json +25 -0
  7861. mlsys/tasks/rwb-k-4-vs-k-8-waste-tradeoff/solution_ref.py +50 -0
  7862. mlsys/tasks/rwb-k-4-vs-k-8-waste-tradeoff/starter.py +26 -0
  7863. mlsys/tasks/rwb-k-4-vs-k-8-waste-tradeoff/task.md +88 -0
  7864. mlsys/tasks/rwb-kv-cache-transfer-bytes-for-a-request/check.py +25 -0
  7865. mlsys/tasks/rwb-kv-cache-transfer-bytes-for-a-request/gen_fixtures.py +1 -0
  7866. mlsys/tasks/rwb-kv-cache-transfer-bytes-for-a-request/meta.json +22 -0
  7867. mlsys/tasks/rwb-kv-cache-transfer-bytes-for-a-request/solution_ref.py +12 -0
  7868. mlsys/tasks/rwb-kv-cache-transfer-bytes-for-a-request/starter.py +2 -0
  7869. mlsys/tasks/rwb-kv-cache-transfer-bytes-for-a-request/task.md +52 -0
  7870. mlsys/tasks/rwb-kv-memory-and-max-concurrency-fp8-vs-fp16/check.py +75 -0
  7871. mlsys/tasks/rwb-kv-memory-and-max-concurrency-fp8-vs-fp16/gen_fixtures.py +1 -0
  7872. mlsys/tasks/rwb-kv-memory-and-max-concurrency-fp8-vs-fp16/meta.json +22 -0
  7873. mlsys/tasks/rwb-kv-memory-and-max-concurrency-fp8-vs-fp16/solution_ref.py +15 -0
  7874. mlsys/tasks/rwb-kv-memory-and-max-concurrency-fp8-vs-fp16/starter.py +14 -0
  7875. mlsys/tasks/rwb-kv-memory-and-max-concurrency-fp8-vs-fp16/task.md +69 -0
  7876. mlsys/tasks/rwb-kv-memory-for-n-contiguous-slots/check.py +38 -0
  7877. mlsys/tasks/rwb-kv-memory-for-n-contiguous-slots/gen_fixtures.py +1 -0
  7878. mlsys/tasks/rwb-kv-memory-for-n-contiguous-slots/meta.json +22 -0
  7879. mlsys/tasks/rwb-kv-memory-for-n-contiguous-slots/solution_ref.py +21 -0
  7880. mlsys/tasks/rwb-kv-memory-for-n-contiguous-slots/starter.py +5 -0
  7881. mlsys/tasks/rwb-kv-memory-for-n-contiguous-slots/task.md +66 -0
  7882. mlsys/tasks/rwb-launch-overhead-step-time-model/check.py +40 -0
  7883. mlsys/tasks/rwb-launch-overhead-step-time-model/gen_fixtures.py +1 -0
  7884. mlsys/tasks/rwb-launch-overhead-step-time-model/meta.json +22 -0
  7885. mlsys/tasks/rwb-launch-overhead-step-time-model/solution_ref.py +24 -0
  7886. mlsys/tasks/rwb-launch-overhead-step-time-model/starter.py +21 -0
  7887. mlsys/tasks/rwb-launch-overhead-step-time-model/task.md +73 -0
  7888. mlsys/tasks/rwb-longest-cached-prefix-length-for-a-new-request/check.py +81 -0
  7889. mlsys/tasks/rwb-longest-cached-prefix-length-for-a-new-request/fixtures/cached_hashes.npy +0 -0
  7890. mlsys/tasks/rwb-longest-cached-prefix-length-for-a-new-request/fixtures/new_tokens.npy +0 -0
  7891. mlsys/tasks/rwb-longest-cached-prefix-length-for-a-new-request/gen_fixtures.py +65 -0
  7892. mlsys/tasks/rwb-longest-cached-prefix-length-for-a-new-request/meta.json +25 -0
  7893. mlsys/tasks/rwb-longest-cached-prefix-length-for-a-new-request/solution_ref.py +45 -0
  7894. mlsys/tasks/rwb-longest-cached-prefix-length-for-a-new-request/starter.py +35 -0
  7895. mlsys/tasks/rwb-longest-cached-prefix-length-for-a-new-request/task.md +83 -0
  7896. mlsys/tasks/rwb-longest-match-length-of-a-query-against-the-tree/check.py +76 -0
  7897. mlsys/tasks/rwb-longest-match-length-of-a-query-against-the-tree/gen_fixtures.py +65 -0
  7898. mlsys/tasks/rwb-longest-match-length-of-a-query-against-the-tree/meta.json +22 -0
  7899. mlsys/tasks/rwb-longest-match-length-of-a-query-against-the-tree/solution_ref.py +11 -0
  7900. mlsys/tasks/rwb-longest-match-length-of-a-query-against-the-tree/starter.py +3 -0
  7901. mlsys/tasks/rwb-longest-match-length-of-a-query-against-the-tree/task.md +62 -0
  7902. mlsys/tasks/rwb-lora-flops-factored-vs-merged/check.py +42 -0
  7903. mlsys/tasks/rwb-lora-flops-factored-vs-merged/gen_fixtures.py +1 -0
  7904. mlsys/tasks/rwb-lora-flops-factored-vs-merged/meta.json +22 -0
  7905. mlsys/tasks/rwb-lora-flops-factored-vs-merged/solution_ref.py +18 -0
  7906. mlsys/tasks/rwb-lora-flops-factored-vs-merged/starter.py +2 -0
  7907. mlsys/tasks/rwb-lora-flops-factored-vs-merged/task.md +88 -0
  7908. mlsys/tasks/rwb-lru-eviction-on-the-radix-tree-under-capacity/check.py +144 -0
  7909. mlsys/tasks/rwb-lru-eviction-on-the-radix-tree-under-capacity/gen_fixtures.py +1 -0
  7910. mlsys/tasks/rwb-lru-eviction-on-the-radix-tree-under-capacity/meta.json +22 -0
  7911. mlsys/tasks/rwb-lru-eviction-on-the-radix-tree-under-capacity/solution_ref.py +42 -0
  7912. mlsys/tasks/rwb-lru-eviction-on-the-radix-tree-under-capacity/starter.py +20 -0
  7913. mlsys/tasks/rwb-lru-eviction-on-the-radix-tree-under-capacity/task.md +102 -0
  7914. mlsys/tasks/rwb-mask-density-over-a-constrained-decode/check.py +63 -0
  7915. mlsys/tasks/rwb-mask-density-over-a-constrained-decode/gen_fixtures.py +1 -0
  7916. mlsys/tasks/rwb-mask-density-over-a-constrained-decode/meta.json +22 -0
  7917. mlsys/tasks/rwb-mask-density-over-a-constrained-decode/solution_ref.py +11 -0
  7918. mlsys/tasks/rwb-mask-density-over-a-constrained-decode/starter.py +4 -0
  7919. mlsys/tasks/rwb-mask-density-over-a-constrained-decode/task.md +79 -0
  7920. mlsys/tasks/rwb-max-prefill-tokens-in-any-step-itl-proxy/check.py +89 -0
  7921. mlsys/tasks/rwb-max-prefill-tokens-in-any-step-itl-proxy/gen_fixtures.py +1 -0
  7922. mlsys/tasks/rwb-max-prefill-tokens-in-any-step-itl-proxy/meta.json +22 -0
  7923. mlsys/tasks/rwb-max-prefill-tokens-in-any-step-itl-proxy/solution_ref.py +52 -0
  7924. mlsys/tasks/rwb-max-prefill-tokens-in-any-step-itl-proxy/starter.py +25 -0
  7925. mlsys/tasks/rwb-max-prefill-tokens-in-any-step-itl-proxy/task.md +84 -0
  7926. mlsys/tasks/rwb-mean-added-queue-latency/check.py +82 -0
  7927. mlsys/tasks/rwb-mean-added-queue-latency/fixtures/arrivals.npy +0 -0
  7928. mlsys/tasks/rwb-mean-added-queue-latency/gen_fixtures.py +29 -0
  7929. mlsys/tasks/rwb-mean-added-queue-latency/meta.json +24 -0
  7930. mlsys/tasks/rwb-mean-added-queue-latency/solution_ref.py +37 -0
  7931. mlsys/tasks/rwb-mean-added-queue-latency/starter.py +20 -0
  7932. mlsys/tasks/rwb-mean-added-queue-latency/task.md +79 -0
  7933. mlsys/tasks/rwb-measure-padding-waste-of-static-batching/check.py +34 -0
  7934. mlsys/tasks/rwb-measure-padding-waste-of-static-batching/fixtures/batch_ids.npy +0 -0
  7935. mlsys/tasks/rwb-measure-padding-waste-of-static-batching/fixtures/lens.npy +0 -0
  7936. mlsys/tasks/rwb-measure-padding-waste-of-static-batching/gen_fixtures.py +34 -0
  7937. mlsys/tasks/rwb-measure-padding-waste-of-static-batching/meta.json +25 -0
  7938. mlsys/tasks/rwb-measure-padding-waste-of-static-batching/solution_ref.py +32 -0
  7939. mlsys/tasks/rwb-measure-padding-waste-of-static-batching/starter.py +15 -0
  7940. mlsys/tasks/rwb-measure-padding-waste-of-static-batching/task.md +63 -0
  7941. mlsys/tasks/rwb-memory-n-adapters-vs-n-full-models/check.py +39 -0
  7942. mlsys/tasks/rwb-memory-n-adapters-vs-n-full-models/gen_fixtures.py +1 -0
  7943. mlsys/tasks/rwb-memory-n-adapters-vs-n-full-models/meta.json +22 -0
  7944. mlsys/tasks/rwb-memory-n-adapters-vs-n-full-models/solution_ref.py +13 -0
  7945. mlsys/tasks/rwb-memory-n-adapters-vs-n-full-models/starter.py +10 -0
  7946. mlsys/tasks/rwb-memory-n-adapters-vs-n-full-models/task.md +74 -0
  7947. mlsys/tasks/rwb-min-delay-cap-meeting-a-p99-latency-slo/check.py +96 -0
  7948. mlsys/tasks/rwb-min-delay-cap-meeting-a-p99-latency-slo/fixtures/arrivals.npy +0 -0
  7949. mlsys/tasks/rwb-min-delay-cap-meeting-a-p99-latency-slo/gen_fixtures.py +24 -0
  7950. mlsys/tasks/rwb-min-delay-cap-meeting-a-p99-latency-slo/meta.json +24 -0
  7951. mlsys/tasks/rwb-min-delay-cap-meeting-a-p99-latency-slo/solution_ref.py +86 -0
  7952. mlsys/tasks/rwb-min-delay-cap-meeting-a-p99-latency-slo/starter.py +26 -0
  7953. mlsys/tasks/rwb-min-delay-cap-meeting-a-p99-latency-slo/task.md +89 -0
  7954. mlsys/tasks/rwb-mixed-rank-sgmv/check.py +66 -0
  7955. mlsys/tasks/rwb-mixed-rank-sgmv/gen_fixtures.py +1 -0
  7956. mlsys/tasks/rwb-mixed-rank-sgmv/meta.json +22 -0
  7957. mlsys/tasks/rwb-mixed-rank-sgmv/solution_ref.py +10 -0
  7958. mlsys/tasks/rwb-mixed-rank-sgmv/starter.py +4 -0
  7959. mlsys/tasks/rwb-mixed-rank-sgmv/task.md +74 -0
  7960. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/check.py +56 -0
  7961. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/fixtures/draft_token_ids.npy +0 -0
  7962. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/fixtures/p.npy +0 -0
  7963. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/fixtures/q.npy +0 -0
  7964. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/fixtures/u_stream.npy +0 -0
  7965. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/gen_fixtures.py +49 -0
  7966. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/meta.json +27 -0
  7967. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/solution_ref.py +34 -0
  7968. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/starter.py +21 -0
  7969. mlsys/tasks/rwb-modified-rejection-sampling-accept-step/task.md +87 -0
  7970. mlsys/tasks/rwb-multi-token-block-verify-with-bonus-sample/check.py +78 -0
  7971. mlsys/tasks/rwb-multi-token-block-verify-with-bonus-sample/gen_fixtures.py +1 -0
  7972. mlsys/tasks/rwb-multi-token-block-verify-with-bonus-sample/meta.json +22 -0
  7973. mlsys/tasks/rwb-multi-token-block-verify-with-bonus-sample/solution_ref.py +36 -0
  7974. mlsys/tasks/rwb-multi-token-block-verify-with-bonus-sample/starter.py +2 -0
  7975. mlsys/tasks/rwb-multi-token-block-verify-with-bonus-sample/task.md +68 -0
  7976. mlsys/tasks/rwb-n-gram-prompt-lookup-proposer/check.py +47 -0
  7977. mlsys/tasks/rwb-n-gram-prompt-lookup-proposer/fixtures/sequence.npy +0 -0
  7978. mlsys/tasks/rwb-n-gram-prompt-lookup-proposer/gen_fixtures.py +47 -0
  7979. mlsys/tasks/rwb-n-gram-prompt-lookup-proposer/meta.json +24 -0
  7980. mlsys/tasks/rwb-n-gram-prompt-lookup-proposer/solution_ref.py +33 -0
  7981. mlsys/tasks/rwb-n-gram-prompt-lookup-proposer/starter.py +16 -0
  7982. mlsys/tasks/rwb-n-gram-prompt-lookup-proposer/task.md +69 -0
  7983. mlsys/tasks/rwb-naive-exp-sum-merge-vs-lse-merge-stability/check.py +99 -0
  7984. mlsys/tasks/rwb-naive-exp-sum-merge-vs-lse-merge-stability/gen_fixtures.py +1 -0
  7985. mlsys/tasks/rwb-naive-exp-sum-merge-vs-lse-merge-stability/meta.json +28 -0
  7986. mlsys/tasks/rwb-naive-exp-sum-merge-vs-lse-merge-stability/solution_ref.py +69 -0
  7987. mlsys/tasks/rwb-naive-exp-sum-merge-vs-lse-merge-stability/starter.py +20 -0
  7988. mlsys/tasks/rwb-naive-exp-sum-merge-vs-lse-merge-stability/task.md +81 -0
  7989. mlsys/tasks/rwb-naive-sdpa-reference/check.py +29 -0
  7990. mlsys/tasks/rwb-naive-sdpa-reference/gen_fixtures.py +1 -0
  7991. mlsys/tasks/rwb-naive-sdpa-reference/meta.json +22 -0
  7992. mlsys/tasks/rwb-naive-sdpa-reference/solution_ref.py +9 -0
  7993. mlsys/tasks/rwb-naive-sdpa-reference/starter.py +4 -0
  7994. mlsys/tasks/rwb-naive-sdpa-reference/task.md +47 -0
  7995. mlsys/tasks/rwb-order-invariance-of-the-merge/check.py +66 -0
  7996. mlsys/tasks/rwb-order-invariance-of-the-merge/gen_fixtures.py +1 -0
  7997. mlsys/tasks/rwb-order-invariance-of-the-merge/meta.json +27 -0
  7998. mlsys/tasks/rwb-order-invariance-of-the-merge/solution_ref.py +16 -0
  7999. mlsys/tasks/rwb-order-invariance-of-the-merge/starter.py +4 -0
  8000. mlsys/tasks/rwb-order-invariance-of-the-merge/task.md +67 -0
  8001. mlsys/tasks/rwb-p-d-worker-ratio-for-a-balanced-pipeline/check.py +33 -0
  8002. mlsys/tasks/rwb-p-d-worker-ratio-for-a-balanced-pipeline/gen_fixtures.py +1 -0
  8003. mlsys/tasks/rwb-p-d-worker-ratio-for-a-balanced-pipeline/meta.json +22 -0
  8004. mlsys/tasks/rwb-p-d-worker-ratio-for-a-balanced-pipeline/solution_ref.py +9 -0
  8005. mlsys/tasks/rwb-p-d-worker-ratio-for-a-balanced-pipeline/starter.py +2 -0
  8006. mlsys/tasks/rwb-p-d-worker-ratio-for-a-balanced-pipeline/task.md +68 -0
  8007. mlsys/tasks/rwb-pack-a-llama-batch-tokens-pos-seq-id/check.py +87 -0
  8008. mlsys/tasks/rwb-pack-a-llama-batch-tokens-pos-seq-id/gen_fixtures.py +1 -0
  8009. mlsys/tasks/rwb-pack-a-llama-batch-tokens-pos-seq-id/meta.json +22 -0
  8010. mlsys/tasks/rwb-pack-a-llama-batch-tokens-pos-seq-id/solution_ref.py +21 -0
  8011. mlsys/tasks/rwb-pack-a-llama-batch-tokens-pos-seq-id/starter.py +3 -0
  8012. mlsys/tasks/rwb-pack-a-llama-batch-tokens-pos-seq-id/task.md +94 -0
  8013. mlsys/tasks/rwb-padding-waste-eliminated-by-packing/check.py +30 -0
  8014. mlsys/tasks/rwb-padding-waste-eliminated-by-packing/gen_fixtures.py +1 -0
  8015. mlsys/tasks/rwb-padding-waste-eliminated-by-packing/meta.json +22 -0
  8016. mlsys/tasks/rwb-padding-waste-eliminated-by-packing/solution_ref.py +27 -0
  8017. mlsys/tasks/rwb-padding-waste-eliminated-by-packing/starter.py +5 -0
  8018. mlsys/tasks/rwb-padding-waste-eliminated-by-packing/task.md +34 -0
  8019. mlsys/tasks/rwb-paged-block-allocator-over-an-arrival-free-trace/check.py +104 -0
  8020. mlsys/tasks/rwb-paged-block-allocator-over-an-arrival-free-trace/fixtures/arrive_t.npy +0 -0
  8021. mlsys/tasks/rwb-paged-block-allocator-over-an-arrival-free-trace/fixtures/depart_t.npy +0 -0
  8022. mlsys/tasks/rwb-paged-block-allocator-over-an-arrival-free-trace/fixtures/seq_len.npy +0 -0
  8023. mlsys/tasks/rwb-paged-block-allocator-over-an-arrival-free-trace/gen_fixtures.py +38 -0
  8024. mlsys/tasks/rwb-paged-block-allocator-over-an-arrival-free-trace/meta.json +26 -0
  8025. mlsys/tasks/rwb-paged-block-allocator-over-an-arrival-free-trace/solution_ref.py +56 -0
  8026. mlsys/tasks/rwb-paged-block-allocator-over-an-arrival-free-trace/starter.py +32 -0
  8027. mlsys/tasks/rwb-paged-block-allocator-over-an-arrival-free-trace/task.md +100 -0
  8028. mlsys/tasks/rwb-peak-aggregate-kv-transfer-bandwidth/check.py +103 -0
  8029. mlsys/tasks/rwb-peak-aggregate-kv-transfer-bandwidth/gen_fixtures.py +1 -0
  8030. mlsys/tasks/rwb-peak-aggregate-kv-transfer-bandwidth/meta.json +22 -0
  8031. mlsys/tasks/rwb-peak-aggregate-kv-transfer-bandwidth/solution_ref.py +33 -0
  8032. mlsys/tasks/rwb-peak-aggregate-kv-transfer-bandwidth/starter.py +19 -0
  8033. mlsys/tasks/rwb-peak-aggregate-kv-transfer-bandwidth/task.md +75 -0
  8034. mlsys/tasks/rwb-per-head-absmax-scaling/check.py +99 -0
  8035. mlsys/tasks/rwb-per-head-absmax-scaling/gen_fixtures.py +1 -0
  8036. mlsys/tasks/rwb-per-head-absmax-scaling/meta.json +22 -0
  8037. mlsys/tasks/rwb-per-head-absmax-scaling/solution_ref.py +50 -0
  8038. mlsys/tasks/rwb-per-head-absmax-scaling/starter.py +18 -0
  8039. mlsys/tasks/rwb-per-head-absmax-scaling/task.md +77 -0
  8040. mlsys/tasks/rwb-per-tensor-kv-reconstruction-mse/check.py +60 -0
  8041. mlsys/tasks/rwb-per-tensor-kv-reconstruction-mse/fixtures/k.npy +0 -0
  8042. mlsys/tasks/rwb-per-tensor-kv-reconstruction-mse/fixtures/v.npy +0 -0
  8043. mlsys/tasks/rwb-per-tensor-kv-reconstruction-mse/gen_fixtures.py +33 -0
  8044. mlsys/tasks/rwb-per-tensor-kv-reconstruction-mse/meta.json +25 -0
  8045. mlsys/tasks/rwb-per-tensor-kv-reconstruction-mse/solution_ref.py +43 -0
  8046. mlsys/tasks/rwb-per-tensor-kv-reconstruction-mse/starter.py +13 -0
  8047. mlsys/tasks/rwb-per-tensor-kv-reconstruction-mse/task.md +68 -0
  8048. mlsys/tasks/rwb-per-tensor-vs-per-head-attention-output-delta/check.py +77 -0
  8049. mlsys/tasks/rwb-per-tensor-vs-per-head-attention-output-delta/fixtures/k.npy +0 -0
  8050. mlsys/tasks/rwb-per-tensor-vs-per-head-attention-output-delta/fixtures/q.npy +0 -0
  8051. mlsys/tasks/rwb-per-tensor-vs-per-head-attention-output-delta/fixtures/v.npy +0 -0
  8052. mlsys/tasks/rwb-per-tensor-vs-per-head-attention-output-delta/gen_fixtures.py +35 -0
  8053. mlsys/tasks/rwb-per-tensor-vs-per-head-attention-output-delta/meta.json +26 -0
  8054. mlsys/tasks/rwb-per-tensor-vs-per-head-attention-output-delta/solution_ref.py +61 -0
  8055. mlsys/tasks/rwb-per-tensor-vs-per-head-attention-output-delta/starter.py +19 -0
  8056. mlsys/tasks/rwb-per-tensor-vs-per-head-attention-output-delta/task.md +87 -0
  8057. mlsys/tasks/rwb-preferred-batch-size-a-vs-b/check.py +106 -0
  8058. mlsys/tasks/rwb-preferred-batch-size-a-vs-b/fixtures/arrivals.npy +0 -0
  8059. mlsys/tasks/rwb-preferred-batch-size-a-vs-b/gen_fixtures.py +30 -0
  8060. mlsys/tasks/rwb-preferred-batch-size-a-vs-b/meta.json +24 -0
  8061. mlsys/tasks/rwb-preferred-batch-size-a-vs-b/solution_ref.py +85 -0
  8062. mlsys/tasks/rwb-preferred-batch-size-a-vs-b/starter.py +25 -0
  8063. mlsys/tasks/rwb-preferred-batch-size-a-vs-b/task.md +82 -0
  8064. mlsys/tasks/rwb-prefill-chunk-count-for-a-fixed-budget/check.py +32 -0
  8065. mlsys/tasks/rwb-prefill-chunk-count-for-a-fixed-budget/fixtures/prompt_lens.npy +0 -0
  8066. mlsys/tasks/rwb-prefill-chunk-count-for-a-fixed-budget/gen_fixtures.py +24 -0
  8067. mlsys/tasks/rwb-prefill-chunk-count-for-a-fixed-budget/meta.json +24 -0
  8068. mlsys/tasks/rwb-prefill-chunk-count-for-a-fixed-budget/solution_ref.py +9 -0
  8069. mlsys/tasks/rwb-prefill-chunk-count-for-a-fixed-budget/starter.py +9 -0
  8070. mlsys/tasks/rwb-prefill-chunk-count-for-a-fixed-budget/task.md +57 -0
  8071. mlsys/tasks/rwb-prefill-flops-saved-by-apc/check.py +30 -0
  8072. mlsys/tasks/rwb-prefill-flops-saved-by-apc/gen_fixtures.py +1 -0
  8073. mlsys/tasks/rwb-prefill-flops-saved-by-apc/meta.json +22 -0
  8074. mlsys/tasks/rwb-prefill-flops-saved-by-apc/solution_ref.py +21 -0
  8075. mlsys/tasks/rwb-prefill-flops-saved-by-apc/starter.py +4 -0
  8076. mlsys/tasks/rwb-prefill-flops-saved-by-apc/task.md +47 -0
  8077. mlsys/tasks/rwb-prefix-cache-hit-rate-over-a-request-stream/check.py +100 -0
  8078. mlsys/tasks/rwb-prefix-cache-hit-rate-over-a-request-stream/gen_fixtures.py +1 -0
  8079. mlsys/tasks/rwb-prefix-cache-hit-rate-over-a-request-stream/meta.json +22 -0
  8080. mlsys/tasks/rwb-prefix-cache-hit-rate-over-a-request-stream/solution_ref.py +41 -0
  8081. mlsys/tasks/rwb-prefix-cache-hit-rate-over-a-request-stream/starter.py +20 -0
  8082. mlsys/tasks/rwb-prefix-cache-hit-rate-over-a-request-stream/task.md +72 -0
  8083. mlsys/tasks/rwb-radix-token-level-vs-block-level-reuse/check.py +109 -0
  8084. mlsys/tasks/rwb-radix-token-level-vs-block-level-reuse/gen_fixtures.py +1 -0
  8085. mlsys/tasks/rwb-radix-token-level-vs-block-level-reuse/meta.json +22 -0
  8086. mlsys/tasks/rwb-radix-token-level-vs-block-level-reuse/solution_ref.py +20 -0
  8087. mlsys/tasks/rwb-radix-token-level-vs-block-level-reuse/starter.py +15 -0
  8088. mlsys/tasks/rwb-radix-token-level-vs-block-level-reuse/task.md +81 -0
  8089. mlsys/tasks/rwb-radix-tree-insert-with-node-split/check.py +77 -0
  8090. mlsys/tasks/rwb-radix-tree-insert-with-node-split/fixtures/run_id.npy +0 -0
  8091. mlsys/tasks/rwb-radix-tree-insert-with-node-split/fixtures/seq_lens.npy +0 -0
  8092. mlsys/tasks/rwb-radix-tree-insert-with-node-split/fixtures/seqs.npy +0 -0
  8093. mlsys/tasks/rwb-radix-tree-insert-with-node-split/gen_fixtures.py +67 -0
  8094. mlsys/tasks/rwb-radix-tree-insert-with-node-split/meta.json +26 -0
  8095. mlsys/tasks/rwb-radix-tree-insert-with-node-split/solution_ref.py +53 -0
  8096. mlsys/tasks/rwb-radix-tree-insert-with-node-split/starter.py +7 -0
  8097. mlsys/tasks/rwb-radix-tree-insert-with-node-split/task.md +77 -0
  8098. mlsys/tasks/rwb-rank-r-lora-vs-full-delta-approximation/check.py +67 -0
  8099. mlsys/tasks/rwb-rank-r-lora-vs-full-delta-approximation/fixtures/A0.npy +0 -0
  8100. mlsys/tasks/rwb-rank-r-lora-vs-full-delta-approximation/fixtures/B0.npy +0 -0
  8101. mlsys/tasks/rwb-rank-r-lora-vs-full-delta-approximation/fixtures/W.npy +0 -0
  8102. mlsys/tasks/rwb-rank-r-lora-vs-full-delta-approximation/gen_fixtures.py +35 -0
  8103. mlsys/tasks/rwb-rank-r-lora-vs-full-delta-approximation/meta.json +31 -0
  8104. mlsys/tasks/rwb-rank-r-lora-vs-full-delta-approximation/solution_ref.py +47 -0
  8105. mlsys/tasks/rwb-rank-r-lora-vs-full-delta-approximation/starter.py +28 -0
  8106. mlsys/tasks/rwb-rank-r-lora-vs-full-delta-approximation/task.md +80 -0
  8107. mlsys/tasks/rwb-reconstruct-global-attention-weights-from-per-chunk-lse/check.py +60 -0
  8108. mlsys/tasks/rwb-reconstruct-global-attention-weights-from-per-chunk-lse/fixtures/chunk_lse.npy +0 -0
  8109. mlsys/tasks/rwb-reconstruct-global-attention-weights-from-per-chunk-lse/fixtures/chunk_partial_out.npy +0 -0
  8110. mlsys/tasks/rwb-reconstruct-global-attention-weights-from-per-chunk-lse/fixtures/chunk_scores.npy +0 -0
  8111. mlsys/tasks/rwb-reconstruct-global-attention-weights-from-per-chunk-lse/gen_fixtures.py +44 -0
  8112. mlsys/tasks/rwb-reconstruct-global-attention-weights-from-per-chunk-lse/meta.json +26 -0
  8113. mlsys/tasks/rwb-reconstruct-global-attention-weights-from-per-chunk-lse/solution_ref.py +33 -0
  8114. mlsys/tasks/rwb-reconstruct-global-attention-weights-from-per-chunk-lse/starter.py +30 -0
  8115. mlsys/tasks/rwb-reconstruct-global-attention-weights-from-per-chunk-lse/task.md +95 -0
  8116. mlsys/tasks/rwb-regex-fsm-allowed-token-mask/check.py +80 -0
  8117. mlsys/tasks/rwb-regex-fsm-allowed-token-mask/gen_fixtures.py +2 -0
  8118. mlsys/tasks/rwb-regex-fsm-allowed-token-mask/meta.json +22 -0
  8119. mlsys/tasks/rwb-regex-fsm-allowed-token-mask/solution_ref.py +41 -0
  8120. mlsys/tasks/rwb-regex-fsm-allowed-token-mask/starter.py +8 -0
  8121. mlsys/tasks/rwb-regex-fsm-allowed-token-mask/task.md +78 -0
  8122. mlsys/tasks/rwb-reset-rope-position-ids-at-boundaries/check.py +63 -0
  8123. mlsys/tasks/rwb-reset-rope-position-ids-at-boundaries/gen_fixtures.py +1 -0
  8124. mlsys/tasks/rwb-reset-rope-position-ids-at-boundaries/meta.json +22 -0
  8125. mlsys/tasks/rwb-reset-rope-position-ids-at-boundaries/solution_ref.py +40 -0
  8126. mlsys/tasks/rwb-reset-rope-position-ids-at-boundaries/starter.py +10 -0
  8127. mlsys/tasks/rwb-reset-rope-position-ids-at-boundaries/task.md +83 -0
  8128. mlsys/tasks/rwb-round-a-batch-up-to-the-nearest-captured-bucket/check.py +34 -0
  8129. mlsys/tasks/rwb-round-a-batch-up-to-the-nearest-captured-bucket/gen_fixtures.py +1 -0
  8130. mlsys/tasks/rwb-round-a-batch-up-to-the-nearest-captured-bucket/meta.json +22 -0
  8131. mlsys/tasks/rwb-round-a-batch-up-to-the-nearest-captured-bucket/solution_ref.py +18 -0
  8132. mlsys/tasks/rwb-round-a-batch-up-to-the-nearest-captured-bucket/starter.py +2 -0
  8133. mlsys/tasks/rwb-round-a-batch-up-to-the-nearest-captured-bucket/task.md +54 -0
  8134. mlsys/tasks/rwb-route-requests-to-prefill-decode-pools/check.py +128 -0
  8135. mlsys/tasks/rwb-route-requests-to-prefill-decode-pools/gen_fixtures.py +1 -0
  8136. mlsys/tasks/rwb-route-requests-to-prefill-decode-pools/meta.json +22 -0
  8137. mlsys/tasks/rwb-route-requests-to-prefill-decode-pools/solution_ref.py +51 -0
  8138. mlsys/tasks/rwb-route-requests-to-prefill-decode-pools/starter.py +32 -0
  8139. mlsys/tasks/rwb-route-requests-to-prefill-decode-pools/task.md +91 -0
  8140. mlsys/tasks/rwb-s-way-split-kv-merge/check.py +65 -0
  8141. mlsys/tasks/rwb-s-way-split-kv-merge/gen_fixtures.py +1 -0
  8142. mlsys/tasks/rwb-s-way-split-kv-merge/meta.json +22 -0
  8143. mlsys/tasks/rwb-s-way-split-kv-merge/solution_ref.py +15 -0
  8144. mlsys/tasks/rwb-s-way-split-kv-merge/starter.py +19 -0
  8145. mlsys/tasks/rwb-s-way-split-kv-merge/task.md +85 -0
  8146. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/check.py +50 -0
  8147. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/fixtures/A_bank.npy +0 -0
  8148. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/fixtures/B_bank.npy +0 -0
  8149. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/fixtures/adapter_id.npy +0 -0
  8150. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/fixtures/scale.npy +0 -0
  8151. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/fixtures/x.npy +0 -0
  8152. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/gen_fixtures.py +31 -0
  8153. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/meta.json +28 -0
  8154. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/solution_ref.py +39 -0
  8155. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/starter.py +23 -0
  8156. mlsys/tasks/rwb-sgmv-per-row-adapter-selection/task.md +76 -0
  8157. mlsys/tasks/rwb-shared-prefix-block-table-copy-on-write/check.py +95 -0
  8158. mlsys/tasks/rwb-shared-prefix-block-table-copy-on-write/gen_fixtures.py +1 -0
  8159. mlsys/tasks/rwb-shared-prefix-block-table-copy-on-write/meta.json +22 -0
  8160. mlsys/tasks/rwb-shared-prefix-block-table-copy-on-write/solution_ref.py +54 -0
  8161. mlsys/tasks/rwb-shared-prefix-block-table-copy-on-write/starter.py +26 -0
  8162. mlsys/tasks/rwb-shared-prefix-block-table-copy-on-write/task.md +86 -0
  8163. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/check.py +51 -0
  8164. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/fixtures/arrival_iters.npy +0 -0
  8165. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/fixtures/gen_lens.npy +0 -0
  8166. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/fixtures/max_num_seqs.npy +0 -0
  8167. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/fixtures/run_id.npy +0 -0
  8168. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/gen_fixtures.py +57 -0
  8169. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/meta.json +27 -0
  8170. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/solution_ref.py +31 -0
  8171. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/starter.py +10 -0
  8172. mlsys/tasks/rwb-simulate-continuous-batching-active-set-under-max-num-seqs/task.md +71 -0
  8173. mlsys/tasks/rwb-single-adapter-lora-delta/check.py +29 -0
  8174. mlsys/tasks/rwb-single-adapter-lora-delta/fixtures/a.npy +0 -0
  8175. mlsys/tasks/rwb-single-adapter-lora-delta/fixtures/b.npy +0 -0
  8176. mlsys/tasks/rwb-single-adapter-lora-delta/fixtures/base.npy +0 -0
  8177. mlsys/tasks/rwb-single-adapter-lora-delta/fixtures/x.npy +0 -0
  8178. mlsys/tasks/rwb-single-adapter-lora-delta/gen_fixtures.py +32 -0
  8179. mlsys/tasks/rwb-single-adapter-lora-delta/meta.json +27 -0
  8180. mlsys/tasks/rwb-single-adapter-lora-delta/solution_ref.py +9 -0
  8181. mlsys/tasks/rwb-single-adapter-lora-delta/starter.py +11 -0
  8182. mlsys/tasks/rwb-single-adapter-lora-delta/task.md +63 -0
  8183. mlsys/tasks/rwb-slot-based-vs-paged-admission/check.py +51 -0
  8184. mlsys/tasks/rwb-slot-based-vs-paged-admission/gen_fixtures.py +1 -0
  8185. mlsys/tasks/rwb-slot-based-vs-paged-admission/meta.json +22 -0
  8186. mlsys/tasks/rwb-slot-based-vs-paged-admission/solution_ref.py +21 -0
  8187. mlsys/tasks/rwb-slot-based-vs-paged-admission/starter.py +3 -0
  8188. mlsys/tasks/rwb-slot-based-vs-paged-admission/task.md +86 -0
  8189. mlsys/tasks/rwb-speedup-vs-acceptance-rate-model/check.py +44 -0
  8190. mlsys/tasks/rwb-speedup-vs-acceptance-rate-model/gen_fixtures.py +1 -0
  8191. mlsys/tasks/rwb-speedup-vs-acceptance-rate-model/meta.json +22 -0
  8192. mlsys/tasks/rwb-speedup-vs-acceptance-rate-model/solution_ref.py +22 -0
  8193. mlsys/tasks/rwb-speedup-vs-acceptance-rate-model/starter.py +4 -0
  8194. mlsys/tasks/rwb-speedup-vs-acceptance-rate-model/task.md +81 -0
  8195. mlsys/tasks/rwb-split-count-vs-parallel-work/check.py +38 -0
  8196. mlsys/tasks/rwb-split-count-vs-parallel-work/gen_fixtures.py +1 -0
  8197. mlsys/tasks/rwb-split-count-vs-parallel-work/meta.json +22 -0
  8198. mlsys/tasks/rwb-split-count-vs-parallel-work/solution_ref.py +15 -0
  8199. mlsys/tasks/rwb-split-count-vs-parallel-work/starter.py +2 -0
  8200. mlsys/tasks/rwb-split-count-vs-parallel-work/task.md +50 -0
  8201. mlsys/tasks/rwb-static-request-level-batching-makespan/check.py +27 -0
  8202. mlsys/tasks/rwb-static-request-level-batching-makespan/fixtures/output_lens.npy +0 -0
  8203. mlsys/tasks/rwb-static-request-level-batching-makespan/gen_fixtures.py +23 -0
  8204. mlsys/tasks/rwb-static-request-level-batching-makespan/meta.json +24 -0
  8205. mlsys/tasks/rwb-static-request-level-batching-makespan/solution_ref.py +31 -0
  8206. mlsys/tasks/rwb-static-request-level-batching-makespan/starter.py +15 -0
  8207. mlsys/tasks/rwb-static-request-level-batching-makespan/task.md +63 -0
  8208. mlsys/tasks/rwb-streaming-softmax-running-max-sum/check.py +41 -0
  8209. mlsys/tasks/rwb-streaming-softmax-running-max-sum/fixtures/scores.npy +0 -0
  8210. mlsys/tasks/rwb-streaming-softmax-running-max-sum/gen_fixtures.py +33 -0
  8211. mlsys/tasks/rwb-streaming-softmax-running-max-sum/meta.json +24 -0
  8212. mlsys/tasks/rwb-streaming-softmax-running-max-sum/solution_ref.py +24 -0
  8213. mlsys/tasks/rwb-streaming-softmax-running-max-sum/starter.py +21 -0
  8214. mlsys/tasks/rwb-streaming-softmax-running-max-sum/task.md +73 -0
  8215. mlsys/tasks/rwb-throughput-vs-budget-saturation-point/check.py +71 -0
  8216. mlsys/tasks/rwb-throughput-vs-budget-saturation-point/gen_fixtures.py +1 -0
  8217. mlsys/tasks/rwb-throughput-vs-budget-saturation-point/meta.json +27 -0
  8218. mlsys/tasks/rwb-throughput-vs-budget-saturation-point/solution_ref.py +11 -0
  8219. mlsys/tasks/rwb-throughput-vs-budget-saturation-point/starter.py +17 -0
  8220. mlsys/tasks/rwb-throughput-vs-budget-saturation-point/task.md +82 -0
  8221. mlsys/tasks/rwb-throughput-vs-delay-cap-curve/check.py +81 -0
  8222. mlsys/tasks/rwb-throughput-vs-delay-cap-curve/fixtures/arrivals.npy +0 -0
  8223. mlsys/tasks/rwb-throughput-vs-delay-cap-curve/gen_fixtures.py +24 -0
  8224. mlsys/tasks/rwb-throughput-vs-delay-cap-curve/meta.json +24 -0
  8225. mlsys/tasks/rwb-throughput-vs-delay-cap-curve/solution_ref.py +62 -0
  8226. mlsys/tasks/rwb-throughput-vs-delay-cap-curve/starter.py +24 -0
  8227. mlsys/tasks/rwb-throughput-vs-delay-cap-curve/task.md +74 -0
  8228. mlsys/tasks/rwb-tiled-flash-attention-forward-no-nxn-matrix/check.py +40 -0
  8229. mlsys/tasks/rwb-tiled-flash-attention-forward-no-nxn-matrix/gen_fixtures.py +1 -0
  8230. mlsys/tasks/rwb-tiled-flash-attention-forward-no-nxn-matrix/meta.json +22 -0
  8231. mlsys/tasks/rwb-tiled-flash-attention-forward-no-nxn-matrix/solution_ref.py +52 -0
  8232. mlsys/tasks/rwb-tiled-flash-attention-forward-no-nxn-matrix/starter.py +5 -0
  8233. mlsys/tasks/rwb-tiled-flash-attention-forward-no-nxn-matrix/task.md +91 -0
  8234. mlsys/tasks/rwb-total-padding-waste-over-a-batch-size-histogram/check.py +25 -0
  8235. mlsys/tasks/rwb-total-padding-waste-over-a-batch-size-histogram/gen_fixtures.py +1 -0
  8236. mlsys/tasks/rwb-total-padding-waste-over-a-batch-size-histogram/meta.json +22 -0
  8237. mlsys/tasks/rwb-total-padding-waste-over-a-batch-size-histogram/solution_ref.py +12 -0
  8238. mlsys/tasks/rwb-total-padding-waste-over-a-batch-size-histogram/starter.py +2 -0
  8239. mlsys/tasks/rwb-total-padding-waste-over-a-batch-size-histogram/task.md +42 -0
  8240. mlsys/tasks/rwb-total-prefix-tokens-saved/check.py +87 -0
  8241. mlsys/tasks/rwb-total-prefix-tokens-saved/gen_fixtures.py +1 -0
  8242. mlsys/tasks/rwb-total-prefix-tokens-saved/meta.json +22 -0
  8243. mlsys/tasks/rwb-total-prefix-tokens-saved/solution_ref.py +35 -0
  8244. mlsys/tasks/rwb-total-prefix-tokens-saved/starter.py +12 -0
  8245. mlsys/tasks/rwb-total-prefix-tokens-saved/task.md +74 -0
  8246. mlsys/tasks/rwb-transfer-vs-recompute-break-even-length/check.py +59 -0
  8247. mlsys/tasks/rwb-transfer-vs-recompute-break-even-length/gen_fixtures.py +1 -0
  8248. mlsys/tasks/rwb-transfer-vs-recompute-break-even-length/meta.json +22 -0
  8249. mlsys/tasks/rwb-transfer-vs-recompute-break-even-length/solution_ref.py +19 -0
  8250. mlsys/tasks/rwb-transfer-vs-recompute-break-even-length/starter.py +8 -0
  8251. mlsys/tasks/rwb-transfer-vs-recompute-break-even-length/task.md +101 -0
  8252. mlsys/tasks/rwb-two-chunk-split-kv-log-sum-exp-merge/check.py +60 -0
  8253. mlsys/tasks/rwb-two-chunk-split-kv-log-sum-exp-merge/fixtures/k.npy +0 -0
  8254. mlsys/tasks/rwb-two-chunk-split-kv-log-sum-exp-merge/fixtures/q.npy +0 -0
  8255. mlsys/tasks/rwb-two-chunk-split-kv-log-sum-exp-merge/fixtures/v.npy +0 -0
  8256. mlsys/tasks/rwb-two-chunk-split-kv-log-sum-exp-merge/gen_fixtures.py +28 -0
  8257. mlsys/tasks/rwb-two-chunk-split-kv-log-sum-exp-merge/meta.json +26 -0
  8258. mlsys/tasks/rwb-two-chunk-split-kv-log-sum-exp-merge/solution_ref.py +29 -0
  8259. mlsys/tasks/rwb-two-chunk-split-kv-log-sum-exp-merge/starter.py +20 -0
  8260. mlsys/tasks/rwb-two-chunk-split-kv-log-sum-exp-merge/task.md +82 -0
  8261. mlsys/tasks/rwb-unbiasedness-output-histogram-equals-target/check.py +51 -0
  8262. mlsys/tasks/rwb-unbiasedness-output-histogram-equals-target/gen_fixtures.py +1 -0
  8263. mlsys/tasks/rwb-unbiasedness-output-histogram-equals-target/meta.json +22 -0
  8264. mlsys/tasks/rwb-unbiasedness-output-histogram-equals-target/solution_ref.py +31 -0
  8265. mlsys/tasks/rwb-unbiasedness-output-histogram-equals-target/starter.py +4 -0
  8266. mlsys/tasks/rwb-unbiasedness-output-histogram-equals-target/task.md +89 -0
  8267. mlsys/tasks/rwb-would-this-pair-share-a-prefix-node/check.py +18 -0
  8268. mlsys/tasks/rwb-would-this-pair-share-a-prefix-node/gen_fixtures.py +1 -0
  8269. mlsys/tasks/rwb-would-this-pair-share-a-prefix-node/meta.json +22 -0
  8270. mlsys/tasks/rwb-would-this-pair-share-a-prefix-node/solution_ref.py +7 -0
  8271. mlsys/tasks/rwb-would-this-pair-share-a-prefix-node/starter.py +2 -0
  8272. mlsys/tasks/rwb-would-this-pair-share-a-prefix-node/task.md +33 -0
  8273. mlsys/tasks/rwc-2-4-magnitude-prune-reconstruction-mse/check.py +38 -0
  8274. mlsys/tasks/rwc-2-4-magnitude-prune-reconstruction-mse/gen_fixtures.py +1 -0
  8275. mlsys/tasks/rwc-2-4-magnitude-prune-reconstruction-mse/meta.json +22 -0
  8276. mlsys/tasks/rwc-2-4-magnitude-prune-reconstruction-mse/solution_ref.py +21 -0
  8277. mlsys/tasks/rwc-2-4-magnitude-prune-reconstruction-mse/starter.py +6 -0
  8278. mlsys/tasks/rwc-2-4-magnitude-prune-reconstruction-mse/task.md +46 -0
  8279. mlsys/tasks/rwc-2-4-prune-compressed-values-2-bit-idx-matmul/check.py +62 -0
  8280. mlsys/tasks/rwc-2-4-prune-compressed-values-2-bit-idx-matmul/gen_fixtures.py +1 -0
  8281. mlsys/tasks/rwc-2-4-prune-compressed-values-2-bit-idx-matmul/meta.json +27 -0
  8282. mlsys/tasks/rwc-2-4-prune-compressed-values-2-bit-idx-matmul/solution_ref.py +56 -0
  8283. mlsys/tasks/rwc-2-4-prune-compressed-values-2-bit-idx-matmul/starter.py +13 -0
  8284. mlsys/tasks/rwc-2-4-prune-compressed-values-2-bit-idx-matmul/task.md +72 -0
  8285. mlsys/tasks/rwc-8da4w-vs-8-bit-weight-only-error-and-size/check.py +96 -0
  8286. mlsys/tasks/rwc-8da4w-vs-8-bit-weight-only-error-and-size/gen_fixtures.py +1 -0
  8287. mlsys/tasks/rwc-8da4w-vs-8-bit-weight-only-error-and-size/meta.json +42 -0
  8288. mlsys/tasks/rwc-8da4w-vs-8-bit-weight-only-error-and-size/solution_ref.py +40 -0
  8289. mlsys/tasks/rwc-8da4w-vs-8-bit-weight-only-error-and-size/starter.py +4 -0
  8290. mlsys/tasks/rwc-8da4w-vs-8-bit-weight-only-error-and-size/task.md +78 -0
  8291. mlsys/tasks/rwc-act-order-desc-act-column-reordering-reduces-error/check.py +73 -0
  8292. mlsys/tasks/rwc-act-order-desc-act-column-reordering-reduces-error/gen_fixtures.py +1 -0
  8293. mlsys/tasks/rwc-act-order-desc-act-column-reordering-reduces-error/meta.json +27 -0
  8294. mlsys/tasks/rwc-act-order-desc-act-column-reordering-reduces-error/solution_ref.py +32 -0
  8295. mlsys/tasks/rwc-act-order-desc-act-column-reordering-reduces-error/starter.py +7 -0
  8296. mlsys/tasks/rwc-act-order-desc-act-column-reordering-reduces-error/task.md +97 -0
  8297. mlsys/tasks/rwc-affine-group-quant-dequant-matches-mlx/check.py +48 -0
  8298. mlsys/tasks/rwc-affine-group-quant-dequant-matches-mlx/gen_fixtures.py +1 -0
  8299. mlsys/tasks/rwc-affine-group-quant-dequant-matches-mlx/meta.json +22 -0
  8300. mlsys/tasks/rwc-affine-group-quant-dequant-matches-mlx/solution_ref.py +43 -0
  8301. mlsys/tasks/rwc-affine-group-quant-dequant-matches-mlx/starter.py +5 -0
  8302. mlsys/tasks/rwc-affine-group-quant-dequant-matches-mlx/task.md +73 -0
  8303. mlsys/tasks/rwc-apply-per-channel-scale-4-bit-quant-fold-reciprocal/check.py +73 -0
  8304. mlsys/tasks/rwc-apply-per-channel-scale-4-bit-quant-fold-reciprocal/gen_fixtures.py +1 -0
  8305. mlsys/tasks/rwc-apply-per-channel-scale-4-bit-quant-fold-reciprocal/meta.json +22 -0
  8306. mlsys/tasks/rwc-apply-per-channel-scale-4-bit-quant-fold-reciprocal/solution_ref.py +58 -0
  8307. mlsys/tasks/rwc-apply-per-channel-scale-4-bit-quant-fold-reciprocal/starter.py +28 -0
  8308. mlsys/tasks/rwc-apply-per-channel-scale-4-bit-quant-fold-reciprocal/task.md +78 -0
  8309. mlsys/tasks/rwc-awq-vs-plain-rtn-4-bit-on-a-salient-heavy-weight/check.py +71 -0
  8310. mlsys/tasks/rwc-awq-vs-plain-rtn-4-bit-on-a-salient-heavy-weight/fixtures/W.npy +0 -0
  8311. mlsys/tasks/rwc-awq-vs-plain-rtn-4-bit-on-a-salient-heavy-weight/fixtures/X.npy +0 -0
  8312. mlsys/tasks/rwc-awq-vs-plain-rtn-4-bit-on-a-salient-heavy-weight/gen_fixtures.py +37 -0
  8313. mlsys/tasks/rwc-awq-vs-plain-rtn-4-bit-on-a-salient-heavy-weight/meta.json +25 -0
  8314. mlsys/tasks/rwc-awq-vs-plain-rtn-4-bit-on-a-salient-heavy-weight/solution_ref.py +39 -0
  8315. mlsys/tasks/rwc-awq-vs-plain-rtn-4-bit-on-a-salient-heavy-weight/starter.py +32 -0
  8316. mlsys/tasks/rwc-awq-vs-plain-rtn-4-bit-on-a-salient-heavy-weight/task.md +85 -0
  8317. mlsys/tasks/rwc-baseline-rtn-4-bit-layer-output-mse/check.py +33 -0
  8318. mlsys/tasks/rwc-baseline-rtn-4-bit-layer-output-mse/gen_fixtures.py +1 -0
  8319. mlsys/tasks/rwc-baseline-rtn-4-bit-layer-output-mse/meta.json +22 -0
  8320. mlsys/tasks/rwc-baseline-rtn-4-bit-layer-output-mse/solution_ref.py +18 -0
  8321. mlsys/tasks/rwc-baseline-rtn-4-bit-layer-output-mse/starter.py +4 -0
  8322. mlsys/tasks/rwc-baseline-rtn-4-bit-layer-output-mse/task.md +52 -0
  8323. mlsys/tasks/rwc-build-the-damped-inverse-hessian-and-its-cholesky/check.py +53 -0
  8324. mlsys/tasks/rwc-build-the-damped-inverse-hessian-and-its-cholesky/fixtures/X.npy +0 -0
  8325. mlsys/tasks/rwc-build-the-damped-inverse-hessian-and-its-cholesky/gen_fixtures.py +25 -0
  8326. mlsys/tasks/rwc-build-the-damped-inverse-hessian-and-its-cholesky/meta.json +24 -0
  8327. mlsys/tasks/rwc-build-the-damped-inverse-hessian-and-its-cholesky/solution_ref.py +37 -0
  8328. mlsys/tasks/rwc-build-the-damped-inverse-hessian-and-its-cholesky/starter.py +25 -0
  8329. mlsys/tasks/rwc-build-the-damped-inverse-hessian-and-its-cholesky/task.md +84 -0
  8330. mlsys/tasks/rwc-classify-values-exact-subnormal-or-saturated-in-e4m3/check.py +69 -0
  8331. mlsys/tasks/rwc-classify-values-exact-subnormal-or-saturated-in-e4m3/gen_fixtures.py +1 -0
  8332. mlsys/tasks/rwc-classify-values-exact-subnormal-or-saturated-in-e4m3/meta.json +22 -0
  8333. mlsys/tasks/rwc-classify-values-exact-subnormal-or-saturated-in-e4m3/solution_ref.py +56 -0
  8334. mlsys/tasks/rwc-classify-values-exact-subnormal-or-saturated-in-e4m3/starter.py +16 -0
  8335. mlsys/tasks/rwc-classify-values-exact-subnormal-or-saturated-in-e4m3/task.md +57 -0
  8336. mlsys/tasks/rwc-combine-two-block-softmax-stats-online-softmax-lemma/check.py +43 -0
  8337. mlsys/tasks/rwc-combine-two-block-softmax-stats-online-softmax-lemma/gen_fixtures.py +1 -0
  8338. mlsys/tasks/rwc-combine-two-block-softmax-stats-online-softmax-lemma/meta.json +22 -0
  8339. mlsys/tasks/rwc-combine-two-block-softmax-stats-online-softmax-lemma/solution_ref.py +11 -0
  8340. mlsys/tasks/rwc-combine-two-block-softmax-stats-online-softmax-lemma/starter.py +2 -0
  8341. mlsys/tasks/rwc-combine-two-block-softmax-stats-online-softmax-lemma/task.md +49 -0
  8342. mlsys/tasks/rwc-compare-dram-traffic-fused-vs-unfused-elementwise-chain/check.py +26 -0
  8343. mlsys/tasks/rwc-compare-dram-traffic-fused-vs-unfused-elementwise-chain/gen_fixtures.py +3 -0
  8344. mlsys/tasks/rwc-compare-dram-traffic-fused-vs-unfused-elementwise-chain/meta.json +23 -0
  8345. mlsys/tasks/rwc-compare-dram-traffic-fused-vs-unfused-elementwise-chain/solution_ref.py +7 -0
  8346. mlsys/tasks/rwc-compare-dram-traffic-fused-vs-unfused-elementwise-chain/starter.py +7 -0
  8347. mlsys/tasks/rwc-compare-dram-traffic-fused-vs-unfused-elementwise-chain/task.md +43 -0
  8348. mlsys/tasks/rwc-compute-8da4w-linear-size-bits-per-param/check.py +44 -0
  8349. mlsys/tasks/rwc-compute-8da4w-linear-size-bits-per-param/gen_fixtures.py +1 -0
  8350. mlsys/tasks/rwc-compute-8da4w-linear-size-bits-per-param/meta.json +27 -0
  8351. mlsys/tasks/rwc-compute-8da4w-linear-size-bits-per-param/solution_ref.py +33 -0
  8352. mlsys/tasks/rwc-compute-8da4w-linear-size-bits-per-param/starter.py +2 -0
  8353. mlsys/tasks/rwc-compute-8da4w-linear-size-bits-per-param/task.md +51 -0
  8354. mlsys/tasks/rwc-compute-nf4-bits-param-with-and-without-double-quant/check.py +25 -0
  8355. mlsys/tasks/rwc-compute-nf4-bits-param-with-and-without-double-quant/gen_fixtures.py +1 -0
  8356. mlsys/tasks/rwc-compute-nf4-bits-param-with-and-without-double-quant/meta.json +22 -0
  8357. mlsys/tasks/rwc-compute-nf4-bits-param-with-and-without-double-quant/solution_ref.py +34 -0
  8358. mlsys/tasks/rwc-compute-nf4-bits-param-with-and-without-double-quant/starter.py +3 -0
  8359. mlsys/tasks/rwc-compute-nf4-bits-param-with-and-without-double-quant/task.md +70 -0
  8360. mlsys/tasks/rwc-compute-the-blockwise-absmax-block-64/check.py +33 -0
  8361. mlsys/tasks/rwc-compute-the-blockwise-absmax-block-64/gen_fixtures.py +1 -0
  8362. mlsys/tasks/rwc-compute-the-blockwise-absmax-block-64/meta.json +22 -0
  8363. mlsys/tasks/rwc-compute-the-blockwise-absmax-block-64/solution_ref.py +10 -0
  8364. mlsys/tasks/rwc-compute-the-blockwise-absmax-block-64/starter.py +5 -0
  8365. mlsys/tasks/rwc-compute-the-blockwise-absmax-block-64/task.md +61 -0
  8366. mlsys/tasks/rwc-compute-the-folded-weight-blob-size-of-the-pt2-artifact/check.py +42 -0
  8367. mlsys/tasks/rwc-compute-the-folded-weight-blob-size-of-the-pt2-artifact/gen_fixtures.py +1 -0
  8368. mlsys/tasks/rwc-compute-the-folded-weight-blob-size-of-the-pt2-artifact/meta.json +22 -0
  8369. mlsys/tasks/rwc-compute-the-folded-weight-blob-size-of-the-pt2-artifact/solution_ref.py +18 -0
  8370. mlsys/tasks/rwc-compute-the-folded-weight-blob-size-of-the-pt2-artifact/starter.py +2 -0
  8371. mlsys/tasks/rwc-compute-the-folded-weight-blob-size-of-the-pt2-artifact/task.md +42 -0
  8372. mlsys/tasks/rwc-compute-the-max-calibration-amax-and-its-clipping-error/check.py +34 -0
  8373. mlsys/tasks/rwc-compute-the-max-calibration-amax-and-its-clipping-error/gen_fixtures.py +1 -0
  8374. mlsys/tasks/rwc-compute-the-max-calibration-amax-and-its-clipping-error/meta.json +22 -0
  8375. mlsys/tasks/rwc-compute-the-max-calibration-amax-and-its-clipping-error/solution_ref.py +15 -0
  8376. mlsys/tasks/rwc-compute-the-max-calibration-amax-and-its-clipping-error/starter.py +4 -0
  8377. mlsys/tasks/rwc-compute-the-max-calibration-amax-and-its-clipping-error/task.md +67 -0
  8378. mlsys/tasks/rwc-compute-the-mxfp4-shared-e8m0-block-scale-block-32/check.py +20 -0
  8379. mlsys/tasks/rwc-compute-the-mxfp4-shared-e8m0-block-scale-block-32/gen_fixtures.py +1 -0
  8380. mlsys/tasks/rwc-compute-the-mxfp4-shared-e8m0-block-scale-block-32/meta.json +22 -0
  8381. mlsys/tasks/rwc-compute-the-mxfp4-shared-e8m0-block-scale-block-32/solution_ref.py +6 -0
  8382. mlsys/tasks/rwc-compute-the-mxfp4-shared-e8m0-block-scale-block-32/starter.py +6 -0
  8383. mlsys/tasks/rwc-compute-the-mxfp4-shared-e8m0-block-scale-block-32/task.md +48 -0
  8384. mlsys/tasks/rwc-compute-the-per-channel-activation-scale-statistic/check.py +23 -0
  8385. mlsys/tasks/rwc-compute-the-per-channel-activation-scale-statistic/gen_fixtures.py +1 -0
  8386. mlsys/tasks/rwc-compute-the-per-channel-activation-scale-statistic/meta.json +22 -0
  8387. mlsys/tasks/rwc-compute-the-per-channel-activation-scale-statistic/solution_ref.py +18 -0
  8388. mlsys/tasks/rwc-compute-the-per-channel-activation-scale-statistic/starter.py +4 -0
  8389. mlsys/tasks/rwc-compute-the-per-channel-activation-scale-statistic/task.md +49 -0
  8390. mlsys/tasks/rwc-compute-the-per-channel-migration-scale-s-j/check.py +32 -0
  8391. mlsys/tasks/rwc-compute-the-per-channel-migration-scale-s-j/gen_fixtures.py +1 -0
  8392. mlsys/tasks/rwc-compute-the-per-channel-migration-scale-s-j/meta.json +22 -0
  8393. mlsys/tasks/rwc-compute-the-per-channel-migration-scale-s-j/solution_ref.py +26 -0
  8394. mlsys/tasks/rwc-compute-the-per-channel-migration-scale-s-j/starter.py +5 -0
  8395. mlsys/tasks/rwc-compute-the-per-channel-migration-scale-s-j/task.md +52 -0
  8396. mlsys/tasks/rwc-constant-fold-frozen-weights-into-a-baked-constant/check.py +75 -0
  8397. mlsys/tasks/rwc-constant-fold-frozen-weights-into-a-baked-constant/gen_fixtures.py +1 -0
  8398. mlsys/tasks/rwc-constant-fold-frozen-weights-into-a-baked-constant/meta.json +27 -0
  8399. mlsys/tasks/rwc-constant-fold-frozen-weights-into-a-baked-constant/solution_ref.py +35 -0
  8400. mlsys/tasks/rwc-constant-fold-frozen-weights-into-a-baked-constant/starter.py +4 -0
  8401. mlsys/tasks/rwc-constant-fold-frozen-weights-into-a-baked-constant/task.md +84 -0
  8402. mlsys/tasks/rwc-count-dynamo-graph-breaks-in-a-traced-function/check.py +32 -0
  8403. mlsys/tasks/rwc-count-dynamo-graph-breaks-in-a-traced-function/gen_fixtures.py +1 -0
  8404. mlsys/tasks/rwc-count-dynamo-graph-breaks-in-a-traced-function/meta.json +22 -0
  8405. mlsys/tasks/rwc-count-dynamo-graph-breaks-in-a-traced-function/solution_ref.py +12 -0
  8406. mlsys/tasks/rwc-count-dynamo-graph-breaks-in-a-traced-function/starter.py +2 -0
  8407. mlsys/tasks/rwc-count-dynamo-graph-breaks-in-a-traced-function/task.md +46 -0
  8408. mlsys/tasks/rwc-decompose-sdpa-into-onnx-primitives-and-match-fused-attention/check.py +82 -0
  8409. mlsys/tasks/rwc-decompose-sdpa-into-onnx-primitives-and-match-fused-attention/gen_fixtures.py +1 -0
  8410. mlsys/tasks/rwc-decompose-sdpa-into-onnx-primitives-and-match-fused-attention/meta.json +22 -0
  8411. mlsys/tasks/rwc-decompose-sdpa-into-onnx-primitives-and-match-fused-attention/solution_ref.py +26 -0
  8412. mlsys/tasks/rwc-decompose-sdpa-into-onnx-primitives-and-match-fused-attention/starter.py +11 -0
  8413. mlsys/tasks/rwc-decompose-sdpa-into-onnx-primitives-and-match-fused-attention/task.md +94 -0
  8414. mlsys/tasks/rwc-double-quantize-the-nf4-absmax-constants/check.py +97 -0
  8415. mlsys/tasks/rwc-double-quantize-the-nf4-absmax-constants/gen_fixtures.py +1 -0
  8416. mlsys/tasks/rwc-double-quantize-the-nf4-absmax-constants/meta.json +22 -0
  8417. mlsys/tasks/rwc-double-quantize-the-nf4-absmax-constants/solution_ref.py +83 -0
  8418. mlsys/tasks/rwc-double-quantize-the-nf4-absmax-constants/starter.py +18 -0
  8419. mlsys/tasks/rwc-double-quantize-the-nf4-absmax-constants/task.md +80 -0
  8420. mlsys/tasks/rwc-e4m3-vs-e5m2-vs-int8-error-on-an-outlier-weight/check.py +105 -0
  8421. mlsys/tasks/rwc-e4m3-vs-e5m2-vs-int8-error-on-an-outlier-weight/gen_fixtures.py +1 -0
  8422. mlsys/tasks/rwc-e4m3-vs-e5m2-vs-int8-error-on-an-outlier-weight/meta.json +27 -0
  8423. mlsys/tasks/rwc-e4m3-vs-e5m2-vs-int8-error-on-an-outlier-weight/solution_ref.py +70 -0
  8424. mlsys/tasks/rwc-e4m3-vs-e5m2-vs-int8-error-on-an-outlier-weight/starter.py +4 -0
  8425. mlsys/tasks/rwc-e4m3-vs-e5m2-vs-int8-error-on-an-outlier-weight/task.md +63 -0
  8426. mlsys/tasks/rwc-e4m3fn-encode-decode-rne-saturation/check.py +75 -0
  8427. mlsys/tasks/rwc-e4m3fn-encode-decode-rne-saturation/gen_fixtures.py +1 -0
  8428. mlsys/tasks/rwc-e4m3fn-encode-decode-rne-saturation/meta.json +28 -0
  8429. mlsys/tasks/rwc-e4m3fn-encode-decode-rne-saturation/solution_ref.py +48 -0
  8430. mlsys/tasks/rwc-e4m3fn-encode-decode-rne-saturation/starter.py +7 -0
  8431. mlsys/tasks/rwc-e4m3fn-encode-decode-rne-saturation/task.md +77 -0
  8432. mlsys/tasks/rwc-e5m2-encode-decode-with-inf-nan/check.py +161 -0
  8433. mlsys/tasks/rwc-e5m2-encode-decode-with-inf-nan/gen_fixtures.py +1 -0
  8434. mlsys/tasks/rwc-e5m2-encode-decode-with-inf-nan/meta.json +16 -0
  8435. mlsys/tasks/rwc-e5m2-encode-decode-with-inf-nan/solution_ref.py +104 -0
  8436. mlsys/tasks/rwc-e5m2-encode-decode-with-inf-nan/starter.py +11 -0
  8437. mlsys/tasks/rwc-e5m2-encode-decode-with-inf-nan/task.md +51 -0
  8438. mlsys/tasks/rwc-effective-bits-weight-including-scale-bias-overhead/check.py +26 -0
  8439. mlsys/tasks/rwc-effective-bits-weight-including-scale-bias-overhead/gen_fixtures.py +1 -0
  8440. mlsys/tasks/rwc-effective-bits-weight-including-scale-bias-overhead/meta.json +22 -0
  8441. mlsys/tasks/rwc-effective-bits-weight-including-scale-bias-overhead/solution_ref.py +6 -0
  8442. mlsys/tasks/rwc-effective-bits-weight-including-scale-bias-overhead/starter.py +4 -0
  8443. mlsys/tasks/rwc-effective-bits-weight-including-scale-bias-overhead/task.md +50 -0
  8444. mlsys/tasks/rwc-epilogue-fuse-bias-add-activation-into-a-matmul/check.py +54 -0
  8445. mlsys/tasks/rwc-epilogue-fuse-bias-add-activation-into-a-matmul/gen_fixtures.py +1 -0
  8446. mlsys/tasks/rwc-epilogue-fuse-bias-add-activation-into-a-matmul/meta.json +27 -0
  8447. mlsys/tasks/rwc-epilogue-fuse-bias-add-activation-into-a-matmul/solution_ref.py +20 -0
  8448. mlsys/tasks/rwc-epilogue-fuse-bias-add-activation-into-a-matmul/starter.py +4 -0
  8449. mlsys/tasks/rwc-epilogue-fuse-bias-add-activation-into-a-matmul/task.md +86 -0
  8450. mlsys/tasks/rwc-fix-2-4-selection-done-per-row-instead-of-per-group-of-4/check.py +46 -0
  8451. mlsys/tasks/rwc-fix-2-4-selection-done-per-row-instead-of-per-group-of-4/gen_fixtures.py +1 -0
  8452. mlsys/tasks/rwc-fix-2-4-selection-done-per-row-instead-of-per-group-of-4/meta.json +22 -0
  8453. mlsys/tasks/rwc-fix-2-4-selection-done-per-row-instead-of-per-group-of-4/solution_ref.py +16 -0
  8454. mlsys/tasks/rwc-fix-2-4-selection-done-per-row-instead-of-per-group-of-4/starter.py +17 -0
  8455. mlsys/tasks/rwc-fix-2-4-selection-done-per-row-instead-of-per-group-of-4/task.md +69 -0
  8456. mlsys/tasks/rwc-fix-a-flash-accumulator-missing-the-max-update-rescale/check.py +64 -0
  8457. mlsys/tasks/rwc-fix-a-flash-accumulator-missing-the-max-update-rescale/gen_fixtures.py +1 -0
  8458. mlsys/tasks/rwc-fix-a-flash-accumulator-missing-the-max-update-rescale/meta.json +22 -0
  8459. mlsys/tasks/rwc-fix-a-flash-accumulator-missing-the-max-update-rescale/solution_ref.py +29 -0
  8460. mlsys/tasks/rwc-fix-a-flash-accumulator-missing-the-max-update-rescale/starter.py +26 -0
  8461. mlsys/tasks/rwc-fix-a-flash-accumulator-missing-the-max-update-rescale/task.md +81 -0
  8462. mlsys/tasks/rwc-fix-a-gptq-loop-that-skips-the-remaining-column-update/check.py +96 -0
  8463. mlsys/tasks/rwc-fix-a-gptq-loop-that-skips-the-remaining-column-update/gen_fixtures.py +1 -0
  8464. mlsys/tasks/rwc-fix-a-gptq-loop-that-skips-the-remaining-column-update/meta.json +27 -0
  8465. mlsys/tasks/rwc-fix-a-gptq-loop-that-skips-the-remaining-column-update/solution_ref.py +27 -0
  8466. mlsys/tasks/rwc-fix-a-gptq-loop-that-skips-the-remaining-column-update/starter.py +19 -0
  8467. mlsys/tasks/rwc-fix-a-gptq-loop-that-skips-the-remaining-column-update/task.md +84 -0
  8468. mlsys/tasks/rwc-fix-a-max-calibration-scale-wrecked-by-one-outlier/check.py +83 -0
  8469. mlsys/tasks/rwc-fix-a-max-calibration-scale-wrecked-by-one-outlier/gen_fixtures.py +1 -0
  8470. mlsys/tasks/rwc-fix-a-max-calibration-scale-wrecked-by-one-outlier/meta.json +27 -0
  8471. mlsys/tasks/rwc-fix-a-max-calibration-scale-wrecked-by-one-outlier/solution_ref.py +10 -0
  8472. mlsys/tasks/rwc-fix-a-max-calibration-scale-wrecked-by-one-outlier/starter.py +12 -0
  8473. mlsys/tasks/rwc-fix-a-max-calibration-scale-wrecked-by-one-outlier/task.md +94 -0
  8474. mlsys/tasks/rwc-fix-a-per-tensor-activation-scale-that-should-be-per-token/check.py +42 -0
  8475. mlsys/tasks/rwc-fix-a-per-tensor-activation-scale-that-should-be-per-token/gen_fixtures.py +1 -0
  8476. mlsys/tasks/rwc-fix-a-per-tensor-activation-scale-that-should-be-per-token/meta.json +22 -0
  8477. mlsys/tasks/rwc-fix-a-per-tensor-activation-scale-that-should-be-per-token/solution_ref.py +10 -0
  8478. mlsys/tasks/rwc-fix-a-per-tensor-activation-scale-that-should-be-per-token/starter.py +12 -0
  8479. mlsys/tasks/rwc-fix-a-per-tensor-activation-scale-that-should-be-per-token/task.md +71 -0
  8480. mlsys/tasks/rwc-fix-a-scale-folded-on-the-wrong-side/check.py +41 -0
  8481. mlsys/tasks/rwc-fix-a-scale-folded-on-the-wrong-side/gen_fixtures.py +1 -0
  8482. mlsys/tasks/rwc-fix-a-scale-folded-on-the-wrong-side/meta.json +22 -0
  8483. mlsys/tasks/rwc-fix-a-scale-folded-on-the-wrong-side/solution_ref.py +10 -0
  8484. mlsys/tasks/rwc-fix-a-scale-folded-on-the-wrong-side/starter.py +10 -0
  8485. mlsys/tasks/rwc-fix-a-scale-folded-on-the-wrong-side/task.md +83 -0
  8486. mlsys/tasks/rwc-fix-a-too-narrow-dynamic-shape-range-that-fails-at-runtime/check.py +54 -0
  8487. mlsys/tasks/rwc-fix-a-too-narrow-dynamic-shape-range-that-fails-at-runtime/gen_fixtures.py +1 -0
  8488. mlsys/tasks/rwc-fix-a-too-narrow-dynamic-shape-range-that-fails-at-runtime/meta.json +22 -0
  8489. mlsys/tasks/rwc-fix-a-too-narrow-dynamic-shape-range-that-fails-at-runtime/solution_ref.py +18 -0
  8490. mlsys/tasks/rwc-fix-a-too-narrow-dynamic-shape-range-that-fails-at-runtime/starter.py +15 -0
  8491. mlsys/tasks/rwc-fix-a-too-narrow-dynamic-shape-range-that-fails-at-runtime/task.md +83 -0
  8492. mlsys/tasks/rwc-fix-a-wrong-transpose-perm-that-corrupts-the-export/check.py +49 -0
  8493. mlsys/tasks/rwc-fix-a-wrong-transpose-perm-that-corrupts-the-export/gen_fixtures.py +1 -0
  8494. mlsys/tasks/rwc-fix-a-wrong-transpose-perm-that-corrupts-the-export/meta.json +27 -0
  8495. mlsys/tasks/rwc-fix-a-wrong-transpose-perm-that-corrupts-the-export/solution_ref.py +11 -0
  8496. mlsys/tasks/rwc-fix-a-wrong-transpose-perm-that-corrupts-the-export/starter.py +7 -0
  8497. mlsys/tasks/rwc-fix-a-wrong-transpose-perm-that-corrupts-the-export/task.md +63 -0
  8498. mlsys/tasks/rwc-fix-an-inverted-scale-direction/check.py +54 -0
  8499. mlsys/tasks/rwc-fix-an-inverted-scale-direction/gen_fixtures.py +1 -0
  8500. mlsys/tasks/rwc-fix-an-inverted-scale-direction/meta.json +27 -0
  8501. mlsys/tasks/rwc-fix-an-inverted-scale-direction/solution_ref.py +7 -0
  8502. mlsys/tasks/rwc-fix-an-inverted-scale-direction/starter.py +10 -0
  8503. mlsys/tasks/rwc-fix-an-inverted-scale-direction/task.md +95 -0
  8504. mlsys/tasks/rwc-fix-the-off-by-one-scale-denominator/check.py +38 -0
  8505. mlsys/tasks/rwc-fix-the-off-by-one-scale-denominator/gen_fixtures.py +1 -0
  8506. mlsys/tasks/rwc-fix-the-off-by-one-scale-denominator/meta.json +16 -0
  8507. mlsys/tasks/rwc-fix-the-off-by-one-scale-denominator/solution_ref.py +12 -0
  8508. mlsys/tasks/rwc-fix-the-off-by-one-scale-denominator/starter.py +13 -0
  8509. mlsys/tasks/rwc-fix-the-off-by-one-scale-denominator/task.md +48 -0
  8510. mlsys/tasks/rwc-flag-export-incompatible-ops-guard-break-sources/check.py +26 -0
  8511. mlsys/tasks/rwc-flag-export-incompatible-ops-guard-break-sources/gen_fixtures.py +1 -0
  8512. mlsys/tasks/rwc-flag-export-incompatible-ops-guard-break-sources/meta.json +22 -0
  8513. mlsys/tasks/rwc-flag-export-incompatible-ops-guard-break-sources/solution_ref.py +15 -0
  8514. mlsys/tasks/rwc-flag-export-incompatible-ops-guard-break-sources/starter.py +5 -0
  8515. mlsys/tasks/rwc-flag-export-incompatible-ops-guard-break-sources/task.md +43 -0
  8516. mlsys/tasks/rwc-flag-the-outlier-activation-channels-smoothquant-targets/check.py +25 -0
  8517. mlsys/tasks/rwc-flag-the-outlier-activation-channels-smoothquant-targets/gen_fixtures.py +1 -0
  8518. mlsys/tasks/rwc-flag-the-outlier-activation-channels-smoothquant-targets/meta.json +22 -0
  8519. mlsys/tasks/rwc-flag-the-outlier-activation-channels-smoothquant-targets/solution_ref.py +13 -0
  8520. mlsys/tasks/rwc-flag-the-outlier-activation-channels-smoothquant-targets/starter.py +6 -0
  8521. mlsys/tasks/rwc-flag-the-outlier-activation-channels-smoothquant-targets/task.md +48 -0
  8522. mlsys/tasks/rwc-flash-backward-dq-dk-dv-with-recomputation/check.py +71 -0
  8523. mlsys/tasks/rwc-flash-backward-dq-dk-dv-with-recomputation/gen_fixtures.py +1 -0
  8524. mlsys/tasks/rwc-flash-backward-dq-dk-dv-with-recomputation/meta.json +22 -0
  8525. mlsys/tasks/rwc-flash-backward-dq-dk-dv-with-recomputation/solution_ref.py +20 -0
  8526. mlsys/tasks/rwc-flash-backward-dq-dk-dv-with-recomputation/starter.py +4 -0
  8527. mlsys/tasks/rwc-flash-backward-dq-dk-dv-with-recomputation/task.md +99 -0
  8528. mlsys/tasks/rwc-flash-forward-via-online-softmax-no-nxn-buffer/check.py +40 -0
  8529. mlsys/tasks/rwc-flash-forward-via-online-softmax-no-nxn-buffer/gen_fixtures.py +1 -0
  8530. mlsys/tasks/rwc-flash-forward-via-online-softmax-no-nxn-buffer/meta.json +16 -0
  8531. mlsys/tasks/rwc-flash-forward-via-online-softmax-no-nxn-buffer/solution_ref.py +41 -0
  8532. mlsys/tasks/rwc-flash-forward-via-online-softmax-no-nxn-buffer/starter.py +6 -0
  8533. mlsys/tasks/rwc-flash-forward-via-online-softmax-no-nxn-buffer/task.md +50 -0
  8534. mlsys/tasks/rwc-flatten-pytree-inputs-per-the-exportedprogram-signature/check.py +89 -0
  8535. mlsys/tasks/rwc-flatten-pytree-inputs-per-the-exportedprogram-signature/gen_fixtures.py +1 -0
  8536. mlsys/tasks/rwc-flatten-pytree-inputs-per-the-exportedprogram-signature/meta.json +22 -0
  8537. mlsys/tasks/rwc-flatten-pytree-inputs-per-the-exportedprogram-signature/solution_ref.py +8 -0
  8538. mlsys/tasks/rwc-flatten-pytree-inputs-per-the-exportedprogram-signature/starter.py +2 -0
  8539. mlsys/tasks/rwc-flatten-pytree-inputs-per-the-exportedprogram-signature/task.md +64 -0
  8540. mlsys/tasks/rwc-flexattention-score-mod-alibi-soft-cap-sliding-window/check.py +55 -0
  8541. mlsys/tasks/rwc-flexattention-score-mod-alibi-soft-cap-sliding-window/gen_fixtures.py +1 -0
  8542. mlsys/tasks/rwc-flexattention-score-mod-alibi-soft-cap-sliding-window/meta.json +16 -0
  8543. mlsys/tasks/rwc-flexattention-score-mod-alibi-soft-cap-sliding-window/solution_ref.py +19 -0
  8544. mlsys/tasks/rwc-flexattention-score-mod-alibi-soft-cap-sliding-window/starter.py +6 -0
  8545. mlsys/tasks/rwc-flexattention-score-mod-alibi-soft-cap-sliding-window/task.md +52 -0
  8546. mlsys/tasks/rwc-fold-conv-linear-batchnorm-into-one-layer/check.py +71 -0
  8547. mlsys/tasks/rwc-fold-conv-linear-batchnorm-into-one-layer/gen_fixtures.py +1 -0
  8548. mlsys/tasks/rwc-fold-conv-linear-batchnorm-into-one-layer/meta.json +22 -0
  8549. mlsys/tasks/rwc-fold-conv-linear-batchnorm-into-one-layer/solution_ref.py +15 -0
  8550. mlsys/tasks/rwc-fold-conv-linear-batchnorm-into-one-layer/starter.py +18 -0
  8551. mlsys/tasks/rwc-fold-conv-linear-batchnorm-into-one-layer/task.md +83 -0
  8552. mlsys/tasks/rwc-fold-diag-1-s-into-x-diag-s-into-w-prove-equivalence/check.py +56 -0
  8553. mlsys/tasks/rwc-fold-diag-1-s-into-x-diag-s-into-w-prove-equivalence/gen_fixtures.py +1 -0
  8554. mlsys/tasks/rwc-fold-diag-1-s-into-x-diag-s-into-w-prove-equivalence/meta.json +27 -0
  8555. mlsys/tasks/rwc-fold-diag-1-s-into-x-diag-s-into-w-prove-equivalence/solution_ref.py +11 -0
  8556. mlsys/tasks/rwc-fold-diag-1-s-into-x-diag-s-into-w-prove-equivalence/starter.py +6 -0
  8557. mlsys/tasks/rwc-fold-diag-1-s-into-x-diag-s-into-w-prove-equivalence/task.md +77 -0
  8558. mlsys/tasks/rwc-fp4-e2m1-blockwise-quant-dequant/check.py +50 -0
  8559. mlsys/tasks/rwc-fp4-e2m1-blockwise-quant-dequant/gen_fixtures.py +1 -0
  8560. mlsys/tasks/rwc-fp4-e2m1-blockwise-quant-dequant/meta.json +22 -0
  8561. mlsys/tasks/rwc-fp4-e2m1-blockwise-quant-dequant/solution_ref.py +23 -0
  8562. mlsys/tasks/rwc-fp4-e2m1-blockwise-quant-dequant/starter.py +6 -0
  8563. mlsys/tasks/rwc-fp4-e2m1-blockwise-quant-dequant/task.md +53 -0
  8564. mlsys/tasks/rwc-full-8da4w-linear-matches-reference/check.py +69 -0
  8565. mlsys/tasks/rwc-full-8da4w-linear-matches-reference/gen_fixtures.py +1 -0
  8566. mlsys/tasks/rwc-full-8da4w-linear-matches-reference/meta.json +22 -0
  8567. mlsys/tasks/rwc-full-8da4w-linear-matches-reference/solution_ref.py +36 -0
  8568. mlsys/tasks/rwc-full-8da4w-linear-matches-reference/starter.py +6 -0
  8569. mlsys/tasks/rwc-full-8da4w-linear-matches-reference/task.md +84 -0
  8570. mlsys/tasks/rwc-full-alpha-grid-search-picks-the-best-scale/check.py +62 -0
  8571. mlsys/tasks/rwc-full-alpha-grid-search-picks-the-best-scale/gen_fixtures.py +1 -0
  8572. mlsys/tasks/rwc-full-alpha-grid-search-picks-the-best-scale/meta.json +27 -0
  8573. mlsys/tasks/rwc-full-alpha-grid-search-picks-the-best-scale/solution_ref.py +24 -0
  8574. mlsys/tasks/rwc-full-alpha-grid-search-picks-the-best-scale/starter.py +4 -0
  8575. mlsys/tasks/rwc-full-alpha-grid-search-picks-the-best-scale/task.md +104 -0
  8576. mlsys/tasks/rwc-full-gptq-column-loop-matches-reference-w-q-and-output/check.py +70 -0
  8577. mlsys/tasks/rwc-full-gptq-column-loop-matches-reference-w-q-and-output/gen_fixtures.py +1 -0
  8578. mlsys/tasks/rwc-full-gptq-column-loop-matches-reference-w-q-and-output/meta.json +27 -0
  8579. mlsys/tasks/rwc-full-gptq-column-loop-matches-reference-w-q-and-output/solution_ref.py +32 -0
  8580. mlsys/tasks/rwc-full-gptq-column-loop-matches-reference-w-q-and-output/starter.py +4 -0
  8581. mlsys/tasks/rwc-full-gptq-column-loop-matches-reference-w-q-and-output/task.md +74 -0
  8582. mlsys/tasks/rwc-functionalize-in-place-ops-to-match-eager-output/check.py +47 -0
  8583. mlsys/tasks/rwc-functionalize-in-place-ops-to-match-eager-output/gen_fixtures.py +1 -0
  8584. mlsys/tasks/rwc-functionalize-in-place-ops-to-match-eager-output/meta.json +29 -0
  8585. mlsys/tasks/rwc-functionalize-in-place-ops-to-match-eager-output/solution_ref.py +13 -0
  8586. mlsys/tasks/rwc-functionalize-in-place-ops-to-match-eager-output/starter.py +10 -0
  8587. mlsys/tasks/rwc-functionalize-in-place-ops-to-match-eager-output/task.md +58 -0
  8588. mlsys/tasks/rwc-fuse-an-elementwise-op-chain-into-a-single-pass-kernel/check.py +41 -0
  8589. mlsys/tasks/rwc-fuse-an-elementwise-op-chain-into-a-single-pass-kernel/gen_fixtures.py +1 -0
  8590. mlsys/tasks/rwc-fuse-an-elementwise-op-chain-into-a-single-pass-kernel/meta.json +22 -0
  8591. mlsys/tasks/rwc-fuse-an-elementwise-op-chain-into-a-single-pass-kernel/solution_ref.py +31 -0
  8592. mlsys/tasks/rwc-fuse-an-elementwise-op-chain-into-a-single-pass-kernel/starter.py +13 -0
  8593. mlsys/tasks/rwc-fuse-an-elementwise-op-chain-into-a-single-pass-kernel/task.md +67 -0
  8594. mlsys/tasks/rwc-fuse-the-layernorm-subgraph-into-one-layernormalization-op/check.py +79 -0
  8595. mlsys/tasks/rwc-fuse-the-layernorm-subgraph-into-one-layernormalization-op/gen_fixtures.py +1 -0
  8596. mlsys/tasks/rwc-fuse-the-layernorm-subgraph-into-one-layernormalization-op/meta.json +27 -0
  8597. mlsys/tasks/rwc-fuse-the-layernorm-subgraph-into-one-layernormalization-op/solution_ref.py +34 -0
  8598. mlsys/tasks/rwc-fuse-the-layernorm-subgraph-into-one-layernormalization-op/starter.py +4 -0
  8599. mlsys/tasks/rwc-fuse-the-layernorm-subgraph-into-one-layernormalization-op/task.md +96 -0
  8600. mlsys/tasks/rwc-gptq-vs-rtn-error-reduction-ratio/check.py +71 -0
  8601. mlsys/tasks/rwc-gptq-vs-rtn-error-reduction-ratio/fixtures/w.npy +0 -0
  8602. mlsys/tasks/rwc-gptq-vs-rtn-error-reduction-ratio/fixtures/x.npy +0 -0
  8603. mlsys/tasks/rwc-gptq-vs-rtn-error-reduction-ratio/gen_fixtures.py +29 -0
  8604. mlsys/tasks/rwc-gptq-vs-rtn-error-reduction-ratio/meta.json +25 -0
  8605. mlsys/tasks/rwc-gptq-vs-rtn-error-reduction-ratio/solution_ref.py +54 -0
  8606. mlsys/tasks/rwc-gptq-vs-rtn-error-reduction-ratio/starter.py +21 -0
  8607. mlsys/tasks/rwc-gptq-vs-rtn-error-reduction-ratio/task.md +97 -0
  8608. mlsys/tasks/rwc-gqa-mqa-attention-with-kv-head-broadcast/check.py +69 -0
  8609. mlsys/tasks/rwc-gqa-mqa-attention-with-kv-head-broadcast/gen_fixtures.py +1 -0
  8610. mlsys/tasks/rwc-gqa-mqa-attention-with-kv-head-broadcast/meta.json +22 -0
  8611. mlsys/tasks/rwc-gqa-mqa-attention-with-kv-head-broadcast/solution_ref.py +40 -0
  8612. mlsys/tasks/rwc-gqa-mqa-attention-with-kv-head-broadcast/starter.py +5 -0
  8613. mlsys/tasks/rwc-gqa-mqa-attention-with-kv-head-broadcast/task.md +73 -0
  8614. mlsys/tasks/rwc-identify-the-salient-top-1-input-channels/check.py +25 -0
  8615. mlsys/tasks/rwc-identify-the-salient-top-1-input-channels/gen_fixtures.py +1 -0
  8616. mlsys/tasks/rwc-identify-the-salient-top-1-input-channels/meta.json +22 -0
  8617. mlsys/tasks/rwc-identify-the-salient-top-1-input-channels/solution_ref.py +7 -0
  8618. mlsys/tasks/rwc-identify-the-salient-top-1-input-channels/starter.py +2 -0
  8619. mlsys/tasks/rwc-identify-the-salient-top-1-input-channels/task.md +45 -0
  8620. mlsys/tasks/rwc-imatrix-weighted-scale-search-make-qx-quants/check.py +94 -0
  8621. mlsys/tasks/rwc-imatrix-weighted-scale-search-make-qx-quants/gen_fixtures.py +1 -0
  8622. mlsys/tasks/rwc-imatrix-weighted-scale-search-make-qx-quants/meta.json +22 -0
  8623. mlsys/tasks/rwc-imatrix-weighted-scale-search-make-qx-quants/solution_ref.py +26 -0
  8624. mlsys/tasks/rwc-imatrix-weighted-scale-search-make-qx-quants/starter.py +17 -0
  8625. mlsys/tasks/rwc-imatrix-weighted-scale-search-make-qx-quants/task.md +88 -0
  8626. mlsys/tasks/rwc-implement-onnx-dynamicquantizelinear-uint8-exactly/check.py +51 -0
  8627. mlsys/tasks/rwc-implement-onnx-dynamicquantizelinear-uint8-exactly/fixtures/lengths.npy +0 -0
  8628. mlsys/tasks/rwc-implement-onnx-dynamicquantizelinear-uint8-exactly/fixtures/x.npy +0 -0
  8629. mlsys/tasks/rwc-implement-onnx-dynamicquantizelinear-uint8-exactly/gen_fixtures.py +46 -0
  8630. mlsys/tasks/rwc-implement-onnx-dynamicquantizelinear-uint8-exactly/meta.json +25 -0
  8631. mlsys/tasks/rwc-implement-onnx-dynamicquantizelinear-uint8-exactly/solution_ref.py +24 -0
  8632. mlsys/tasks/rwc-implement-onnx-dynamicquantizelinear-uint8-exactly/starter.py +11 -0
  8633. mlsys/tasks/rwc-implement-onnx-dynamicquantizelinear-uint8-exactly/task.md +77 -0
  8634. mlsys/tasks/rwc-implement-onnx-gemm-op-semantics-alpha-beta-transa-transb/check.py +88 -0
  8635. mlsys/tasks/rwc-implement-onnx-gemm-op-semantics-alpha-beta-transa-transb/gen_fixtures.py +1 -0
  8636. mlsys/tasks/rwc-implement-onnx-gemm-op-semantics-alpha-beta-transa-transb/meta.json +22 -0
  8637. mlsys/tasks/rwc-implement-onnx-gemm-op-semantics-alpha-beta-transa-transb/solution_ref.py +23 -0
  8638. mlsys/tasks/rwc-implement-onnx-gemm-op-semantics-alpha-beta-transa-transb/starter.py +2 -0
  8639. mlsys/tasks/rwc-implement-onnx-gemm-op-semantics-alpha-beta-transa-transb/task.md +59 -0
  8640. mlsys/tasks/rwc-implement-the-percentile-99-9-activation-calibrator/check.py +56 -0
  8641. mlsys/tasks/rwc-implement-the-percentile-99-9-activation-calibrator/gen_fixtures.py +1 -0
  8642. mlsys/tasks/rwc-implement-the-percentile-99-9-activation-calibrator/meta.json +27 -0
  8643. mlsys/tasks/rwc-implement-the-percentile-99-9-activation-calibrator/solution_ref.py +8 -0
  8644. mlsys/tasks/rwc-implement-the-percentile-99-9-activation-calibrator/starter.py +4 -0
  8645. mlsys/tasks/rwc-implement-the-percentile-99-9-activation-calibrator/task.md +56 -0
  8646. mlsys/tasks/rwc-implement-the-tensorrt-entropy-kl-calibrator-threshold/check.py +67 -0
  8647. mlsys/tasks/rwc-implement-the-tensorrt-entropy-kl-calibrator-threshold/gen_fixtures.py +1 -0
  8648. mlsys/tasks/rwc-implement-the-tensorrt-entropy-kl-calibrator-threshold/meta.json +27 -0
  8649. mlsys/tasks/rwc-implement-the-tensorrt-entropy-kl-calibrator-threshold/solution_ref.py +35 -0
  8650. mlsys/tasks/rwc-implement-the-tensorrt-entropy-kl-calibrator-threshold/starter.py +4 -0
  8651. mlsys/tasks/rwc-implement-the-tensorrt-entropy-kl-calibrator-threshold/task.md +75 -0
  8652. mlsys/tasks/rwc-int4-groupwise-group-32-symmetric-weight-quant/check.py +78 -0
  8653. mlsys/tasks/rwc-int4-groupwise-group-32-symmetric-weight-quant/gen_fixtures.py +1 -0
  8654. mlsys/tasks/rwc-int4-groupwise-group-32-symmetric-weight-quant/meta.json +22 -0
  8655. mlsys/tasks/rwc-int4-groupwise-group-32-symmetric-weight-quant/solution_ref.py +31 -0
  8656. mlsys/tasks/rwc-int4-groupwise-group-32-symmetric-weight-quant/starter.py +21 -0
  8657. mlsys/tasks/rwc-int4-groupwise-group-32-symmetric-weight-quant/task.md +73 -0
  8658. mlsys/tasks/rwc-int4-weight-only-groupwise-group-32-asymmetric/check.py +78 -0
  8659. mlsys/tasks/rwc-int4-weight-only-groupwise-group-32-asymmetric/gen_fixtures.py +1 -0
  8660. mlsys/tasks/rwc-int4-weight-only-groupwise-group-32-asymmetric/meta.json +27 -0
  8661. mlsys/tasks/rwc-int4-weight-only-groupwise-group-32-asymmetric/solution_ref.py +59 -0
  8662. mlsys/tasks/rwc-int4-weight-only-groupwise-group-32-asymmetric/starter.py +11 -0
  8663. mlsys/tasks/rwc-int4-weight-only-groupwise-group-32-asymmetric/task.md +79 -0
  8664. mlsys/tasks/rwc-int8-dynamic-act-per-token-x-int8-weight-per-channel-w8a8/check.py +37 -0
  8665. mlsys/tasks/rwc-int8-dynamic-act-per-token-x-int8-weight-per-channel-w8a8/gen_fixtures.py +1 -0
  8666. mlsys/tasks/rwc-int8-dynamic-act-per-token-x-int8-weight-per-channel-w8a8/meta.json +22 -0
  8667. mlsys/tasks/rwc-int8-dynamic-act-per-token-x-int8-weight-per-channel-w8a8/solution_ref.py +18 -0
  8668. mlsys/tasks/rwc-int8-dynamic-act-per-token-x-int8-weight-per-channel-w8a8/starter.py +4 -0
  8669. mlsys/tasks/rwc-int8-dynamic-act-per-token-x-int8-weight-per-channel-w8a8/task.md +77 -0
  8670. mlsys/tasks/rwc-int8-quant-error-with-vs-without-smoothquant/check.py +73 -0
  8671. mlsys/tasks/rwc-int8-quant-error-with-vs-without-smoothquant/fixtures/W.npy +0 -0
  8672. mlsys/tasks/rwc-int8-quant-error-with-vs-without-smoothquant/fixtures/X.npy +0 -0
  8673. mlsys/tasks/rwc-int8-quant-error-with-vs-without-smoothquant/gen_fixtures.py +30 -0
  8674. mlsys/tasks/rwc-int8-quant-error-with-vs-without-smoothquant/meta.json +25 -0
  8675. mlsys/tasks/rwc-int8-quant-error-with-vs-without-smoothquant/solution_ref.py +68 -0
  8676. mlsys/tasks/rwc-int8-quant-error-with-vs-without-smoothquant/starter.py +29 -0
  8677. mlsys/tasks/rwc-int8-quant-error-with-vs-without-smoothquant/task.md +81 -0
  8678. mlsys/tasks/rwc-kv-memory-saving-ratio-attention-output-error/check.py +68 -0
  8679. mlsys/tasks/rwc-kv-memory-saving-ratio-attention-output-error/gen_fixtures.py +1 -0
  8680. mlsys/tasks/rwc-kv-memory-saving-ratio-attention-output-error/meta.json +27 -0
  8681. mlsys/tasks/rwc-kv-memory-saving-ratio-attention-output-error/solution_ref.py +34 -0
  8682. mlsys/tasks/rwc-kv-memory-saving-ratio-attention-output-error/starter.py +4 -0
  8683. mlsys/tasks/rwc-kv-memory-saving-ratio-attention-output-error/task.md +88 -0
  8684. mlsys/tasks/rwc-magnitude-2-4-vs-sparsegpt-2-4-error/check.py +119 -0
  8685. mlsys/tasks/rwc-magnitude-2-4-vs-sparsegpt-2-4-error/fixtures/W.npy +0 -0
  8686. mlsys/tasks/rwc-magnitude-2-4-vs-sparsegpt-2-4-error/fixtures/X.npy +0 -0
  8687. mlsys/tasks/rwc-magnitude-2-4-vs-sparsegpt-2-4-error/gen_fixtures.py +43 -0
  8688. mlsys/tasks/rwc-magnitude-2-4-vs-sparsegpt-2-4-error/meta.json +25 -0
  8689. mlsys/tasks/rwc-magnitude-2-4-vs-sparsegpt-2-4-error/solution_ref.py +68 -0
  8690. mlsys/tasks/rwc-magnitude-2-4-vs-sparsegpt-2-4-error/starter.py +35 -0
  8691. mlsys/tasks/rwc-magnitude-2-4-vs-sparsegpt-2-4-error/task.md +93 -0
  8692. mlsys/tasks/rwc-map-pytorch-ops-to-native-onnx-ops-vs-decompositions/check.py +43 -0
  8693. mlsys/tasks/rwc-map-pytorch-ops-to-native-onnx-ops-vs-decompositions/gen_fixtures.py +1 -0
  8694. mlsys/tasks/rwc-map-pytorch-ops-to-native-onnx-ops-vs-decompositions/meta.json +22 -0
  8695. mlsys/tasks/rwc-map-pytorch-ops-to-native-onnx-ops-vs-decompositions/solution_ref.py +21 -0
  8696. mlsys/tasks/rwc-map-pytorch-ops-to-native-onnx-ops-vs-decompositions/starter.py +2 -0
  8697. mlsys/tasks/rwc-map-pytorch-ops-to-native-onnx-ops-vs-decompositions/task.md +33 -0
  8698. mlsys/tasks/rwc-mlx-affine-asymmetric-vs-symmetric-absmax-int4/check.py +55 -0
  8699. mlsys/tasks/rwc-mlx-affine-asymmetric-vs-symmetric-absmax-int4/gen_fixtures.py +1 -0
  8700. mlsys/tasks/rwc-mlx-affine-asymmetric-vs-symmetric-absmax-int4/meta.json +27 -0
  8701. mlsys/tasks/rwc-mlx-affine-asymmetric-vs-symmetric-absmax-int4/solution_ref.py +29 -0
  8702. mlsys/tasks/rwc-mlx-affine-asymmetric-vs-symmetric-absmax-int4/starter.py +4 -0
  8703. mlsys/tasks/rwc-mlx-affine-asymmetric-vs-symmetric-absmax-int4/task.md +92 -0
  8704. mlsys/tasks/rwc-mxfp4-blk32-vs-nvfp4-blk16-reconstruction-error/check.py +128 -0
  8705. mlsys/tasks/rwc-mxfp4-blk32-vs-nvfp4-blk16-reconstruction-error/gen_fixtures.py +1 -0
  8706. mlsys/tasks/rwc-mxfp4-blk32-vs-nvfp4-blk16-reconstruction-error/meta.json +22 -0
  8707. mlsys/tasks/rwc-mxfp4-blk32-vs-nvfp4-blk16-reconstruction-error/solution_ref.py +114 -0
  8708. mlsys/tasks/rwc-mxfp4-blk32-vs-nvfp4-blk16-reconstruction-error/starter.py +20 -0
  8709. mlsys/tasks/rwc-mxfp4-blk32-vs-nvfp4-blk16-reconstruction-error/task.md +79 -0
  8710. mlsys/tasks/rwc-mxfp4-quant-dequant-block-32-e2m1-e8m0/check.py +43 -0
  8711. mlsys/tasks/rwc-mxfp4-quant-dequant-block-32-e2m1-e8m0/fixtures/weights.npy +0 -0
  8712. mlsys/tasks/rwc-mxfp4-quant-dequant-block-32-e2m1-e8m0/gen_fixtures.py +28 -0
  8713. mlsys/tasks/rwc-mxfp4-quant-dequant-block-32-e2m1-e8m0/meta.json +29 -0
  8714. mlsys/tasks/rwc-mxfp4-quant-dequant-block-32-e2m1-e8m0/solution_ref.py +23 -0
  8715. mlsys/tasks/rwc-mxfp4-quant-dequant-block-32-e2m1-e8m0/starter.py +16 -0
  8716. mlsys/tasks/rwc-mxfp4-quant-dequant-block-32-e2m1-e8m0/task.md +90 -0
  8717. mlsys/tasks/rwc-nf4-quantize-dequant-matches-the-reference-codebook/check.py +49 -0
  8718. mlsys/tasks/rwc-nf4-quantize-dequant-matches-the-reference-codebook/gen_fixtures.py +1 -0
  8719. mlsys/tasks/rwc-nf4-quantize-dequant-matches-the-reference-codebook/meta.json +27 -0
  8720. mlsys/tasks/rwc-nf4-quantize-dequant-matches-the-reference-codebook/solution_ref.py +25 -0
  8721. mlsys/tasks/rwc-nf4-quantize-dequant-matches-the-reference-codebook/starter.py +4 -0
  8722. mlsys/tasks/rwc-nf4-quantize-dequant-matches-the-reference-codebook/task.md +34 -0
  8723. mlsys/tasks/rwc-nf4-vs-fp4-vs-int4-rtn-on-a-normal-weight/check.py +98 -0
  8724. mlsys/tasks/rwc-nf4-vs-fp4-vs-int4-rtn-on-a-normal-weight/gen_fixtures.py +1 -0
  8725. mlsys/tasks/rwc-nf4-vs-fp4-vs-int4-rtn-on-a-normal-weight/meta.json +22 -0
  8726. mlsys/tasks/rwc-nf4-vs-fp4-vs-int4-rtn-on-a-normal-weight/solution_ref.py +80 -0
  8727. mlsys/tasks/rwc-nf4-vs-fp4-vs-int4-rtn-on-a-normal-weight/starter.py +22 -0
  8728. mlsys/tasks/rwc-nf4-vs-fp4-vs-int4-rtn-on-a-normal-weight/task.md +93 -0
  8729. mlsys/tasks/rwc-nvfp4-two-level-scaling-block-16-e4m3-block-scale-fp32-global/check.py +82 -0
  8730. mlsys/tasks/rwc-nvfp4-two-level-scaling-block-16-e4m3-block-scale-fp32-global/gen_fixtures.py +1 -0
  8731. mlsys/tasks/rwc-nvfp4-two-level-scaling-block-16-e4m3-block-scale-fp32-global/meta.json +32 -0
  8732. mlsys/tasks/rwc-nvfp4-two-level-scaling-block-16-e4m3-block-scale-fp32-global/solution_ref.py +59 -0
  8733. mlsys/tasks/rwc-nvfp4-two-level-scaling-block-16-e4m3-block-scale-fp32-global/starter.py +4 -0
  8734. mlsys/tasks/rwc-nvfp4-two-level-scaling-block-16-e4m3-block-scale-fp32-global/task.md +72 -0
  8735. mlsys/tasks/rwc-one-obq-column-update-with-error-propagation/check.py +67 -0
  8736. mlsys/tasks/rwc-one-obq-column-update-with-error-propagation/gen_fixtures.py +1 -0
  8737. mlsys/tasks/rwc-one-obq-column-update-with-error-propagation/meta.json +22 -0
  8738. mlsys/tasks/rwc-one-obq-column-update-with-error-propagation/solution_ref.py +20 -0
  8739. mlsys/tasks/rwc-one-obq-column-update-with-error-propagation/starter.py +19 -0
  8740. mlsys/tasks/rwc-one-obq-column-update-with-error-propagation/task.md +94 -0
  8741. mlsys/tasks/rwc-optimal-per-tensor-scale-amax-448-for-e4m3/check.py +58 -0
  8742. mlsys/tasks/rwc-optimal-per-tensor-scale-amax-448-for-e4m3/gen_fixtures.py +1 -0
  8743. mlsys/tasks/rwc-optimal-per-tensor-scale-amax-448-for-e4m3/meta.json +27 -0
  8744. mlsys/tasks/rwc-optimal-per-tensor-scale-amax-448-for-e4m3/solution_ref.py +31 -0
  8745. mlsys/tasks/rwc-optimal-per-tensor-scale-amax-448-for-e4m3/starter.py +4 -0
  8746. mlsys/tasks/rwc-optimal-per-tensor-scale-amax-448-for-e4m3/task.md +75 -0
  8747. mlsys/tasks/rwc-pack-b-bit-codes-into-uint32-words-mlx-layout/check.py +53 -0
  8748. mlsys/tasks/rwc-pack-b-bit-codes-into-uint32-words-mlx-layout/gen_fixtures.py +1 -0
  8749. mlsys/tasks/rwc-pack-b-bit-codes-into-uint32-words-mlx-layout/meta.json +23 -0
  8750. mlsys/tasks/rwc-pack-b-bit-codes-into-uint32-words-mlx-layout/solution_ref.py +23 -0
  8751. mlsys/tasks/rwc-pack-b-bit-codes-into-uint32-words-mlx-layout/starter.py +7 -0
  8752. mlsys/tasks/rwc-pack-b-bit-codes-into-uint32-words-mlx-layout/task.md +66 -0
  8753. mlsys/tasks/rwc-paged-fp8-kv-gather-dequant-attention/check.py +131 -0
  8754. mlsys/tasks/rwc-paged-fp8-kv-gather-dequant-attention/gen_fixtures.py +1 -0
  8755. mlsys/tasks/rwc-paged-fp8-kv-gather-dequant-attention/meta.json +22 -0
  8756. mlsys/tasks/rwc-paged-fp8-kv-gather-dequant-attention/solution_ref.py +44 -0
  8757. mlsys/tasks/rwc-paged-fp8-kv-gather-dequant-attention/starter.py +16 -0
  8758. mlsys/tasks/rwc-paged-fp8-kv-gather-dequant-attention/task.md +74 -0
  8759. mlsys/tasks/rwc-partition-ops-xnnpack-delegatable-vs-portable-fallback/check.py +46 -0
  8760. mlsys/tasks/rwc-partition-ops-xnnpack-delegatable-vs-portable-fallback/gen_fixtures.py +1 -0
  8761. mlsys/tasks/rwc-partition-ops-xnnpack-delegatable-vs-portable-fallback/meta.json +22 -0
  8762. mlsys/tasks/rwc-partition-ops-xnnpack-delegatable-vs-portable-fallback/solution_ref.py +13 -0
  8763. mlsys/tasks/rwc-partition-ops-xnnpack-delegatable-vs-portable-fallback/starter.py +4 -0
  8764. mlsys/tasks/rwc-partition-ops-xnnpack-delegatable-vs-portable-fallback/task.md +59 -0
  8765. mlsys/tasks/rwc-per-channel-fp8-weight-quant/check.py +102 -0
  8766. mlsys/tasks/rwc-per-channel-fp8-weight-quant/gen_fixtures.py +1 -0
  8767. mlsys/tasks/rwc-per-channel-fp8-weight-quant/meta.json +22 -0
  8768. mlsys/tasks/rwc-per-channel-fp8-weight-quant/solution_ref.py +58 -0
  8769. mlsys/tasks/rwc-per-channel-fp8-weight-quant/starter.py +16 -0
  8770. mlsys/tasks/rwc-per-channel-fp8-weight-quant/task.md +71 -0
  8771. mlsys/tasks/rwc-per-group-asymmetric-4-bit-quant-scale-zero/check.py +82 -0
  8772. mlsys/tasks/rwc-per-group-asymmetric-4-bit-quant-scale-zero/gen_fixtures.py +1 -0
  8773. mlsys/tasks/rwc-per-group-asymmetric-4-bit-quant-scale-zero/meta.json +27 -0
  8774. mlsys/tasks/rwc-per-group-asymmetric-4-bit-quant-scale-zero/solution_ref.py +38 -0
  8775. mlsys/tasks/rwc-per-group-asymmetric-4-bit-quant-scale-zero/starter.py +18 -0
  8776. mlsys/tasks/rwc-per-group-asymmetric-4-bit-quant-scale-zero/task.md +68 -0
  8777. mlsys/tasks/rwc-per-group-min-max-scale-bias-group-64/check.py +44 -0
  8778. mlsys/tasks/rwc-per-group-min-max-scale-bias-group-64/gen_fixtures.py +1 -0
  8779. mlsys/tasks/rwc-per-group-min-max-scale-bias-group-64/meta.json +22 -0
  8780. mlsys/tasks/rwc-per-group-min-max-scale-bias-group-64/solution_ref.py +13 -0
  8781. mlsys/tasks/rwc-per-group-min-max-scale-bias-group-64/starter.py +4 -0
  8782. mlsys/tasks/rwc-per-group-min-max-scale-bias-group-64/task.md +60 -0
  8783. mlsys/tasks/rwc-per-head-kv-scales/check.py +115 -0
  8784. mlsys/tasks/rwc-per-head-kv-scales/gen_fixtures.py +1 -0
  8785. mlsys/tasks/rwc-per-head-kv-scales/meta.json +22 -0
  8786. mlsys/tasks/rwc-per-head-kv-scales/solution_ref.py +71 -0
  8787. mlsys/tasks/rwc-per-head-kv-scales/starter.py +16 -0
  8788. mlsys/tasks/rwc-per-head-kv-scales/task.md +73 -0
  8789. mlsys/tasks/rwc-per-tensor-fp8-e4m3-kv-quant-attention/check.py +37 -0
  8790. mlsys/tasks/rwc-per-tensor-fp8-e4m3-kv-quant-attention/gen_fixtures.py +1 -0
  8791. mlsys/tasks/rwc-per-tensor-fp8-e4m3-kv-quant-attention/meta.json +22 -0
  8792. mlsys/tasks/rwc-per-tensor-fp8-e4m3-kv-quant-attention/solution_ref.py +18 -0
  8793. mlsys/tasks/rwc-per-tensor-fp8-e4m3-kv-quant-attention/starter.py +7 -0
  8794. mlsys/tasks/rwc-per-tensor-fp8-e4m3-kv-quant-attention/task.md +51 -0
  8795. mlsys/tasks/rwc-per-tensor-int8-symmetric-fake-quant-with-amax-scaling/check.py +44 -0
  8796. mlsys/tasks/rwc-per-tensor-int8-symmetric-fake-quant-with-amax-scaling/gen_fixtures.py +1 -0
  8797. mlsys/tasks/rwc-per-tensor-int8-symmetric-fake-quant-with-amax-scaling/meta.json +27 -0
  8798. mlsys/tasks/rwc-per-tensor-int8-symmetric-fake-quant-with-amax-scaling/solution_ref.py +13 -0
  8799. mlsys/tasks/rwc-per-tensor-int8-symmetric-fake-quant-with-amax-scaling/starter.py +4 -0
  8800. mlsys/tasks/rwc-per-tensor-int8-symmetric-fake-quant-with-amax-scaling/task.md +76 -0
  8801. mlsys/tasks/rwc-per-tensor-vs-per-channel-int8-which-halves-the-error/check.py +80 -0
  8802. mlsys/tasks/rwc-per-tensor-vs-per-channel-int8-which-halves-the-error/gen_fixtures.py +1 -0
  8803. mlsys/tasks/rwc-per-tensor-vs-per-channel-int8-which-halves-the-error/meta.json +27 -0
  8804. mlsys/tasks/rwc-per-tensor-vs-per-channel-int8-which-halves-the-error/solution_ref.py +33 -0
  8805. mlsys/tasks/rwc-per-tensor-vs-per-channel-int8-which-halves-the-error/starter.py +19 -0
  8806. mlsys/tasks/rwc-per-tensor-vs-per-channel-int8-which-halves-the-error/task.md +92 -0
  8807. mlsys/tasks/rwc-per-tensor-vs-per-head-fp8-kv-on-an-outlier-head/check.py +65 -0
  8808. mlsys/tasks/rwc-per-tensor-vs-per-head-fp8-kv-on-an-outlier-head/gen_fixtures.py +1 -0
  8809. mlsys/tasks/rwc-per-tensor-vs-per-head-fp8-kv-on-an-outlier-head/meta.json +27 -0
  8810. mlsys/tasks/rwc-per-tensor-vs-per-head-fp8-kv-on-an-outlier-head/solution_ref.py +38 -0
  8811. mlsys/tasks/rwc-per-tensor-vs-per-head-fp8-kv-on-an-outlier-head/starter.py +10 -0
  8812. mlsys/tasks/rwc-per-tensor-vs-per-head-fp8-kv-on-an-outlier-head/task.md +77 -0
  8813. mlsys/tasks/rwc-per-token-int8-dynamic-activation-quant/check.py +26 -0
  8814. mlsys/tasks/rwc-per-token-int8-dynamic-activation-quant/gen_fixtures.py +1 -0
  8815. mlsys/tasks/rwc-per-token-int8-dynamic-activation-quant/meta.json +22 -0
  8816. mlsys/tasks/rwc-per-token-int8-dynamic-activation-quant/solution_ref.py +24 -0
  8817. mlsys/tasks/rwc-per-token-int8-dynamic-activation-quant/starter.py +18 -0
  8818. mlsys/tasks/rwc-per-token-int8-dynamic-activation-quant/task.md +46 -0
  8819. mlsys/tasks/rwc-pick-layers-to-keep-in-fp16-by-sensitivity/check.py +24 -0
  8820. mlsys/tasks/rwc-pick-layers-to-keep-in-fp16-by-sensitivity/gen_fixtures.py +1 -0
  8821. mlsys/tasks/rwc-pick-layers-to-keep-in-fp16-by-sensitivity/meta.json +22 -0
  8822. mlsys/tasks/rwc-pick-layers-to-keep-in-fp16-by-sensitivity/solution_ref.py +24 -0
  8823. mlsys/tasks/rwc-pick-layers-to-keep-in-fp16-by-sensitivity/starter.py +4 -0
  8824. mlsys/tasks/rwc-pick-layers-to-keep-in-fp16-by-sensitivity/task.md +37 -0
  8825. mlsys/tasks/rwc-pick-the-eligible-sdpa-backend-from-constraints/check.py +31 -0
  8826. mlsys/tasks/rwc-pick-the-eligible-sdpa-backend-from-constraints/gen_fixtures.py +1 -0
  8827. mlsys/tasks/rwc-pick-the-eligible-sdpa-backend-from-constraints/meta.json +22 -0
  8828. mlsys/tasks/rwc-pick-the-eligible-sdpa-backend-from-constraints/solution_ref.py +26 -0
  8829. mlsys/tasks/rwc-pick-the-eligible-sdpa-backend-from-constraints/starter.py +2 -0
  8830. mlsys/tasks/rwc-pick-the-eligible-sdpa-backend-from-constraints/task.md +35 -0
  8831. mlsys/tasks/rwc-pick-the-max-autotune-tile-via-wave-quantization-cost/check.py +80 -0
  8832. mlsys/tasks/rwc-pick-the-max-autotune-tile-via-wave-quantization-cost/gen_fixtures.py +2 -0
  8833. mlsys/tasks/rwc-pick-the-max-autotune-tile-via-wave-quantization-cost/meta.json +27 -0
  8834. mlsys/tasks/rwc-pick-the-max-autotune-tile-via-wave-quantization-cost/solution_ref.py +35 -0
  8835. mlsys/tasks/rwc-pick-the-max-autotune-tile-via-wave-quantization-cost/starter.py +22 -0
  8836. mlsys/tasks/rwc-pick-the-max-autotune-tile-via-wave-quantization-cost/task.md +96 -0
  8837. mlsys/tasks/rwc-propagate-symbolic-shapes-and-emit-dim-guards/check.py +90 -0
  8838. mlsys/tasks/rwc-propagate-symbolic-shapes-and-emit-dim-guards/gen_fixtures.py +1 -0
  8839. mlsys/tasks/rwc-propagate-symbolic-shapes-and-emit-dim-guards/meta.json +22 -0
  8840. mlsys/tasks/rwc-propagate-symbolic-shapes-and-emit-dim-guards/solution_ref.py +50 -0
  8841. mlsys/tasks/rwc-propagate-symbolic-shapes-and-emit-dim-guards/starter.py +3 -0
  8842. mlsys/tasks/rwc-propagate-symbolic-shapes-and-emit-dim-guards/task.md +97 -0
  8843. mlsys/tasks/rwc-push-the-scale-into-the-preceding-layernorm-params/check.py +74 -0
  8844. mlsys/tasks/rwc-push-the-scale-into-the-preceding-layernorm-params/gen_fixtures.py +1 -0
  8845. mlsys/tasks/rwc-push-the-scale-into-the-preceding-layernorm-params/meta.json +27 -0
  8846. mlsys/tasks/rwc-push-the-scale-into-the-preceding-layernorm-params/solution_ref.py +35 -0
  8847. mlsys/tasks/rwc-push-the-scale-into-the-preceding-layernorm-params/starter.py +11 -0
  8848. mlsys/tasks/rwc-push-the-scale-into-the-preceding-layernorm-params/task.md +157 -0
  8849. mlsys/tasks/rwc-q4-0-symmetric-4-bit-fp16-scale-matches-ggml/check.py +55 -0
  8850. mlsys/tasks/rwc-q4-0-symmetric-4-bit-fp16-scale-matches-ggml/gen_fixtures.py +1 -0
  8851. mlsys/tasks/rwc-q4-0-symmetric-4-bit-fp16-scale-matches-ggml/meta.json +23 -0
  8852. mlsys/tasks/rwc-q4-0-symmetric-4-bit-fp16-scale-matches-ggml/solution_ref.py +30 -0
  8853. mlsys/tasks/rwc-q4-0-symmetric-4-bit-fp16-scale-matches-ggml/starter.py +33 -0
  8854. mlsys/tasks/rwc-q4-0-symmetric-4-bit-fp16-scale-matches-ggml/task.md +72 -0
  8855. mlsys/tasks/rwc-q4-0-vs-q4-k-vs-imatrix-q4-k-error-on-a-real-row/check.py +116 -0
  8856. mlsys/tasks/rwc-q4-0-vs-q4-k-vs-imatrix-q4-k-error-on-a-real-row/gen_fixtures.py +1 -0
  8857. mlsys/tasks/rwc-q4-0-vs-q4-k-vs-imatrix-q4-k-error-on-a-real-row/meta.json +27 -0
  8858. mlsys/tasks/rwc-q4-0-vs-q4-k-vs-imatrix-q4-k-error-on-a-real-row/solution_ref.py +46 -0
  8859. mlsys/tasks/rwc-q4-0-vs-q4-k-vs-imatrix-q4-k-error-on-a-real-row/starter.py +14 -0
  8860. mlsys/tasks/rwc-q4-0-vs-q4-k-vs-imatrix-q4-k-error-on-a-real-row/task.md +102 -0
  8861. mlsys/tasks/rwc-q4-1-asymmetric-scale-min-matches-ggml/check.py +74 -0
  8862. mlsys/tasks/rwc-q4-1-asymmetric-scale-min-matches-ggml/gen_fixtures.py +1 -0
  8863. mlsys/tasks/rwc-q4-1-asymmetric-scale-min-matches-ggml/meta.json +27 -0
  8864. mlsys/tasks/rwc-q4-1-asymmetric-scale-min-matches-ggml/solution_ref.py +24 -0
  8865. mlsys/tasks/rwc-q4-1-asymmetric-scale-min-matches-ggml/starter.py +17 -0
  8866. mlsys/tasks/rwc-q4-1-asymmetric-scale-min-matches-ggml/task.md +82 -0
  8867. mlsys/tasks/rwc-q4-k-super-block-256-two-level-k-quant/check.py +129 -0
  8868. mlsys/tasks/rwc-q4-k-super-block-256-two-level-k-quant/gen_fixtures.py +1 -0
  8869. mlsys/tasks/rwc-q4-k-super-block-256-two-level-k-quant/meta.json +28 -0
  8870. mlsys/tasks/rwc-q4-k-super-block-256-two-level-k-quant/solution_ref.py +92 -0
  8871. mlsys/tasks/rwc-q4-k-super-block-256-two-level-k-quant/starter.py +7 -0
  8872. mlsys/tasks/rwc-q4-k-super-block-256-two-level-k-quant/task.md +79 -0
  8873. mlsys/tasks/rwc-q6-k-super-block-reconstruction/check.py +52 -0
  8874. mlsys/tasks/rwc-q6-k-super-block-reconstruction/gen_fixtures.py +2 -0
  8875. mlsys/tasks/rwc-q6-k-super-block-reconstruction/meta.json +22 -0
  8876. mlsys/tasks/rwc-q6-k-super-block-reconstruction/solution_ref.py +31 -0
  8877. mlsys/tasks/rwc-q6-k-super-block-reconstruction/starter.py +16 -0
  8878. mlsys/tasks/rwc-q6-k-super-block-reconstruction/task.md +85 -0
  8879. mlsys/tasks/rwc-q8-0-block-quant-dequant-matches-ggml/check.py +62 -0
  8880. mlsys/tasks/rwc-q8-0-block-quant-dequant-matches-ggml/gen_fixtures.py +1 -0
  8881. mlsys/tasks/rwc-q8-0-block-quant-dequant-matches-ggml/meta.json +23 -0
  8882. mlsys/tasks/rwc-q8-0-block-quant-dequant-matches-ggml/solution_ref.py +32 -0
  8883. mlsys/tasks/rwc-q8-0-block-quant-dequant-matches-ggml/starter.py +7 -0
  8884. mlsys/tasks/rwc-q8-0-block-quant-dequant-matches-ggml/task.md +66 -0
  8885. mlsys/tasks/rwc-quantizedlinear-matmul-per-group-dequant-equals-dense/check.py +41 -0
  8886. mlsys/tasks/rwc-quantizedlinear-matmul-per-group-dequant-equals-dense/gen_fixtures.py +1 -0
  8887. mlsys/tasks/rwc-quantizedlinear-matmul-per-group-dequant-equals-dense/meta.json +22 -0
  8888. mlsys/tasks/rwc-quantizedlinear-matmul-per-group-dequant-equals-dense/solution_ref.py +9 -0
  8889. mlsys/tasks/rwc-quantizedlinear-matmul-per-group-dequant-equals-dense/starter.py +4 -0
  8890. mlsys/tasks/rwc-quantizedlinear-matmul-per-group-dequant-equals-dense/task.md +68 -0
  8891. mlsys/tasks/rwc-reconstruct-dense-from-compressed-values-metadata/check.py +66 -0
  8892. mlsys/tasks/rwc-reconstruct-dense-from-compressed-values-metadata/gen_fixtures.py +1 -0
  8893. mlsys/tasks/rwc-reconstruct-dense-from-compressed-values-metadata/meta.json +27 -0
  8894. mlsys/tasks/rwc-reconstruct-dense-from-compressed-values-metadata/solution_ref.py +28 -0
  8895. mlsys/tasks/rwc-reconstruct-dense-from-compressed-values-metadata/starter.py +4 -0
  8896. mlsys/tasks/rwc-reconstruct-dense-from-compressed-values-metadata/task.md +55 -0
  8897. mlsys/tasks/rwc-reconstruct-dense-weight-from-affinequantizedtensor-fields/check.py +90 -0
  8898. mlsys/tasks/rwc-reconstruct-dense-weight-from-affinequantizedtensor-fields/gen_fixtures.py +1 -0
  8899. mlsys/tasks/rwc-reconstruct-dense-weight-from-affinequantizedtensor-fields/meta.json +22 -0
  8900. mlsys/tasks/rwc-reconstruct-dense-weight-from-affinequantizedtensor-fields/solution_ref.py +38 -0
  8901. mlsys/tasks/rwc-reconstruct-dense-weight-from-affinequantizedtensor-fields/starter.py +19 -0
  8902. mlsys/tasks/rwc-reconstruct-dense-weight-from-affinequantizedtensor-fields/task.md +75 -0
  8903. mlsys/tasks/rwc-reference-sdpa-scaled-causal-mask/check.py +45 -0
  8904. mlsys/tasks/rwc-reference-sdpa-scaled-causal-mask/gen_fixtures.py +1 -0
  8905. mlsys/tasks/rwc-reference-sdpa-scaled-causal-mask/meta.json +22 -0
  8906. mlsys/tasks/rwc-reference-sdpa-scaled-causal-mask/solution_ref.py +43 -0
  8907. mlsys/tasks/rwc-reference-sdpa-scaled-causal-mask/starter.py +5 -0
  8908. mlsys/tasks/rwc-reference-sdpa-scaled-causal-mask/task.md +74 -0
  8909. mlsys/tasks/rwc-replay-a-cuda-graph-static-buffer-capture-correctly/check.py +49 -0
  8910. mlsys/tasks/rwc-replay-a-cuda-graph-static-buffer-capture-correctly/gen_fixtures.py +1 -0
  8911. mlsys/tasks/rwc-replay-a-cuda-graph-static-buffer-capture-correctly/meta.json +22 -0
  8912. mlsys/tasks/rwc-replay-a-cuda-graph-static-buffer-capture-correctly/solution_ref.py +20 -0
  8913. mlsys/tasks/rwc-replay-a-cuda-graph-static-buffer-capture-correctly/starter.py +4 -0
  8914. mlsys/tasks/rwc-replay-a-cuda-graph-static-buffer-capture-correctly/task.md +67 -0
  8915. mlsys/tasks/rwc-run-onnx-shape-inference-through-dynamic-axes/check.py +197 -0
  8916. mlsys/tasks/rwc-run-onnx-shape-inference-through-dynamic-axes/gen_fixtures.py +1 -0
  8917. mlsys/tasks/rwc-run-onnx-shape-inference-through-dynamic-axes/meta.json +22 -0
  8918. mlsys/tasks/rwc-run-onnx-shape-inference-through-dynamic-axes/solution_ref.py +69 -0
  8919. mlsys/tasks/rwc-run-onnx-shape-inference-through-dynamic-axes/starter.py +13 -0
  8920. mlsys/tasks/rwc-run-onnx-shape-inference-through-dynamic-axes/task.md +89 -0
  8921. mlsys/tasks/rwc-search-alpha-to-balance-activation-vs-weight-quant-error/check.py +112 -0
  8922. mlsys/tasks/rwc-search-alpha-to-balance-activation-vs-weight-quant-error/gen_fixtures.py +1 -0
  8923. mlsys/tasks/rwc-search-alpha-to-balance-activation-vs-weight-quant-error/meta.json +27 -0
  8924. mlsys/tasks/rwc-search-alpha-to-balance-activation-vs-weight-quant-error/solution_ref.py +65 -0
  8925. mlsys/tasks/rwc-search-alpha-to-balance-activation-vs-weight-quant-error/starter.py +26 -0
  8926. mlsys/tasks/rwc-search-alpha-to-balance-activation-vs-weight-quant-error/task.md +109 -0
  8927. mlsys/tasks/rwc-search-the-fp8-scale-to-minimize-mse-clip-vs-round/check.py +83 -0
  8928. mlsys/tasks/rwc-search-the-fp8-scale-to-minimize-mse-clip-vs-round/gen_fixtures.py +1 -0
  8929. mlsys/tasks/rwc-search-the-fp8-scale-to-minimize-mse-clip-vs-round/meta.json +27 -0
  8930. mlsys/tasks/rwc-search-the-fp8-scale-to-minimize-mse-clip-vs-round/solution_ref.py +41 -0
  8931. mlsys/tasks/rwc-search-the-fp8-scale-to-minimize-mse-clip-vs-round/starter.py +4 -0
  8932. mlsys/tasks/rwc-search-the-fp8-scale-to-minimize-mse-clip-vs-round/task.md +77 -0
  8933. mlsys/tasks/rwc-search-the-per-channel-weight-clip-ratio/check.py +74 -0
  8934. mlsys/tasks/rwc-search-the-per-channel-weight-clip-ratio/gen_fixtures.py +1 -0
  8935. mlsys/tasks/rwc-search-the-per-channel-weight-clip-ratio/meta.json +27 -0
  8936. mlsys/tasks/rwc-search-the-per-channel-weight-clip-ratio/solution_ref.py +22 -0
  8937. mlsys/tasks/rwc-search-the-per-channel-weight-clip-ratio/starter.py +4 -0
  8938. mlsys/tasks/rwc-search-the-per-channel-weight-clip-ratio/task.md +85 -0
  8939. mlsys/tasks/rwc-select-the-kept-2-of-4-per-group-mask/check.py +31 -0
  8940. mlsys/tasks/rwc-select-the-kept-2-of-4-per-group-mask/gen_fixtures.py +1 -0
  8941. mlsys/tasks/rwc-select-the-kept-2-of-4-per-group-mask/meta.json +22 -0
  8942. mlsys/tasks/rwc-select-the-kept-2-of-4-per-group-mask/solution_ref.py +12 -0
  8943. mlsys/tasks/rwc-select-the-kept-2-of-4-per-group-mask/starter.py +4 -0
  8944. mlsys/tasks/rwc-select-the-kept-2-of-4-per-group-mask/task.md +34 -0
  8945. mlsys/tasks/rwc-sparsegpt-2-4-mask-via-hessian-saliency-compensation/check.py +70 -0
  8946. mlsys/tasks/rwc-sparsegpt-2-4-mask-via-hessian-saliency-compensation/gen_fixtures.py +1 -0
  8947. mlsys/tasks/rwc-sparsegpt-2-4-mask-via-hessian-saliency-compensation/meta.json +27 -0
  8948. mlsys/tasks/rwc-sparsegpt-2-4-mask-via-hessian-saliency-compensation/solution_ref.py +31 -0
  8949. mlsys/tasks/rwc-sparsegpt-2-4-mask-via-hessian-saliency-compensation/starter.py +4 -0
  8950. mlsys/tasks/rwc-sparsegpt-2-4-mask-via-hessian-saliency-compensation/task.md +97 -0
  8951. mlsys/tasks/rwc-tag-pointwise-fusible-ops-vs-fusion-barriers-in-an-op-chain/check.py +25 -0
  8952. mlsys/tasks/rwc-tag-pointwise-fusible-ops-vs-fusion-barriers-in-an-op-chain/gen_fixtures.py +1 -0
  8953. mlsys/tasks/rwc-tag-pointwise-fusible-ops-vs-fusion-barriers-in-an-op-chain/meta.json +22 -0
  8954. mlsys/tasks/rwc-tag-pointwise-fusible-ops-vs-fusion-barriers-in-an-op-chain/solution_ref.py +3 -0
  8955. mlsys/tasks/rwc-tag-pointwise-fusible-ops-vs-fusion-barriers-in-an-op-chain/starter.py +2 -0
  8956. mlsys/tasks/rwc-tag-pointwise-fusible-ops-vs-fusion-barriers-in-an-op-chain/task.md +25 -0
  8957. mlsys/tasks/rwc-two-level-accumulation-beats-naive-fp8-accumulation/check.py +74 -0
  8958. mlsys/tasks/rwc-two-level-accumulation-beats-naive-fp8-accumulation/gen_fixtures.py +1 -0
  8959. mlsys/tasks/rwc-two-level-accumulation-beats-naive-fp8-accumulation/meta.json +22 -0
  8960. mlsys/tasks/rwc-two-level-accumulation-beats-naive-fp8-accumulation/solution_ref.py +26 -0
  8961. mlsys/tasks/rwc-two-level-accumulation-beats-naive-fp8-accumulation/starter.py +13 -0
  8962. mlsys/tasks/rwc-two-level-accumulation-beats-naive-fp8-accumulation/task.md +105 -0
  8963. mlsys/tasks/rwc-unpack-the-q4-k-6-bit-scales-mins-blob/check.py +79 -0
  8964. mlsys/tasks/rwc-unpack-the-q4-k-6-bit-scales-mins-blob/gen_fixtures.py +1 -0
  8965. mlsys/tasks/rwc-unpack-the-q4-k-6-bit-scales-mins-blob/meta.json +22 -0
  8966. mlsys/tasks/rwc-unpack-the-q4-k-6-bit-scales-mins-blob/solution_ref.py +39 -0
  8967. mlsys/tasks/rwc-unpack-the-q4-k-6-bit-scales-mins-blob/starter.py +17 -0
  8968. mlsys/tasks/rwc-unpack-the-q4-k-6-bit-scales-mins-blob/task.md +83 -0
  8969. mlsys/tasks/rwc-unpack-two-nibbles-per-byte-and-dequant/check.py +57 -0
  8970. mlsys/tasks/rwc-unpack-two-nibbles-per-byte-and-dequant/gen_fixtures.py +1 -0
  8971. mlsys/tasks/rwc-unpack-two-nibbles-per-byte-and-dequant/meta.json +27 -0
  8972. mlsys/tasks/rwc-unpack-two-nibbles-per-byte-and-dequant/solution_ref.py +21 -0
  8973. mlsys/tasks/rwc-unpack-two-nibbles-per-byte-and-dequant/starter.py +4 -0
  8974. mlsys/tasks/rwc-unpack-two-nibbles-per-byte-and-dequant/task.md +72 -0
  8975. mlsys/tasks/rwm-8-bit-vs-4-bit-vs-fp8-optimizer-state-error-ordering/check.py +120 -0
  8976. mlsys/tasks/rwm-8-bit-vs-4-bit-vs-fp8-optimizer-state-error-ordering/gen_fixtures.py +2 -0
  8977. mlsys/tasks/rwm-8-bit-vs-4-bit-vs-fp8-optimizer-state-error-ordering/meta.json +32 -0
  8978. mlsys/tasks/rwm-8-bit-vs-4-bit-vs-fp8-optimizer-state-error-ordering/solution_ref.py +86 -0
  8979. mlsys/tasks/rwm-8-bit-vs-4-bit-vs-fp8-optimizer-state-error-ordering/starter.py +12 -0
  8980. mlsys/tasks/rwm-8-bit-vs-4-bit-vs-fp8-optimizer-state-error-ordering/task.md +111 -0
  8981. mlsys/tasks/rwm-activation-memory-full-store-vs-checkpoint-every-k/check.py +31 -0
  8982. mlsys/tasks/rwm-activation-memory-full-store-vs-checkpoint-every-k/gen_fixtures.py +1 -0
  8983. mlsys/tasks/rwm-activation-memory-full-store-vs-checkpoint-every-k/meta.json +22 -0
  8984. mlsys/tasks/rwm-activation-memory-full-store-vs-checkpoint-every-k/solution_ref.py +32 -0
  8985. mlsys/tasks/rwm-activation-memory-full-store-vs-checkpoint-every-k/starter.py +2 -0
  8986. mlsys/tasks/rwm-activation-memory-full-store-vs-checkpoint-every-k/task.md +53 -0
  8987. mlsys/tasks/rwm-activation-memory-with-without-checkpoint-offload/check.py +34 -0
  8988. mlsys/tasks/rwm-activation-memory-with-without-checkpoint-offload/gen_fixtures.py +1 -0
  8989. mlsys/tasks/rwm-activation-memory-with-without-checkpoint-offload/meta.json +22 -0
  8990. mlsys/tasks/rwm-activation-memory-with-without-checkpoint-offload/solution_ref.py +10 -0
  8991. mlsys/tasks/rwm-activation-memory-with-without-checkpoint-offload/starter.py +4 -0
  8992. mlsys/tasks/rwm-activation-memory-with-without-checkpoint-offload/task.md +66 -0
  8993. mlsys/tasks/rwm-all-gather-unflatten-back-to-original-tensors/check.py +59 -0
  8994. mlsys/tasks/rwm-all-gather-unflatten-back-to-original-tensors/gen_fixtures.py +1 -0
  8995. mlsys/tasks/rwm-all-gather-unflatten-back-to-original-tensors/meta.json +22 -0
  8996. mlsys/tasks/rwm-all-gather-unflatten-back-to-original-tensors/solution_ref.py +15 -0
  8997. mlsys/tasks/rwm-all-gather-unflatten-back-to-original-tensors/starter.py +6 -0
  8998. mlsys/tasks/rwm-all-gather-unflatten-back-to-original-tensors/task.md +75 -0
  8999. mlsys/tasks/rwm-allocate-a-kv-bit-budget-across-nbits-k-nbits-v-window/check.py +103 -0
  9000. mlsys/tasks/rwm-allocate-a-kv-bit-budget-across-nbits-k-nbits-v-window/gen_fixtures.py +1 -0
  9001. mlsys/tasks/rwm-allocate-a-kv-bit-budget-across-nbits-k-nbits-v-window/meta.json +22 -0
  9002. mlsys/tasks/rwm-allocate-a-kv-bit-budget-across-nbits-k-nbits-v-window/solution_ref.py +75 -0
  9003. mlsys/tasks/rwm-allocate-a-kv-bit-budget-across-nbits-k-nbits-v-window/starter.py +16 -0
  9004. mlsys/tasks/rwm-allocate-a-kv-bit-budget-across-nbits-k-nbits-v-window/task.md +96 -0
  9005. mlsys/tasks/rwm-assign-each-layer-to-gpu-cpu-disk-under-a-sequential-device-map/check.py +40 -0
  9006. mlsys/tasks/rwm-assign-each-layer-to-gpu-cpu-disk-under-a-sequential-device-map/gen_fixtures.py +1 -0
  9007. mlsys/tasks/rwm-assign-each-layer-to-gpu-cpu-disk-under-a-sequential-device-map/meta.json +22 -0
  9008. mlsys/tasks/rwm-assign-each-layer-to-gpu-cpu-disk-under-a-sequential-device-map/solution_ref.py +20 -0
  9009. mlsys/tasks/rwm-assign-each-layer-to-gpu-cpu-disk-under-a-sequential-device-map/starter.py +2 -0
  9010. mlsys/tasks/rwm-assign-each-layer-to-gpu-cpu-disk-under-a-sequential-device-map/task.md +51 -0
  9011. mlsys/tasks/rwm-asymmetric-int4-group-quant-dequant-of-k-channel-and-v-token/check.py +99 -0
  9012. mlsys/tasks/rwm-asymmetric-int4-group-quant-dequant-of-k-channel-and-v-token/gen_fixtures.py +1 -0
  9013. mlsys/tasks/rwm-asymmetric-int4-group-quant-dequant-of-k-channel-and-v-token/meta.json +27 -0
  9014. mlsys/tasks/rwm-asymmetric-int4-group-quant-dequant-of-k-channel-and-v-token/solution_ref.py +40 -0
  9015. mlsys/tasks/rwm-asymmetric-int4-group-quant-dequant-of-k-channel-and-v-token/starter.py +26 -0
  9016. mlsys/tasks/rwm-asymmetric-int4-group-quant-dequant-of-k-channel-and-v-token/task.md +88 -0
  9017. mlsys/tasks/rwm-best-fit-caching-allocator-with-split-free-list-reuse/check.py +145 -0
  9018. mlsys/tasks/rwm-best-fit-caching-allocator-with-split-free-list-reuse/gen_fixtures.py +1 -0
  9019. mlsys/tasks/rwm-best-fit-caching-allocator-with-split-free-list-reuse/meta.json +22 -0
  9020. mlsys/tasks/rwm-best-fit-caching-allocator-with-split-free-list-reuse/solution_ref.py +60 -0
  9021. mlsys/tasks/rwm-best-fit-caching-allocator-with-split-free-list-reuse/starter.py +24 -0
  9022. mlsys/tasks/rwm-best-fit-caching-allocator-with-split-free-list-reuse/task.md +91 -0
  9023. mlsys/tasks/rwm-block-allocator-with-free-list-logical-physical-table/check.py +97 -0
  9024. mlsys/tasks/rwm-block-allocator-with-free-list-logical-physical-table/gen_fixtures.py +1 -0
  9025. mlsys/tasks/rwm-block-allocator-with-free-list-logical-physical-table/meta.json +22 -0
  9026. mlsys/tasks/rwm-block-allocator-with-free-list-logical-physical-table/solution_ref.py +25 -0
  9027. mlsys/tasks/rwm-block-allocator-with-free-list-logical-physical-table/starter.py +22 -0
  9028. mlsys/tasks/rwm-block-allocator-with-free-list-logical-physical-table/task.md +66 -0
  9029. mlsys/tasks/rwm-build-the-flatparameter-flatten-pad-chunk-into-n-shards/check.py +63 -0
  9030. mlsys/tasks/rwm-build-the-flatparameter-flatten-pad-chunk-into-n-shards/gen_fixtures.py +1 -0
  9031. mlsys/tasks/rwm-build-the-flatparameter-flatten-pad-chunk-into-n-shards/meta.json +27 -0
  9032. mlsys/tasks/rwm-build-the-flatparameter-flatten-pad-chunk-into-n-shards/solution_ref.py +12 -0
  9033. mlsys/tasks/rwm-build-the-flatparameter-flatten-pad-chunk-into-n-shards/starter.py +22 -0
  9034. mlsys/tasks/rwm-build-the-flatparameter-flatten-pad-chunk-into-n-shards/task.md +76 -0
  9035. mlsys/tasks/rwm-bytes-per-param-optimizer-variant/check.py +36 -0
  9036. mlsys/tasks/rwm-bytes-per-param-optimizer-variant/gen_fixtures.py +1 -0
  9037. mlsys/tasks/rwm-bytes-per-param-optimizer-variant/meta.json +22 -0
  9038. mlsys/tasks/rwm-bytes-per-param-optimizer-variant/solution_ref.py +10 -0
  9039. mlsys/tasks/rwm-bytes-per-param-optimizer-variant/starter.py +2 -0
  9040. mlsys/tasks/rwm-bytes-per-param-optimizer-variant/task.md +46 -0
  9041. mlsys/tasks/rwm-cacheblend-non-prefix-chunk-reuse-boundary-recompute/check.py +78 -0
  9042. mlsys/tasks/rwm-cacheblend-non-prefix-chunk-reuse-boundary-recompute/gen_fixtures.py +1 -0
  9043. mlsys/tasks/rwm-cacheblend-non-prefix-chunk-reuse-boundary-recompute/meta.json +24 -0
  9044. mlsys/tasks/rwm-cacheblend-non-prefix-chunk-reuse-boundary-recompute/solution_ref.py +36 -0
  9045. mlsys/tasks/rwm-cacheblend-non-prefix-chunk-reuse-boundary-recompute/starter.py +2 -0
  9046. mlsys/tasks/rwm-cacheblend-non-prefix-chunk-reuse-boundary-recompute/task.md +74 -0
  9047. mlsys/tasks/rwm-chained-chunk-hashing-store-lookup-lmcache/check.py +58 -0
  9048. mlsys/tasks/rwm-chained-chunk-hashing-store-lookup-lmcache/gen_fixtures.py +1 -0
  9049. mlsys/tasks/rwm-chained-chunk-hashing-store-lookup-lmcache/meta.json +24 -0
  9050. mlsys/tasks/rwm-chained-chunk-hashing-store-lookup-lmcache/solution_ref.py +14 -0
  9051. mlsys/tasks/rwm-chained-chunk-hashing-store-lookup-lmcache/starter.py +4 -0
  9052. mlsys/tasks/rwm-chained-chunk-hashing-store-lookup-lmcache/task.md +75 -0
  9053. mlsys/tasks/rwm-checkpoint-segment-autograd-recompute-verify-grads/check.py +46 -0
  9054. mlsys/tasks/rwm-checkpoint-segment-autograd-recompute-verify-grads/gen_fixtures.py +1 -0
  9055. mlsys/tasks/rwm-checkpoint-segment-autograd-recompute-verify-grads/meta.json +27 -0
  9056. mlsys/tasks/rwm-checkpoint-segment-autograd-recompute-verify-grads/solution_ref.py +43 -0
  9057. mlsys/tasks/rwm-checkpoint-segment-autograd-recompute-verify-grads/starter.py +12 -0
  9058. mlsys/tasks/rwm-checkpoint-segment-autograd-recompute-verify-grads/task.md +88 -0
  9059. mlsys/tasks/rwm-closed-form-per-rank-bytes-incl-offload-subtraction/check.py +54 -0
  9060. mlsys/tasks/rwm-closed-form-per-rank-bytes-incl-offload-subtraction/gen_fixtures.py +1 -0
  9061. mlsys/tasks/rwm-closed-form-per-rank-bytes-incl-offload-subtraction/meta.json +22 -0
  9062. mlsys/tasks/rwm-closed-form-per-rank-bytes-incl-offload-subtraction/solution_ref.py +25 -0
  9063. mlsys/tasks/rwm-closed-form-per-rank-bytes-incl-offload-subtraction/starter.py +2 -0
  9064. mlsys/tasks/rwm-closed-form-per-rank-bytes-incl-offload-subtraction/task.md +73 -0
  9065. mlsys/tasks/rwm-communication-volume-per-step-stage-2-vs-stage-3/check.py +43 -0
  9066. mlsys/tasks/rwm-communication-volume-per-step-stage-2-vs-stage-3/gen_fixtures.py +1 -0
  9067. mlsys/tasks/rwm-communication-volume-per-step-stage-2-vs-stage-3/meta.json +22 -0
  9068. mlsys/tasks/rwm-communication-volume-per-step-stage-2-vs-stage-3/solution_ref.py +8 -0
  9069. mlsys/tasks/rwm-communication-volume-per-step-stage-2-vs-stage-3/starter.py +2 -0
  9070. mlsys/tasks/rwm-communication-volume-per-step-stage-2-vs-stage-3/task.md +46 -0
  9071. mlsys/tasks/rwm-copy-on-write-block-fork-for-beam-parallel-sampling/check.py +84 -0
  9072. mlsys/tasks/rwm-copy-on-write-block-fork-for-beam-parallel-sampling/gen_fixtures.py +1 -0
  9073. mlsys/tasks/rwm-copy-on-write-block-fork-for-beam-parallel-sampling/meta.json +22 -0
  9074. mlsys/tasks/rwm-copy-on-write-block-fork-for-beam-parallel-sampling/solution_ref.py +35 -0
  9075. mlsys/tasks/rwm-copy-on-write-block-fork-for-beam-parallel-sampling/starter.py +2 -0
  9076. mlsys/tasks/rwm-copy-on-write-block-fork-for-beam-parallel-sampling/task.md +70 -0
  9077. mlsys/tasks/rwm-cpu-offload-vs-disk-offload-byte-traffic-per-forward/check.py +39 -0
  9078. mlsys/tasks/rwm-cpu-offload-vs-disk-offload-byte-traffic-per-forward/gen_fixtures.py +1 -0
  9079. mlsys/tasks/rwm-cpu-offload-vs-disk-offload-byte-traffic-per-forward/meta.json +22 -0
  9080. mlsys/tasks/rwm-cpu-offload-vs-disk-offload-byte-traffic-per-forward/solution_ref.py +10 -0
  9081. mlsys/tasks/rwm-cpu-offload-vs-disk-offload-byte-traffic-per-forward/starter.py +3 -0
  9082. mlsys/tasks/rwm-cpu-offload-vs-disk-offload-byte-traffic-per-forward/task.md +78 -0
  9083. mlsys/tasks/rwm-cpu-offload-vs-nvme-offload-residency-zero-infinity/check.py +50 -0
  9084. mlsys/tasks/rwm-cpu-offload-vs-nvme-offload-residency-zero-infinity/gen_fixtures.py +1 -0
  9085. mlsys/tasks/rwm-cpu-offload-vs-nvme-offload-residency-zero-infinity/meta.json +22 -0
  9086. mlsys/tasks/rwm-cpu-offload-vs-nvme-offload-residency-zero-infinity/solution_ref.py +29 -0
  9087. mlsys/tasks/rwm-cpu-offload-vs-nvme-offload-residency-zero-infinity/starter.py +2 -0
  9088. mlsys/tasks/rwm-cpu-offload-vs-nvme-offload-residency-zero-infinity/task.md +75 -0
  9089. mlsys/tasks/rwm-cpu-offloaded-adam-step-equals-single-device-step/check.py +75 -0
  9090. mlsys/tasks/rwm-cpu-offloaded-adam-step-equals-single-device-step/gen_fixtures.py +1 -0
  9091. mlsys/tasks/rwm-cpu-offloaded-adam-step-equals-single-device-step/meta.json +22 -0
  9092. mlsys/tasks/rwm-cpu-offloaded-adam-step-equals-single-device-step/solution_ref.py +31 -0
  9093. mlsys/tasks/rwm-cpu-offloaded-adam-step-equals-single-device-step/starter.py +17 -0
  9094. mlsys/tasks/rwm-cpu-offloaded-adam-step-equals-single-device-step/task.md +86 -0
  9095. mlsys/tasks/rwm-double-quantize-the-absmax-scales-0-4-bits-param/check.py +65 -0
  9096. mlsys/tasks/rwm-double-quantize-the-absmax-scales-0-4-bits-param/gen_fixtures.py +1 -0
  9097. mlsys/tasks/rwm-double-quantize-the-absmax-scales-0-4-bits-param/meta.json +22 -0
  9098. mlsys/tasks/rwm-double-quantize-the-absmax-scales-0-4-bits-param/solution_ref.py +36 -0
  9099. mlsys/tasks/rwm-double-quantize-the-absmax-scales-0-4-bits-param/starter.py +4 -0
  9100. mlsys/tasks/rwm-double-quantize-the-absmax-scales-0-4-bits-param/task.md +79 -0
  9101. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-error-on-log-normal-v-states/check.py +65 -0
  9102. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-error-on-log-normal-v-states/gen_fixtures.py +2 -0
  9103. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-error-on-log-normal-v-states/meta.json +27 -0
  9104. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-error-on-log-normal-v-states/solution_ref.py +42 -0
  9105. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-error-on-log-normal-v-states/starter.py +13 -0
  9106. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-error-on-log-normal-v-states/task.md +87 -0
  9107. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-which-wins-per-input-block/check.py +45 -0
  9108. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-which-wins-per-input-block/gen_fixtures.py +1 -0
  9109. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-which-wins-per-input-block/meta.json +22 -0
  9110. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-which-wins-per-input-block/solution_ref.py +33 -0
  9111. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-which-wins-per-input-block/starter.py +6 -0
  9112. mlsys/tasks/rwm-dynamic-map-vs-linear-int8-which-wins-per-input-block/task.md +48 -0
  9113. mlsys/tasks/rwm-emit-the-async-prefetch-evict-resident-set-per-step/check.py +46 -0
  9114. mlsys/tasks/rwm-emit-the-async-prefetch-evict-resident-set-per-step/gen_fixtures.py +1 -0
  9115. mlsys/tasks/rwm-emit-the-async-prefetch-evict-resident-set-per-step/meta.json +27 -0
  9116. mlsys/tasks/rwm-emit-the-async-prefetch-evict-resident-set-per-step/solution_ref.py +31 -0
  9117. mlsys/tasks/rwm-emit-the-async-prefetch-evict-resident-set-per-step/starter.py +2 -0
  9118. mlsys/tasks/rwm-emit-the-async-prefetch-evict-resident-set-per-step/task.md +43 -0
  9119. mlsys/tasks/rwm-enumerate-the-256-dynamic-map-levels-from-the-bit-budget/check.py +57 -0
  9120. mlsys/tasks/rwm-enumerate-the-256-dynamic-map-levels-from-the-bit-budget/gen_fixtures.py +1 -0
  9121. mlsys/tasks/rwm-enumerate-the-256-dynamic-map-levels-from-the-bit-budget/meta.json +27 -0
  9122. mlsys/tasks/rwm-enumerate-the-256-dynamic-map-levels-from-the-bit-budget/solution_ref.py +28 -0
  9123. mlsys/tasks/rwm-enumerate-the-256-dynamic-map-levels-from-the-bit-budget/starter.py +31 -0
  9124. mlsys/tasks/rwm-enumerate-the-256-dynamic-map-levels-from-the-bit-budget/task.md +86 -0
  9125. mlsys/tasks/rwm-fix-a-checkpoint-that-drops-rng-state-dropout-mismatch/check.py +134 -0
  9126. mlsys/tasks/rwm-fix-a-checkpoint-that-drops-rng-state-dropout-mismatch/gen_fixtures.py +1 -0
  9127. mlsys/tasks/rwm-fix-a-checkpoint-that-drops-rng-state-dropout-mismatch/meta.json +22 -0
  9128. mlsys/tasks/rwm-fix-a-checkpoint-that-drops-rng-state-dropout-mismatch/solution_ref.py +54 -0
  9129. mlsys/tasks/rwm-fix-a-checkpoint-that-drops-rng-state-dropout-mismatch/starter.py +50 -0
  9130. mlsys/tasks/rwm-fix-a-checkpoint-that-drops-rng-state-dropout-mismatch/task.md +97 -0
  9131. mlsys/tasks/rwm-fix-a-global-absmax-8-bit-optimizer-quantizer-blockwise/check.py +60 -0
  9132. mlsys/tasks/rwm-fix-a-global-absmax-8-bit-optimizer-quantizer-blockwise/gen_fixtures.py +1 -0
  9133. mlsys/tasks/rwm-fix-a-global-absmax-8-bit-optimizer-quantizer-blockwise/meta.json +22 -0
  9134. mlsys/tasks/rwm-fix-a-global-absmax-8-bit-optimizer-quantizer-blockwise/solution_ref.py +18 -0
  9135. mlsys/tasks/rwm-fix-a-global-absmax-8-bit-optimizer-quantizer-blockwise/starter.py +14 -0
  9136. mlsys/tasks/rwm-fix-a-global-absmax-8-bit-optimizer-quantizer-blockwise/task.md +81 -0
  9137. mlsys/tasks/rwm-fix-a-hasher-that-hashes-chunks-independently-false-hits/check.py +40 -0
  9138. mlsys/tasks/rwm-fix-a-hasher-that-hashes-chunks-independently-false-hits/gen_fixtures.py +1 -0
  9139. mlsys/tasks/rwm-fix-a-hasher-that-hashes-chunks-independently-false-hits/meta.json +22 -0
  9140. mlsys/tasks/rwm-fix-a-hasher-that-hashes-chunks-independently-false-hits/solution_ref.py +19 -0
  9141. mlsys/tasks/rwm-fix-a-hasher-that-hashes-chunks-independently-false-hits/starter.py +11 -0
  9142. mlsys/tasks/rwm-fix-a-hasher-that-hashes-chunks-independently-false-hits/task.md +50 -0
  9143. mlsys/tasks/rwm-fix-a-kivi-cache-quantizing-k-per-token-and-dropping-the-residual/check.py +62 -0
  9144. mlsys/tasks/rwm-fix-a-kivi-cache-quantizing-k-per-token-and-dropping-the-residual/gen_fixtures.py +1 -0
  9145. mlsys/tasks/rwm-fix-a-kivi-cache-quantizing-k-per-token-and-dropping-the-residual/meta.json +27 -0
  9146. mlsys/tasks/rwm-fix-a-kivi-cache-quantizing-k-per-token-and-dropping-the-residual/solution_ref.py +27 -0
  9147. mlsys/tasks/rwm-fix-a-kivi-cache-quantizing-k-per-token-and-dropping-the-residual/starter.py +28 -0
  9148. mlsys/tasks/rwm-fix-a-kivi-cache-quantizing-k-per-token-and-dropping-the-residual/task.md +74 -0
  9149. mlsys/tasks/rwm-fix-a-symmetric-int4-global-scale-codec-nf4-blockwise/check.py +55 -0
  9150. mlsys/tasks/rwm-fix-a-symmetric-int4-global-scale-codec-nf4-blockwise/gen_fixtures.py +2 -0
  9151. mlsys/tasks/rwm-fix-a-symmetric-int4-global-scale-codec-nf4-blockwise/meta.json +27 -0
  9152. mlsys/tasks/rwm-fix-a-symmetric-int4-global-scale-codec-nf4-blockwise/solution_ref.py +29 -0
  9153. mlsys/tasks/rwm-fix-a-symmetric-int4-global-scale-codec-nf4-blockwise/starter.py +18 -0
  9154. mlsys/tasks/rwm-fix-a-symmetric-int4-global-scale-codec-nf4-blockwise/task.md +87 -0
  9155. mlsys/tasks/rwm-fix-an-off-by-one-prefetch-that-evicts-the-layer-still-in-use/check.py +51 -0
  9156. mlsys/tasks/rwm-fix-an-off-by-one-prefetch-that-evicts-the-layer-still-in-use/gen_fixtures.py +1 -0
  9157. mlsys/tasks/rwm-fix-an-off-by-one-prefetch-that-evicts-the-layer-still-in-use/meta.json +22 -0
  9158. mlsys/tasks/rwm-fix-an-off-by-one-prefetch-that-evicts-the-layer-still-in-use/solution_ref.py +25 -0
  9159. mlsys/tasks/rwm-fix-an-off-by-one-prefetch-that-evicts-the-layer-still-in-use/starter.py +32 -0
  9160. mlsys/tasks/rwm-fix-an-off-by-one-prefetch-that-evicts-the-layer-still-in-use/task.md +67 -0
  9161. mlsys/tasks/rwm-fix-h2o-accumulating-attention-without-the-causal-mask/check.py +62 -0
  9162. mlsys/tasks/rwm-fix-h2o-accumulating-attention-without-the-causal-mask/gen_fixtures.py +1 -0
  9163. mlsys/tasks/rwm-fix-h2o-accumulating-attention-without-the-causal-mask/meta.json +22 -0
  9164. mlsys/tasks/rwm-fix-h2o-accumulating-attention-without-the-causal-mask/solution_ref.py +17 -0
  9165. mlsys/tasks/rwm-fix-h2o-accumulating-attention-without-the-causal-mask/starter.py +15 -0
  9166. mlsys/tasks/rwm-fix-h2o-accumulating-attention-without-the-causal-mask/task.md +73 -0
  9167. mlsys/tasks/rwm-fix-tiled-attention-that-skips-accumulator-rescaling/check.py +59 -0
  9168. mlsys/tasks/rwm-fix-tiled-attention-that-skips-accumulator-rescaling/gen_fixtures.py +1 -0
  9169. mlsys/tasks/rwm-fix-tiled-attention-that-skips-accumulator-rescaling/meta.json +22 -0
  9170. mlsys/tasks/rwm-fix-tiled-attention-that-skips-accumulator-rescaling/solution_ref.py +48 -0
  9171. mlsys/tasks/rwm-fix-tiled-attention-that-skips-accumulator-rescaling/starter.py +42 -0
  9172. mlsys/tasks/rwm-fix-tiled-attention-that-skips-accumulator-rescaling/task.md +85 -0
  9173. mlsys/tasks/rwm-fix-vae-tiling-with-no-overlap-seam-artifacts/check.py +60 -0
  9174. mlsys/tasks/rwm-fix-vae-tiling-with-no-overlap-seam-artifacts/gen_fixtures.py +1 -0
  9175. mlsys/tasks/rwm-fix-vae-tiling-with-no-overlap-seam-artifacts/meta.json +22 -0
  9176. mlsys/tasks/rwm-fix-vae-tiling-with-no-overlap-seam-artifacts/solution_ref.py +33 -0
  9177. mlsys/tasks/rwm-fix-vae-tiling-with-no-overlap-seam-artifacts/starter.py +38 -0
  9178. mlsys/tasks/rwm-fix-vae-tiling-with-no-overlap-seam-artifacts/task.md +92 -0
  9179. mlsys/tasks/rwm-fixed-budget-kv-memory-and-compression-ratio/check.py +48 -0
  9180. mlsys/tasks/rwm-fixed-budget-kv-memory-and-compression-ratio/gen_fixtures.py +1 -0
  9181. mlsys/tasks/rwm-fixed-budget-kv-memory-and-compression-ratio/meta.json +27 -0
  9182. mlsys/tasks/rwm-fixed-budget-kv-memory-and-compression-ratio/solution_ref.py +15 -0
  9183. mlsys/tasks/rwm-fixed-budget-kv-memory-and-compression-ratio/starter.py +2 -0
  9184. mlsys/tasks/rwm-fixed-budget-kv-memory-and-compression-ratio/task.md +61 -0
  9185. mlsys/tasks/rwm-flashattention-backward-from-stored-logsumexp-no-score-matrix/check.py +50 -0
  9186. mlsys/tasks/rwm-flashattention-backward-from-stored-logsumexp-no-score-matrix/gen_fixtures.py +1 -0
  9187. mlsys/tasks/rwm-flashattention-backward-from-stored-logsumexp-no-score-matrix/meta.json +22 -0
  9188. mlsys/tasks/rwm-flashattention-backward-from-stored-logsumexp-no-score-matrix/solution_ref.py +20 -0
  9189. mlsys/tasks/rwm-flashattention-backward-from-stored-logsumexp-no-score-matrix/starter.py +4 -0
  9190. mlsys/tasks/rwm-flashattention-backward-from-stored-logsumexp-no-score-matrix/task.md +95 -0
  9191. mlsys/tasks/rwm-fp8-e4m3-layerwise-casting-store-bf16-compute/check.py +90 -0
  9192. mlsys/tasks/rwm-fp8-e4m3-layerwise-casting-store-bf16-compute/gen_fixtures.py +1 -0
  9193. mlsys/tasks/rwm-fp8-e4m3-layerwise-casting-store-bf16-compute/meta.json +27 -0
  9194. mlsys/tasks/rwm-fp8-e4m3-layerwise-casting-store-bf16-compute/solution_ref.py +57 -0
  9195. mlsys/tasks/rwm-fp8-e4m3-layerwise-casting-store-bf16-compute/starter.py +10 -0
  9196. mlsys/tasks/rwm-fp8-e4m3-layerwise-casting-store-bf16-compute/task.md +87 -0
  9197. mlsys/tasks/rwm-fragmentation-oom-with-vs-without-max-split-size-cap/check.py +111 -0
  9198. mlsys/tasks/rwm-fragmentation-oom-with-vs-without-max-split-size-cap/gen_fixtures.py +2 -0
  9199. mlsys/tasks/rwm-fragmentation-oom-with-vs-without-max-split-size-cap/meta.json +22 -0
  9200. mlsys/tasks/rwm-fragmentation-oom-with-vs-without-max-split-size-cap/solution_ref.py +58 -0
  9201. mlsys/tasks/rwm-fragmentation-oom-with-vs-without-max-split-size-cap/starter.py +13 -0
  9202. mlsys/tasks/rwm-fragmentation-oom-with-vs-without-max-split-size-cap/task.md +97 -0
  9203. mlsys/tasks/rwm-fsdp-cpu-offload-vs-zero-3-cpu-offload-per-rank-gpu-bytes/check.py +31 -0
  9204. mlsys/tasks/rwm-fsdp-cpu-offload-vs-zero-3-cpu-offload-per-rank-gpu-bytes/gen_fixtures.py +1 -0
  9205. mlsys/tasks/rwm-fsdp-cpu-offload-vs-zero-3-cpu-offload-per-rank-gpu-bytes/meta.json +22 -0
  9206. mlsys/tasks/rwm-fsdp-cpu-offload-vs-zero-3-cpu-offload-per-rank-gpu-bytes/solution_ref.py +11 -0
  9207. mlsys/tasks/rwm-fsdp-cpu-offload-vs-zero-3-cpu-offload-per-rank-gpu-bytes/starter.py +2 -0
  9208. mlsys/tasks/rwm-fsdp-cpu-offload-vs-zero-3-cpu-offload-per-rank-gpu-bytes/task.md +76 -0
  9209. mlsys/tasks/rwm-gather-logical-kv-from-the-block-table-and-attend/check.py +39 -0
  9210. mlsys/tasks/rwm-gather-logical-kv-from-the-block-table-and-attend/gen_fixtures.py +1 -0
  9211. mlsys/tasks/rwm-gather-logical-kv-from-the-block-table-and-attend/meta.json +22 -0
  9212. mlsys/tasks/rwm-gather-logical-kv-from-the-block-table-and-attend/solution_ref.py +14 -0
  9213. mlsys/tasks/rwm-gather-logical-kv-from-the-block-table-and-attend/starter.py +6 -0
  9214. mlsys/tasks/rwm-gather-logical-kv-from-the-block-table-and-attend/task.md +79 -0
  9215. mlsys/tasks/rwm-gpu-bytes-freed-on-gpu-adamw-vs-cpuoffloadoptimizer/check.py +19 -0
  9216. mlsys/tasks/rwm-gpu-bytes-freed-on-gpu-adamw-vs-cpuoffloadoptimizer/gen_fixtures.py +1 -0
  9217. mlsys/tasks/rwm-gpu-bytes-freed-on-gpu-adamw-vs-cpuoffloadoptimizer/meta.json +22 -0
  9218. mlsys/tasks/rwm-gpu-bytes-freed-on-gpu-adamw-vs-cpuoffloadoptimizer/solution_ref.py +20 -0
  9219. mlsys/tasks/rwm-gpu-bytes-freed-on-gpu-adamw-vs-cpuoffloadoptimizer/starter.py +2 -0
  9220. mlsys/tasks/rwm-gpu-bytes-freed-on-gpu-adamw-vs-cpuoffloadoptimizer/task.md +42 -0
  9221. mlsys/tasks/rwm-gpu-prefill-tokens-saved-by-prefix-chunk-reuse/check.py +49 -0
  9222. mlsys/tasks/rwm-gpu-prefill-tokens-saved-by-prefix-chunk-reuse/gen_fixtures.py +1 -0
  9223. mlsys/tasks/rwm-gpu-prefill-tokens-saved-by-prefix-chunk-reuse/meta.json +22 -0
  9224. mlsys/tasks/rwm-gpu-prefill-tokens-saved-by-prefix-chunk-reuse/solution_ref.py +22 -0
  9225. mlsys/tasks/rwm-gpu-prefill-tokens-saved-by-prefix-chunk-reuse/starter.py +4 -0
  9226. mlsys/tasks/rwm-gpu-prefill-tokens-saved-by-prefix-chunk-reuse/task.md +74 -0
  9227. mlsys/tasks/rwm-group-offload-peak-vram-with-prefetch/check.py +68 -0
  9228. mlsys/tasks/rwm-group-offload-peak-vram-with-prefetch/gen_fixtures.py +1 -0
  9229. mlsys/tasks/rwm-group-offload-peak-vram-with-prefetch/meta.json +22 -0
  9230. mlsys/tasks/rwm-group-offload-peak-vram-with-prefetch/solution_ref.py +22 -0
  9231. mlsys/tasks/rwm-group-offload-peak-vram-with-prefetch/starter.py +11 -0
  9232. mlsys/tasks/rwm-group-offload-peak-vram-with-prefetch/task.md +86 -0
  9233. mlsys/tasks/rwm-h2d-transfer-bytes-offloaded-dynamic-vs-offloaded-static-over-a-generation/check.py +48 -0
  9234. mlsys/tasks/rwm-h2d-transfer-bytes-offloaded-dynamic-vs-offloaded-static-over-a-generation/gen_fixtures.py +1 -0
  9235. mlsys/tasks/rwm-h2d-transfer-bytes-offloaded-dynamic-vs-offloaded-static-over-a-generation/meta.json +22 -0
  9236. mlsys/tasks/rwm-h2d-transfer-bytes-offloaded-dynamic-vs-offloaded-static-over-a-generation/solution_ref.py +7 -0
  9237. mlsys/tasks/rwm-h2d-transfer-bytes-offloaded-dynamic-vs-offloaded-static-over-a-generation/starter.py +4 -0
  9238. mlsys/tasks/rwm-h2d-transfer-bytes-offloaded-dynamic-vs-offloaded-static-over-a-generation/task.md +57 -0
  9239. mlsys/tasks/rwm-h2o-heavy-hitter-accumulated-attention-eviction-set/check.py +64 -0
  9240. mlsys/tasks/rwm-h2o-heavy-hitter-accumulated-attention-eviction-set/gen_fixtures.py +1 -0
  9241. mlsys/tasks/rwm-h2o-heavy-hitter-accumulated-attention-eviction-set/meta.json +22 -0
  9242. mlsys/tasks/rwm-h2o-heavy-hitter-accumulated-attention-eviction-set/solution_ref.py +42 -0
  9243. mlsys/tasks/rwm-h2o-heavy-hitter-accumulated-attention-eviction-set/starter.py +17 -0
  9244. mlsys/tasks/rwm-h2o-heavy-hitter-accumulated-attention-eviction-set/task.md +95 -0
  9245. mlsys/tasks/rwm-hit-rate-of-a-shared-prefix-workload-vs-chunk-size/check.py +28 -0
  9246. mlsys/tasks/rwm-hit-rate-of-a-shared-prefix-workload-vs-chunk-size/gen_fixtures.py +1 -0
  9247. mlsys/tasks/rwm-hit-rate-of-a-shared-prefix-workload-vs-chunk-size/meta.json +22 -0
  9248. mlsys/tasks/rwm-hit-rate-of-a-shared-prefix-workload-vs-chunk-size/solution_ref.py +8 -0
  9249. mlsys/tasks/rwm-hit-rate-of-a-shared-prefix-workload-vs-chunk-size/starter.py +6 -0
  9250. mlsys/tasks/rwm-hit-rate-of-a-shared-prefix-workload-vs-chunk-size/task.md +55 -0
  9251. mlsys/tasks/rwm-how-many-gpu-kv-buffers-a-depth-k-prefetch-needs/check.py +30 -0
  9252. mlsys/tasks/rwm-how-many-gpu-kv-buffers-a-depth-k-prefetch-needs/gen_fixtures.py +1 -0
  9253. mlsys/tasks/rwm-how-many-gpu-kv-buffers-a-depth-k-prefetch-needs/meta.json +22 -0
  9254. mlsys/tasks/rwm-how-many-gpu-kv-buffers-a-depth-k-prefetch-needs/solution_ref.py +15 -0
  9255. mlsys/tasks/rwm-how-many-gpu-kv-buffers-a-depth-k-prefetch-needs/starter.py +2 -0
  9256. mlsys/tasks/rwm-how-many-gpu-kv-buffers-a-depth-k-prefetch-needs/task.md +51 -0
  9257. mlsys/tasks/rwm-identify-which-eviction-policy-produced-a-retained-set/check.py +71 -0
  9258. mlsys/tasks/rwm-identify-which-eviction-policy-produced-a-retained-set/gen_fixtures.py +1 -0
  9259. mlsys/tasks/rwm-identify-which-eviction-policy-produced-a-retained-set/meta.json +22 -0
  9260. mlsys/tasks/rwm-identify-which-eviction-policy-produced-a-retained-set/solution_ref.py +39 -0
  9261. mlsys/tasks/rwm-identify-which-eviction-policy-produced-a-retained-set/starter.py +2 -0
  9262. mlsys/tasks/rwm-identify-which-eviction-policy-produced-a-retained-set/task.md +46 -0
  9263. mlsys/tasks/rwm-infer-auto-device-map-greedy-allocator-with-no-split-blocks/check.py +77 -0
  9264. mlsys/tasks/rwm-infer-auto-device-map-greedy-allocator-with-no-split-blocks/gen_fixtures.py +1 -0
  9265. mlsys/tasks/rwm-infer-auto-device-map-greedy-allocator-with-no-split-blocks/meta.json +22 -0
  9266. mlsys/tasks/rwm-infer-auto-device-map-greedy-allocator-with-no-split-blocks/solution_ref.py +41 -0
  9267. mlsys/tasks/rwm-infer-auto-device-map-greedy-allocator-with-no-split-blocks/starter.py +2 -0
  9268. mlsys/tasks/rwm-infer-auto-device-map-greedy-allocator-with-no-split-blocks/task.md +68 -0
  9269. mlsys/tasks/rwm-int2-v-with-an-exact-fp16-residual-window/check.py +47 -0
  9270. mlsys/tasks/rwm-int2-v-with-an-exact-fp16-residual-window/gen_fixtures.py +2 -0
  9271. mlsys/tasks/rwm-int2-v-with-an-exact-fp16-residual-window/meta.json +27 -0
  9272. mlsys/tasks/rwm-int2-v-with-an-exact-fp16-residual-window/solution_ref.py +31 -0
  9273. mlsys/tasks/rwm-int2-v-with-an-exact-fp16-residual-window/starter.py +11 -0
  9274. mlsys/tasks/rwm-int2-v-with-an-exact-fp16-residual-window/task.md +77 -0
  9275. mlsys/tasks/rwm-knorm-press-evict-lowest-key-norm-tokens/check.py +44 -0
  9276. mlsys/tasks/rwm-knorm-press-evict-lowest-key-norm-tokens/gen_fixtures.py +1 -0
  9277. mlsys/tasks/rwm-knorm-press-evict-lowest-key-norm-tokens/meta.json +22 -0
  9278. mlsys/tasks/rwm-knorm-press-evict-lowest-key-norm-tokens/solution_ref.py +20 -0
  9279. mlsys/tasks/rwm-knorm-press-evict-lowest-key-norm-tokens/starter.py +4 -0
  9280. mlsys/tasks/rwm-knorm-press-evict-lowest-key-norm-tokens/task.md +51 -0
  9281. mlsys/tasks/rwm-label-each-request-s-chunks-hit-vs-miss-against-the-kv-store/check.py +43 -0
  9282. mlsys/tasks/rwm-label-each-request-s-chunks-hit-vs-miss-against-the-kv-store/gen_fixtures.py +1 -0
  9283. mlsys/tasks/rwm-label-each-request-s-chunks-hit-vs-miss-against-the-kv-store/meta.json +22 -0
  9284. mlsys/tasks/rwm-label-each-request-s-chunks-hit-vs-miss-against-the-kv-store/solution_ref.py +29 -0
  9285. mlsys/tasks/rwm-label-each-request-s-chunks-hit-vs-miss-against-the-kv-store/starter.py +12 -0
  9286. mlsys/tasks/rwm-label-each-request-s-chunks-hit-vs-miss-against-the-kv-store/task.md +63 -0
  9287. mlsys/tasks/rwm-label-which-kv-layers-are-gpu-resident-at-each-decode-step/check.py +31 -0
  9288. mlsys/tasks/rwm-label-which-kv-layers-are-gpu-resident-at-each-decode-step/gen_fixtures.py +1 -0
  9289. mlsys/tasks/rwm-label-which-kv-layers-are-gpu-resident-at-each-decode-step/meta.json +22 -0
  9290. mlsys/tasks/rwm-label-which-kv-layers-are-gpu-resident-at-each-decode-step/solution_ref.py +9 -0
  9291. mlsys/tasks/rwm-label-which-kv-layers-are-gpu-resident-at-each-decode-step/starter.py +4 -0
  9292. mlsys/tasks/rwm-label-which-kv-layers-are-gpu-resident-at-each-decode-step/task.md +41 -0
  9293. mlsys/tasks/rwm-lru-cpu-ssd-tiering-under-a-cpu-capacity-cap/check.py +63 -0
  9294. mlsys/tasks/rwm-lru-cpu-ssd-tiering-under-a-cpu-capacity-cap/gen_fixtures.py +1 -0
  9295. mlsys/tasks/rwm-lru-cpu-ssd-tiering-under-a-cpu-capacity-cap/meta.json +22 -0
  9296. mlsys/tasks/rwm-lru-cpu-ssd-tiering-under-a-cpu-capacity-cap/solution_ref.py +20 -0
  9297. mlsys/tasks/rwm-lru-cpu-ssd-tiering-under-a-cpu-capacity-cap/starter.py +2 -0
  9298. mlsys/tasks/rwm-lru-cpu-ssd-tiering-under-a-cpu-capacity-cap/task.md +56 -0
  9299. mlsys/tasks/rwm-mark-each-kv-block-full-vs-partially-filled/check.py +36 -0
  9300. mlsys/tasks/rwm-mark-each-kv-block-full-vs-partially-filled/gen_fixtures.py +1 -0
  9301. mlsys/tasks/rwm-mark-each-kv-block-full-vs-partially-filled/meta.json +22 -0
  9302. mlsys/tasks/rwm-mark-each-kv-block-full-vs-partially-filled/solution_ref.py +16 -0
  9303. mlsys/tasks/rwm-mark-each-kv-block-full-vs-partially-filled/starter.py +4 -0
  9304. mlsys/tasks/rwm-mark-each-kv-block-full-vs-partially-filled/task.md +37 -0
  9305. mlsys/tasks/rwm-mark-stored-vs-recomputed-activations-for-a-segmentation/check.py +30 -0
  9306. mlsys/tasks/rwm-mark-stored-vs-recomputed-activations-for-a-segmentation/gen_fixtures.py +1 -0
  9307. mlsys/tasks/rwm-mark-stored-vs-recomputed-activations-for-a-segmentation/meta.json +22 -0
  9308. mlsys/tasks/rwm-mark-stored-vs-recomputed-activations-for-a-segmentation/solution_ref.py +15 -0
  9309. mlsys/tasks/rwm-mark-stored-vs-recomputed-activations-for-a-segmentation/starter.py +4 -0
  9310. mlsys/tasks/rwm-mark-stored-vs-recomputed-activations-for-a-segmentation/task.md +65 -0
  9311. mlsys/tasks/rwm-max-concurrent-sequences-that-fit-in-the-block-pool/check.py +55 -0
  9312. mlsys/tasks/rwm-max-concurrent-sequences-that-fit-in-the-block-pool/gen_fixtures.py +1 -0
  9313. mlsys/tasks/rwm-max-concurrent-sequences-that-fit-in-the-block-pool/meta.json +22 -0
  9314. mlsys/tasks/rwm-max-concurrent-sequences-that-fit-in-the-block-pool/solution_ref.py +20 -0
  9315. mlsys/tasks/rwm-max-concurrent-sequences-that-fit-in-the-block-pool/starter.py +3 -0
  9316. mlsys/tasks/rwm-max-concurrent-sequences-that-fit-in-the-block-pool/task.md +80 -0
  9317. mlsys/tasks/rwm-memory-of-int4-kv-fp16-residual-window-vs-full-fp16-cache/check.py +59 -0
  9318. mlsys/tasks/rwm-memory-of-int4-kv-fp16-residual-window-vs-full-fp16-cache/gen_fixtures.py +1 -0
  9319. mlsys/tasks/rwm-memory-of-int4-kv-fp16-residual-window-vs-full-fp16-cache/meta.json +22 -0
  9320. mlsys/tasks/rwm-memory-of-int4-kv-fp16-residual-window-vs-full-fp16-cache/solution_ref.py +52 -0
  9321. mlsys/tasks/rwm-memory-of-int4-kv-fp16-residual-window-vs-full-fp16-cache/starter.py +2 -0
  9322. mlsys/tasks/rwm-memory-of-int4-kv-fp16-residual-window-vs-full-fp16-cache/task.md +71 -0
  9323. mlsys/tasks/rwm-memory-vs-recompute-for-checkpoint-every-k-k-in-1-2-4/check.py +41 -0
  9324. mlsys/tasks/rwm-memory-vs-recompute-for-checkpoint-every-k-k-in-1-2-4/gen_fixtures.py +1 -0
  9325. mlsys/tasks/rwm-memory-vs-recompute-for-checkpoint-every-k-k-in-1-2-4/meta.json +22 -0
  9326. mlsys/tasks/rwm-memory-vs-recompute-for-checkpoint-every-k-k-in-1-2-4/solution_ref.py +18 -0
  9327. mlsys/tasks/rwm-memory-vs-recompute-for-checkpoint-every-k-k-in-1-2-4/starter.py +2 -0
  9328. mlsys/tasks/rwm-memory-vs-recompute-for-checkpoint-every-k-k-in-1-2-4/task.md +79 -0
  9329. mlsys/tasks/rwm-minimum-gpu-memory-to-run-a-streamed-model/check.py +37 -0
  9330. mlsys/tasks/rwm-minimum-gpu-memory-to-run-a-streamed-model/gen_fixtures.py +1 -0
  9331. mlsys/tasks/rwm-minimum-gpu-memory-to-run-a-streamed-model/meta.json +22 -0
  9332. mlsys/tasks/rwm-minimum-gpu-memory-to-run-a-streamed-model/solution_ref.py +17 -0
  9333. mlsys/tasks/rwm-minimum-gpu-memory-to-run-a-streamed-model/starter.py +10 -0
  9334. mlsys/tasks/rwm-minimum-gpu-memory-to-run-a-streamed-model/task.md +69 -0
  9335. mlsys/tasks/rwm-naive-vs-online-softmax-numerical-stability-on-large-logits/check.py +41 -0
  9336. mlsys/tasks/rwm-naive-vs-online-softmax-numerical-stability-on-large-logits/gen_fixtures.py +1 -0
  9337. mlsys/tasks/rwm-naive-vs-online-softmax-numerical-stability-on-large-logits/meta.json +22 -0
  9338. mlsys/tasks/rwm-naive-vs-online-softmax-numerical-stability-on-large-logits/solution_ref.py +8 -0
  9339. mlsys/tasks/rwm-naive-vs-online-softmax-numerical-stability-on-large-logits/starter.py +4 -0
  9340. mlsys/tasks/rwm-naive-vs-online-softmax-numerical-stability-on-large-logits/task.md +76 -0
  9341. mlsys/tasks/rwm-nf4-blockwise-codec-levels-from-n-0-1-quantiles/check.py +97 -0
  9342. mlsys/tasks/rwm-nf4-blockwise-codec-levels-from-n-0-1-quantiles/gen_fixtures.py +1 -0
  9343. mlsys/tasks/rwm-nf4-blockwise-codec-levels-from-n-0-1-quantiles/meta.json +29 -0
  9344. mlsys/tasks/rwm-nf4-blockwise-codec-levels-from-n-0-1-quantiles/solution_ref.py +65 -0
  9345. mlsys/tasks/rwm-nf4-blockwise-codec-levels-from-n-0-1-quantiles/starter.py +18 -0
  9346. mlsys/tasks/rwm-nf4-blockwise-codec-levels-from-n-0-1-quantiles/task.md +99 -0
  9347. mlsys/tasks/rwm-nf4-storage-bytes-and-effective-bits-param/check.py +54 -0
  9348. mlsys/tasks/rwm-nf4-storage-bytes-and-effective-bits-param/gen_fixtures.py +1 -0
  9349. mlsys/tasks/rwm-nf4-storage-bytes-and-effective-bits-param/meta.json +22 -0
  9350. mlsys/tasks/rwm-nf4-storage-bytes-and-effective-bits-param/solution_ref.py +17 -0
  9351. mlsys/tasks/rwm-nf4-storage-bytes-and-effective-bits-param/starter.py +11 -0
  9352. mlsys/tasks/rwm-nf4-storage-bytes-and-effective-bits-param/task.md +70 -0
  9353. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-affine-reconstruction-error/check.py +104 -0
  9354. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-affine-reconstruction-error/gen_fixtures.py +1 -0
  9355. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-affine-reconstruction-error/meta.json +22 -0
  9356. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-affine-reconstruction-error/solution_ref.py +45 -0
  9357. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-affine-reconstruction-error/starter.py +4 -0
  9358. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-affine-reconstruction-error/task.md +81 -0
  9359. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-which-grid-fits-normal-weights-best/check.py +25 -0
  9360. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-which-grid-fits-normal-weights-best/gen_fixtures.py +1 -0
  9361. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-which-grid-fits-normal-weights-best/meta.json +22 -0
  9362. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-which-grid-fits-normal-weights-best/solution_ref.py +18 -0
  9363. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-which-grid-fits-normal-weights-best/starter.py +2 -0
  9364. mlsys/tasks/rwm-nf4-vs-fp4-vs-int4-which-grid-fits-normal-weights-best/task.md +44 -0
  9365. mlsys/tasks/rwm-online-softmax-for-one-query-over-streamed-k-v-blocks/check.py +51 -0
  9366. mlsys/tasks/rwm-online-softmax-for-one-query-over-streamed-k-v-blocks/gen_fixtures.py +1 -0
  9367. mlsys/tasks/rwm-online-softmax-for-one-query-over-streamed-k-v-blocks/meta.json +22 -0
  9368. mlsys/tasks/rwm-online-softmax-for-one-query-over-streamed-k-v-blocks/solution_ref.py +33 -0
  9369. mlsys/tasks/rwm-online-softmax-for-one-query-over-streamed-k-v-blocks/starter.py +4 -0
  9370. mlsys/tasks/rwm-online-softmax-for-one-query-over-streamed-k-v-blocks/task.md +88 -0
  9371. mlsys/tasks/rwm-optimal-asymmetric-scale-zero-point-minimizing-max-abs-error/check.py +56 -0
  9372. mlsys/tasks/rwm-optimal-asymmetric-scale-zero-point-minimizing-max-abs-error/gen_fixtures.py +1 -0
  9373. mlsys/tasks/rwm-optimal-asymmetric-scale-zero-point-minimizing-max-abs-error/meta.json +22 -0
  9374. mlsys/tasks/rwm-optimal-asymmetric-scale-zero-point-minimizing-max-abs-error/solution_ref.py +19 -0
  9375. mlsys/tasks/rwm-optimal-asymmetric-scale-zero-point-minimizing-max-abs-error/starter.py +9 -0
  9376. mlsys/tasks/rwm-optimal-asymmetric-scale-zero-point-minimizing-max-abs-error/task.md +73 -0
  9377. mlsys/tasks/rwm-optimal-checkpoint-placement-revolve-dp/check.py +32 -0
  9378. mlsys/tasks/rwm-optimal-checkpoint-placement-revolve-dp/gen_fixtures.py +1 -0
  9379. mlsys/tasks/rwm-optimal-checkpoint-placement-revolve-dp/meta.json +24 -0
  9380. mlsys/tasks/rwm-optimal-checkpoint-placement-revolve-dp/solution_ref.py +29 -0
  9381. mlsys/tasks/rwm-optimal-checkpoint-placement-revolve-dp/starter.py +2 -0
  9382. mlsys/tasks/rwm-optimal-checkpoint-placement-revolve-dp/task.md +60 -0
  9383. mlsys/tasks/rwm-optimizer-memory-adam-fp32-vs-8-bit-blockwise-vs-paged/check.py +27 -0
  9384. mlsys/tasks/rwm-optimizer-memory-adam-fp32-vs-8-bit-blockwise-vs-paged/gen_fixtures.py +1 -0
  9385. mlsys/tasks/rwm-optimizer-memory-adam-fp32-vs-8-bit-blockwise-vs-paged/meta.json +22 -0
  9386. mlsys/tasks/rwm-optimizer-memory-adam-fp32-vs-8-bit-blockwise-vs-paged/solution_ref.py +14 -0
  9387. mlsys/tasks/rwm-optimizer-memory-adam-fp32-vs-8-bit-blockwise-vs-paged/starter.py +2 -0
  9388. mlsys/tasks/rwm-optimizer-memory-adam-fp32-vs-8-bit-blockwise-vs-paged/task.md +46 -0
  9389. mlsys/tasks/rwm-peak-attention-memory-naive-o-n-2-vs-flash-o-n/check.py +28 -0
  9390. mlsys/tasks/rwm-peak-attention-memory-naive-o-n-2-vs-flash-o-n/gen_fixtures.py +1 -0
  9391. mlsys/tasks/rwm-peak-attention-memory-naive-o-n-2-vs-flash-o-n/meta.json +22 -0
  9392. mlsys/tasks/rwm-peak-attention-memory-naive-o-n-2-vs-flash-o-n/solution_ref.py +22 -0
  9393. mlsys/tasks/rwm-peak-attention-memory-naive-o-n-2-vs-flash-o-n/starter.py +2 -0
  9394. mlsys/tasks/rwm-peak-attention-memory-naive-o-n-2-vs-flash-o-n/task.md +48 -0
  9395. mlsys/tasks/rwm-peak-gpu-bytes-total-h2d-transfer-for-a-k-layer-window/check.py +31 -0
  9396. mlsys/tasks/rwm-peak-gpu-bytes-total-h2d-transfer-for-a-k-layer-window/gen_fixtures.py +1 -0
  9397. mlsys/tasks/rwm-peak-gpu-bytes-total-h2d-transfer-for-a-k-layer-window/meta.json +22 -0
  9398. mlsys/tasks/rwm-peak-gpu-bytes-total-h2d-transfer-for-a-k-layer-window/solution_ref.py +14 -0
  9399. mlsys/tasks/rwm-peak-gpu-bytes-total-h2d-transfer-for-a-k-layer-window/starter.py +2 -0
  9400. mlsys/tasks/rwm-peak-gpu-bytes-total-h2d-transfer-for-a-k-layer-window/task.md +52 -0
  9401. mlsys/tasks/rwm-peak-kv-bytes-offloaded-double-buffer-vs-on-device-full-cache/check.py +37 -0
  9402. mlsys/tasks/rwm-peak-kv-bytes-offloaded-double-buffer-vs-on-device-full-cache/gen_fixtures.py +1 -0
  9403. mlsys/tasks/rwm-peak-kv-bytes-offloaded-double-buffer-vs-on-device-full-cache/meta.json +22 -0
  9404. mlsys/tasks/rwm-peak-kv-bytes-offloaded-double-buffer-vs-on-device-full-cache/solution_ref.py +39 -0
  9405. mlsys/tasks/rwm-peak-kv-bytes-offloaded-double-buffer-vs-on-device-full-cache/starter.py +7 -0
  9406. mlsys/tasks/rwm-peak-kv-bytes-offloaded-double-buffer-vs-on-device-full-cache/task.md +76 -0
  9407. mlsys/tasks/rwm-peak-vram-full-resident-vs-model-vs-sequential-offload/check.py +35 -0
  9408. mlsys/tasks/rwm-peak-vram-full-resident-vs-model-vs-sequential-offload/gen_fixtures.py +1 -0
  9409. mlsys/tasks/rwm-peak-vram-full-resident-vs-model-vs-sequential-offload/meta.json +22 -0
  9410. mlsys/tasks/rwm-peak-vram-full-resident-vs-model-vs-sequential-offload/solution_ref.py +30 -0
  9411. mlsys/tasks/rwm-peak-vram-full-resident-vs-model-vs-sequential-offload/starter.py +2 -0
  9412. mlsys/tasks/rwm-peak-vram-full-resident-vs-model-vs-sequential-offload/task.md +72 -0
  9413. mlsys/tasks/rwm-per-channel-k-beats-per-token-k-on-outlier-channels/check.py +62 -0
  9414. mlsys/tasks/rwm-per-channel-k-beats-per-token-k-on-outlier-channels/gen_fixtures.py +1 -0
  9415. mlsys/tasks/rwm-per-channel-k-beats-per-token-k-on-outlier-channels/meta.json +22 -0
  9416. mlsys/tasks/rwm-per-channel-k-beats-per-token-k-on-outlier-channels/solution_ref.py +34 -0
  9417. mlsys/tasks/rwm-per-channel-k-beats-per-token-k-on-outlier-channels/starter.py +15 -0
  9418. mlsys/tasks/rwm-per-channel-k-beats-per-token-k-on-outlier-channels/task.md +78 -0
  9419. mlsys/tasks/rwm-per-gpu-bytes-for-params-grads-optimizer-given-phi-n-stage/check.py +28 -0
  9420. mlsys/tasks/rwm-per-gpu-bytes-for-params-grads-optimizer-given-phi-n-stage/gen_fixtures.py +1 -0
  9421. mlsys/tasks/rwm-per-gpu-bytes-for-params-grads-optimizer-given-phi-n-stage/meta.json +22 -0
  9422. mlsys/tasks/rwm-per-gpu-bytes-for-params-grads-optimizer-given-phi-n-stage/solution_ref.py +32 -0
  9423. mlsys/tasks/rwm-per-gpu-bytes-for-params-grads-optimizer-given-phi-n-stage/starter.py +2 -0
  9424. mlsys/tasks/rwm-per-gpu-bytes-for-params-grads-optimizer-given-phi-n-stage/task.md +40 -0
  9425. mlsys/tasks/rwm-per-rank-flat-partition-of-phi-across-n-ranks/check.py +38 -0
  9426. mlsys/tasks/rwm-per-rank-flat-partition-of-phi-across-n-ranks/gen_fixtures.py +1 -0
  9427. mlsys/tasks/rwm-per-rank-flat-partition-of-phi-across-n-ranks/meta.json +22 -0
  9428. mlsys/tasks/rwm-per-rank-flat-partition-of-phi-across-n-ranks/solution_ref.py +13 -0
  9429. mlsys/tasks/rwm-per-rank-flat-partition-of-phi-across-n-ranks/starter.py +2 -0
  9430. mlsys/tasks/rwm-per-rank-flat-partition-of-phi-across-n-ranks/task.md +68 -0
  9431. mlsys/tasks/rwm-per-rank-peak-memory-of-full-shard-with-without-cpu-offload/check.py +34 -0
  9432. mlsys/tasks/rwm-per-rank-peak-memory-of-full-shard-with-without-cpu-offload/gen_fixtures.py +1 -0
  9433. mlsys/tasks/rwm-per-rank-peak-memory-of-full-shard-with-without-cpu-offload/meta.json +22 -0
  9434. mlsys/tasks/rwm-per-rank-peak-memory-of-full-shard-with-without-cpu-offload/solution_ref.py +11 -0
  9435. mlsys/tasks/rwm-per-rank-peak-memory-of-full-shard-with-without-cpu-offload/starter.py +2 -0
  9436. mlsys/tasks/rwm-per-rank-peak-memory-of-full-shard-with-without-cpu-offload/task.md +56 -0
  9437. mlsys/tasks/rwm-pick-the-kivi-quant-axis-for-k-and-for-v/check.py +30 -0
  9438. mlsys/tasks/rwm-pick-the-kivi-quant-axis-for-k-and-for-v/gen_fixtures.py +1 -0
  9439. mlsys/tasks/rwm-pick-the-kivi-quant-axis-for-k-and-for-v/meta.json +22 -0
  9440. mlsys/tasks/rwm-pick-the-kivi-quant-axis-for-k-and-for-v/solution_ref.py +16 -0
  9441. mlsys/tasks/rwm-pick-the-kivi-quant-axis-for-k-and-for-v/starter.py +4 -0
  9442. mlsys/tasks/rwm-pick-the-kivi-quant-axis-for-k-and-for-v/task.md +45 -0
  9443. mlsys/tasks/rwm-pick-the-minimal-knob-set-that-fits-the-memory-budget/check.py +59 -0
  9444. mlsys/tasks/rwm-pick-the-minimal-knob-set-that-fits-the-memory-budget/gen_fixtures.py +1 -0
  9445. mlsys/tasks/rwm-pick-the-minimal-knob-set-that-fits-the-memory-budget/meta.json +22 -0
  9446. mlsys/tasks/rwm-pick-the-minimal-knob-set-that-fits-the-memory-budget/solution_ref.py +25 -0
  9447. mlsys/tasks/rwm-pick-the-minimal-knob-set-that-fits-the-memory-budget/starter.py +2 -0
  9448. mlsys/tasks/rwm-pick-the-minimal-knob-set-that-fits-the-memory-budget/task.md +75 -0
  9449. mlsys/tasks/rwm-prefix-cache-block-hashing-and-cross-sequence-sharing/check.py +66 -0
  9450. mlsys/tasks/rwm-prefix-cache-block-hashing-and-cross-sequence-sharing/gen_fixtures.py +2 -0
  9451. mlsys/tasks/rwm-prefix-cache-block-hashing-and-cross-sequence-sharing/meta.json +22 -0
  9452. mlsys/tasks/rwm-prefix-cache-block-hashing-and-cross-sequence-sharing/solution_ref.py +32 -0
  9453. mlsys/tasks/rwm-prefix-cache-block-hashing-and-cross-sequence-sharing/starter.py +8 -0
  9454. mlsys/tasks/rwm-prefix-cache-block-hashing-and-cross-sequence-sharing/task.md +81 -0
  9455. mlsys/tasks/rwm-prove-offloaded-cache-decode-is-bit-lossless-vs-full-cache/check.py +65 -0
  9456. mlsys/tasks/rwm-prove-offloaded-cache-decode-is-bit-lossless-vs-full-cache/gen_fixtures.py +1 -0
  9457. mlsys/tasks/rwm-prove-offloaded-cache-decode-is-bit-lossless-vs-full-cache/meta.json +22 -0
  9458. mlsys/tasks/rwm-prove-offloaded-cache-decode-is-bit-lossless-vs-full-cache/solution_ref.py +54 -0
  9459. mlsys/tasks/rwm-prove-offloaded-cache-decode-is-bit-lossless-vs-full-cache/starter.py +50 -0
  9460. mlsys/tasks/rwm-prove-offloaded-cache-decode-is-bit-lossless-vs-full-cache/task.md +75 -0
  9461. mlsys/tasks/rwm-qlora-forward-dequant-nf4-base-lora-delta/check.py +64 -0
  9462. mlsys/tasks/rwm-qlora-forward-dequant-nf4-base-lora-delta/gen_fixtures.py +1 -0
  9463. mlsys/tasks/rwm-qlora-forward-dequant-nf4-base-lora-delta/meta.json +22 -0
  9464. mlsys/tasks/rwm-qlora-forward-dequant-nf4-base-lora-delta/solution_ref.py +42 -0
  9465. mlsys/tasks/rwm-qlora-forward-dequant-nf4-base-lora-delta/starter.py +26 -0
  9466. mlsys/tasks/rwm-qlora-forward-dequant-nf4-base-lora-delta/task.md +91 -0
  9467. mlsys/tasks/rwm-reconstruct-create-dynamic-map-and-quantize-adam-v-blockwise/check.py +80 -0
  9468. mlsys/tasks/rwm-reconstruct-create-dynamic-map-and-quantize-adam-v-blockwise/gen_fixtures.py +1 -0
  9469. mlsys/tasks/rwm-reconstruct-create-dynamic-map-and-quantize-adam-v-blockwise/meta.json +22 -0
  9470. mlsys/tasks/rwm-reconstruct-create-dynamic-map-and-quantize-adam-v-blockwise/solution_ref.py +51 -0
  9471. mlsys/tasks/rwm-reconstruct-create-dynamic-map-and-quantize-adam-v-blockwise/starter.py +10 -0
  9472. mlsys/tasks/rwm-reconstruct-create-dynamic-map-and-quantize-adam-v-blockwise/task.md +85 -0
  9473. mlsys/tasks/rwm-reconstruct-the-16-nf4-level-values/check.py +23 -0
  9474. mlsys/tasks/rwm-reconstruct-the-16-nf4-level-values/gen_fixtures.py +1 -0
  9475. mlsys/tasks/rwm-reconstruct-the-16-nf4-level-values/meta.json +22 -0
  9476. mlsys/tasks/rwm-reconstruct-the-16-nf4-level-values/solution_ref.py +10 -0
  9477. mlsys/tasks/rwm-reconstruct-the-16-nf4-level-values/starter.py +5 -0
  9478. mlsys/tasks/rwm-reconstruct-the-16-nf4-level-values/task.md +45 -0
  9479. mlsys/tasks/rwm-recover-peak-reserved-allocated-from-a-memory-snapshot/check.py +88 -0
  9480. mlsys/tasks/rwm-recover-peak-reserved-allocated-from-a-memory-snapshot/gen_fixtures.py +1 -0
  9481. mlsys/tasks/rwm-recover-peak-reserved-allocated-from-a-memory-snapshot/meta.json +22 -0
  9482. mlsys/tasks/rwm-recover-peak-reserved-allocated-from-a-memory-snapshot/solution_ref.py +22 -0
  9483. mlsys/tasks/rwm-recover-peak-reserved-allocated-from-a-memory-snapshot/starter.py +2 -0
  9484. mlsys/tasks/rwm-recover-peak-reserved-allocated-from-a-memory-snapshot/task.md +99 -0
  9485. mlsys/tasks/rwm-reserved-vs-allocated-fragmentation-gap-after-a-trace/check.py +44 -0
  9486. mlsys/tasks/rwm-reserved-vs-allocated-fragmentation-gap-after-a-trace/gen_fixtures.py +1 -0
  9487. mlsys/tasks/rwm-reserved-vs-allocated-fragmentation-gap-after-a-trace/meta.json +22 -0
  9488. mlsys/tasks/rwm-reserved-vs-allocated-fragmentation-gap-after-a-trace/solution_ref.py +20 -0
  9489. mlsys/tasks/rwm-reserved-vs-allocated-fragmentation-gap-after-a-trace/starter.py +2 -0
  9490. mlsys/tasks/rwm-reserved-vs-allocated-fragmentation-gap-after-a-trace/task.md +72 -0
  9491. mlsys/tasks/rwm-simulate-paged-optimizer-eviction-under-a-spike-no-oom/check.py +72 -0
  9492. mlsys/tasks/rwm-simulate-paged-optimizer-eviction-under-a-spike-no-oom/gen_fixtures.py +1 -0
  9493. mlsys/tasks/rwm-simulate-paged-optimizer-eviction-under-a-spike-no-oom/meta.json +27 -0
  9494. mlsys/tasks/rwm-simulate-paged-optimizer-eviction-under-a-spike-no-oom/solution_ref.py +21 -0
  9495. mlsys/tasks/rwm-simulate-paged-optimizer-eviction-under-a-spike-no-oom/starter.py +30 -0
  9496. mlsys/tasks/rwm-simulate-paged-optimizer-eviction-under-a-spike-no-oom/task.md +78 -0
  9497. mlsys/tasks/rwm-size-rounding-small-large-pool-selection/check.py +67 -0
  9498. mlsys/tasks/rwm-size-rounding-small-large-pool-selection/gen_fixtures.py +1 -0
  9499. mlsys/tasks/rwm-size-rounding-small-large-pool-selection/meta.json +22 -0
  9500. mlsys/tasks/rwm-size-rounding-small-large-pool-selection/solution_ref.py +42 -0
  9501. mlsys/tasks/rwm-size-rounding-small-large-pool-selection/starter.py +12 -0
  9502. mlsys/tasks/rwm-size-rounding-small-large-pool-selection/task.md +93 -0
  9503. mlsys/tasks/rwm-sliced-attention-matching-full-attention/check.py +66 -0
  9504. mlsys/tasks/rwm-sliced-attention-matching-full-attention/gen_fixtures.py +1 -0
  9505. mlsys/tasks/rwm-sliced-attention-matching-full-attention/meta.json +32 -0
  9506. mlsys/tasks/rwm-sliced-attention-matching-full-attention/solution_ref.py +28 -0
  9507. mlsys/tasks/rwm-sliced-attention-matching-full-attention/starter.py +25 -0
  9508. mlsys/tasks/rwm-sliced-attention-matching-full-attention/task.md +45 -0
  9509. mlsys/tasks/rwm-smallest-stage-offload-target-that-fits-a-target-model/check.py +72 -0
  9510. mlsys/tasks/rwm-smallest-stage-offload-target-that-fits-a-target-model/gen_fixtures.py +1 -0
  9511. mlsys/tasks/rwm-smallest-stage-offload-target-that-fits-a-target-model/meta.json +22 -0
  9512. mlsys/tasks/rwm-smallest-stage-offload-target-that-fits-a-target-model/solution_ref.py +34 -0
  9513. mlsys/tasks/rwm-smallest-stage-offload-target-that-fits-a-target-model/starter.py +2 -0
  9514. mlsys/tasks/rwm-smallest-stage-offload-target-that-fits-a-target-model/task.md +71 -0
  9515. mlsys/tasks/rwm-snapkv-observation-window-pooled-vote-selection/check.py +76 -0
  9516. mlsys/tasks/rwm-snapkv-observation-window-pooled-vote-selection/gen_fixtures.py +1 -0
  9517. mlsys/tasks/rwm-snapkv-observation-window-pooled-vote-selection/meta.json +22 -0
  9518. mlsys/tasks/rwm-snapkv-observation-window-pooled-vote-selection/solution_ref.py +52 -0
  9519. mlsys/tasks/rwm-snapkv-observation-window-pooled-vote-selection/starter.py +28 -0
  9520. mlsys/tasks/rwm-snapkv-observation-window-pooled-vote-selection/task.md +77 -0
  9521. mlsys/tasks/rwm-split-to-minimize-disk-resident-bytes-under-max-memory/check.py +63 -0
  9522. mlsys/tasks/rwm-split-to-minimize-disk-resident-bytes-under-max-memory/gen_fixtures.py +1 -0
  9523. mlsys/tasks/rwm-split-to-minimize-disk-resident-bytes-under-max-memory/meta.json +22 -0
  9524. mlsys/tasks/rwm-split-to-minimize-disk-resident-bytes-under-max-memory/solution_ref.py +24 -0
  9525. mlsys/tasks/rwm-split-to-minimize-disk-resident-bytes-under-max-memory/starter.py +2 -0
  9526. mlsys/tasks/rwm-split-to-minimize-disk-resident-bytes-under-max-memory/task.md +57 -0
  9527. mlsys/tasks/rwm-splittable-vs-oversized-free-blocks-under-max-split-size/check.py +22 -0
  9528. mlsys/tasks/rwm-splittable-vs-oversized-free-blocks-under-max-split-size/gen_fixtures.py +1 -0
  9529. mlsys/tasks/rwm-splittable-vs-oversized-free-blocks-under-max-split-size/meta.json +22 -0
  9530. mlsys/tasks/rwm-splittable-vs-oversized-free-blocks-under-max-split-size/solution_ref.py +6 -0
  9531. mlsys/tasks/rwm-splittable-vs-oversized-free-blocks-under-max-split-size/starter.py +4 -0
  9532. mlsys/tasks/rwm-splittable-vs-oversized-free-blocks-under-max-split-size/task.md +44 -0
  9533. mlsys/tasks/rwm-sqrt-l-segment-size-and-its-memory-recompute-cost/check.py +23 -0
  9534. mlsys/tasks/rwm-sqrt-l-segment-size-and-its-memory-recompute-cost/gen_fixtures.py +1 -0
  9535. mlsys/tasks/rwm-sqrt-l-segment-size-and-its-memory-recompute-cost/meta.json +22 -0
  9536. mlsys/tasks/rwm-sqrt-l-segment-size-and-its-memory-recompute-cost/solution_ref.py +8 -0
  9537. mlsys/tasks/rwm-sqrt-l-segment-size-and-its-memory-recompute-cost/starter.py +6 -0
  9538. mlsys/tasks/rwm-sqrt-l-segment-size-and-its-memory-recompute-cost/task.md +57 -0
  9539. mlsys/tasks/rwm-streamed-layer-forward-equals-full-resident-forward/check.py +36 -0
  9540. mlsys/tasks/rwm-streamed-layer-forward-equals-full-resident-forward/gen_fixtures.py +1 -0
  9541. mlsys/tasks/rwm-streamed-layer-forward-equals-full-resident-forward/meta.json +22 -0
  9542. mlsys/tasks/rwm-streamed-layer-forward-equals-full-resident-forward/solution_ref.py +14 -0
  9543. mlsys/tasks/rwm-streamed-layer-forward-equals-full-resident-forward/starter.py +3 -0
  9544. mlsys/tasks/rwm-streamed-layer-forward-equals-full-resident-forward/task.md +97 -0
  9545. mlsys/tasks/rwm-streamingllm-sink-window-set-rolling-position-ids/check.py +70 -0
  9546. mlsys/tasks/rwm-streamingllm-sink-window-set-rolling-position-ids/gen_fixtures.py +1 -0
  9547. mlsys/tasks/rwm-streamingllm-sink-window-set-rolling-position-ids/meta.json +22 -0
  9548. mlsys/tasks/rwm-streamingllm-sink-window-set-rolling-position-ids/solution_ref.py +25 -0
  9549. mlsys/tasks/rwm-streamingllm-sink-window-set-rolling-position-ids/starter.py +4 -0
  9550. mlsys/tasks/rwm-streamingllm-sink-window-set-rolling-position-ids/task.md +88 -0
  9551. mlsys/tasks/rwm-streamingllm-vs-h2o-retention-of-a-mid-context-needle/check.py +95 -0
  9552. mlsys/tasks/rwm-streamingllm-vs-h2o-retention-of-a-mid-context-needle/gen_fixtures.py +1 -0
  9553. mlsys/tasks/rwm-streamingllm-vs-h2o-retention-of-a-mid-context-needle/meta.json +22 -0
  9554. mlsys/tasks/rwm-streamingllm-vs-h2o-retention-of-a-mid-context-needle/solution_ref.py +23 -0
  9555. mlsys/tasks/rwm-streamingllm-vs-h2o-retention-of-a-mid-context-needle/starter.py +4 -0
  9556. mlsys/tasks/rwm-streamingllm-vs-h2o-retention-of-a-mid-context-needle/task.md +86 -0
  9557. mlsys/tasks/rwm-swap-vs-recompute-preemption-accounting/check.py +51 -0
  9558. mlsys/tasks/rwm-swap-vs-recompute-preemption-accounting/gen_fixtures.py +1 -0
  9559. mlsys/tasks/rwm-swap-vs-recompute-preemption-accounting/meta.json +22 -0
  9560. mlsys/tasks/rwm-swap-vs-recompute-preemption-accounting/solution_ref.py +16 -0
  9561. mlsys/tasks/rwm-swap-vs-recompute-preemption-accounting/starter.py +16 -0
  9562. mlsys/tasks/rwm-swap-vs-recompute-preemption-accounting/task.md +74 -0
  9563. mlsys/tasks/rwm-the-online-softmax-correction-factor-block-by-block/check.py +68 -0
  9564. mlsys/tasks/rwm-the-online-softmax-correction-factor-block-by-block/gen_fixtures.py +1 -0
  9565. mlsys/tasks/rwm-the-online-softmax-correction-factor-block-by-block/meta.json +22 -0
  9566. mlsys/tasks/rwm-the-online-softmax-correction-factor-block-by-block/solution_ref.py +32 -0
  9567. mlsys/tasks/rwm-the-online-softmax-correction-factor-block-by-block/starter.py +4 -0
  9568. mlsys/tasks/rwm-the-online-softmax-correction-factor-block-by-block/task.md +89 -0
  9569. mlsys/tasks/rwm-tiled-flashattention-forward-with-causal-mask/check.py +44 -0
  9570. mlsys/tasks/rwm-tiled-flashattention-forward-with-causal-mask/gen_fixtures.py +1 -0
  9571. mlsys/tasks/rwm-tiled-flashattention-forward-with-causal-mask/meta.json +22 -0
  9572. mlsys/tasks/rwm-tiled-flashattention-forward-with-causal-mask/solution_ref.py +45 -0
  9573. mlsys/tasks/rwm-tiled-flashattention-forward-with-causal-mask/starter.py +4 -0
  9574. mlsys/tasks/rwm-tiled-flashattention-forward-with-causal-mask/task.md +83 -0
  9575. mlsys/tasks/rwm-torchao-4-bit-adamw-state-one-step/check.py +111 -0
  9576. mlsys/tasks/rwm-torchao-4-bit-adamw-state-one-step/gen_fixtures.py +3 -0
  9577. mlsys/tasks/rwm-torchao-4-bit-adamw-state-one-step/meta.json +27 -0
  9578. mlsys/tasks/rwm-torchao-4-bit-adamw-state-one-step/solution_ref.py +65 -0
  9579. mlsys/tasks/rwm-torchao-4-bit-adamw-state-one-step/starter.py +17 -0
  9580. mlsys/tasks/rwm-torchao-4-bit-adamw-state-one-step/task.md +88 -0
  9581. mlsys/tasks/rwm-torchao-8-bit-adamw-state-blockwise-one-step/check.py +81 -0
  9582. mlsys/tasks/rwm-torchao-8-bit-adamw-state-blockwise-one-step/gen_fixtures.py +1 -0
  9583. mlsys/tasks/rwm-torchao-8-bit-adamw-state-blockwise-one-step/meta.json +22 -0
  9584. mlsys/tasks/rwm-torchao-8-bit-adamw-state-blockwise-one-step/solution_ref.py +59 -0
  9585. mlsys/tasks/rwm-torchao-8-bit-adamw-state-blockwise-one-step/starter.py +4 -0
  9586. mlsys/tasks/rwm-torchao-8-bit-adamw-state-blockwise-one-step/task.md +120 -0
  9587. mlsys/tasks/rwm-unsloth-offloaded-checkpoint-context-multiplier/check.py +44 -0
  9588. mlsys/tasks/rwm-unsloth-offloaded-checkpoint-context-multiplier/gen_fixtures.py +1 -0
  9589. mlsys/tasks/rwm-unsloth-offloaded-checkpoint-context-multiplier/meta.json +22 -0
  9590. mlsys/tasks/rwm-unsloth-offloaded-checkpoint-context-multiplier/solution_ref.py +19 -0
  9591. mlsys/tasks/rwm-unsloth-offloaded-checkpoint-context-multiplier/starter.py +2 -0
  9592. mlsys/tasks/rwm-unsloth-offloaded-checkpoint-context-multiplier/task.md +83 -0
  9593. mlsys/tasks/rwm-vae-slicing-batch-split-vs-tiling-spatial-split-peak-memory/check.py +27 -0
  9594. mlsys/tasks/rwm-vae-slicing-batch-split-vs-tiling-spatial-split-peak-memory/gen_fixtures.py +1 -0
  9595. mlsys/tasks/rwm-vae-slicing-batch-split-vs-tiling-spatial-split-peak-memory/meta.json +22 -0
  9596. mlsys/tasks/rwm-vae-slicing-batch-split-vs-tiling-spatial-split-peak-memory/solution_ref.py +12 -0
  9597. mlsys/tasks/rwm-vae-slicing-batch-split-vs-tiling-spatial-split-peak-memory/starter.py +2 -0
  9598. mlsys/tasks/rwm-vae-slicing-batch-split-vs-tiling-spatial-split-peak-memory/task.md +66 -0
  9599. mlsys/tasks/rwm-vae-tiled-decode-with-overlap-blending/check.py +89 -0
  9600. mlsys/tasks/rwm-vae-tiled-decode-with-overlap-blending/gen_fixtures.py +1 -0
  9601. mlsys/tasks/rwm-vae-tiled-decode-with-overlap-blending/meta.json +22 -0
  9602. mlsys/tasks/rwm-vae-tiled-decode-with-overlap-blending/solution_ref.py +66 -0
  9603. mlsys/tasks/rwm-vae-tiled-decode-with-overlap-blending/starter.py +11 -0
  9604. mlsys/tasks/rwm-vae-tiled-decode-with-overlap-blending/task.md +99 -0
  9605. mlsys/tasks/rwm-vram-reduction-from-moving-optimizer-state-step-to-cpu/check.py +41 -0
  9606. mlsys/tasks/rwm-vram-reduction-from-moving-optimizer-state-step-to-cpu/gen_fixtures.py +1 -0
  9607. mlsys/tasks/rwm-vram-reduction-from-moving-optimizer-state-step-to-cpu/meta.json +22 -0
  9608. mlsys/tasks/rwm-vram-reduction-from-moving-optimizer-state-step-to-cpu/solution_ref.py +18 -0
  9609. mlsys/tasks/rwm-vram-reduction-from-moving-optimizer-state-step-to-cpu/starter.py +15 -0
  9610. mlsys/tasks/rwm-vram-reduction-from-moving-optimizer-state-step-to-cpu/task.md +91 -0
  9611. mlsys/tasks/rwm-wasted-slots-physical-blocks-paged-vs-contiguous-pre-alloc/check.py +37 -0
  9612. mlsys/tasks/rwm-wasted-slots-physical-blocks-paged-vs-contiguous-pre-alloc/gen_fixtures.py +1 -0
  9613. mlsys/tasks/rwm-wasted-slots-physical-blocks-paged-vs-contiguous-pre-alloc/meta.json +22 -0
  9614. mlsys/tasks/rwm-wasted-slots-physical-blocks-paged-vs-contiguous-pre-alloc/solution_ref.py +32 -0
  9615. mlsys/tasks/rwm-wasted-slots-physical-blocks-paged-vs-contiguous-pre-alloc/starter.py +2 -0
  9616. mlsys/tasks/rwm-wasted-slots-physical-blocks-paged-vs-contiguous-pre-alloc/task.md +58 -0
  9617. mlsys/tasks/rwm-what-lives-on-gpu-vs-cpu-in-forward-vs-backward-under-fsdp-flags/check.py +40 -0
  9618. mlsys/tasks/rwm-what-lives-on-gpu-vs-cpu-in-forward-vs-backward-under-fsdp-flags/gen_fixtures.py +1 -0
  9619. mlsys/tasks/rwm-what-lives-on-gpu-vs-cpu-in-forward-vs-backward-under-fsdp-flags/meta.json +22 -0
  9620. mlsys/tasks/rwm-what-lives-on-gpu-vs-cpu-in-forward-vs-backward-under-fsdp-flags/solution_ref.py +40 -0
  9621. mlsys/tasks/rwm-what-lives-on-gpu-vs-cpu-in-forward-vs-backward-under-fsdp-flags/starter.py +2 -0
  9622. mlsys/tasks/rwm-what-lives-on-gpu-vs-cpu-in-forward-vs-backward-under-fsdp-flags/task.md +45 -0
  9623. mlsys/tasks/rwm-which-attention-backend-materializes-the-full-score-matrix/check.py +23 -0
  9624. mlsys/tasks/rwm-which-attention-backend-materializes-the-full-score-matrix/gen_fixtures.py +1 -0
  9625. mlsys/tasks/rwm-which-attention-backend-materializes-the-full-score-matrix/meta.json +22 -0
  9626. mlsys/tasks/rwm-which-attention-backend-materializes-the-full-score-matrix/solution_ref.py +12 -0
  9627. mlsys/tasks/rwm-which-attention-backend-materializes-the-full-score-matrix/starter.py +2 -0
  9628. mlsys/tasks/rwm-which-attention-backend-materializes-the-full-score-matrix/task.md +45 -0
  9629. mlsys/tasks/rwm-which-component-is-gpu-resident-per-pipeline-stage-and-mode/check.py +39 -0
  9630. mlsys/tasks/rwm-which-component-is-gpu-resident-per-pipeline-stage-and-mode/gen_fixtures.py +1 -0
  9631. mlsys/tasks/rwm-which-component-is-gpu-resident-per-pipeline-stage-and-mode/meta.json +22 -0
  9632. mlsys/tasks/rwm-which-component-is-gpu-resident-per-pipeline-stage-and-mode/solution_ref.py +36 -0
  9633. mlsys/tasks/rwm-which-component-is-gpu-resident-per-pipeline-stage-and-mode/starter.py +2 -0
  9634. mlsys/tasks/rwm-which-component-is-gpu-resident-per-pipeline-stage-and-mode/task.md +55 -0
  9635. mlsys/tasks/rwm-which-of-params-grads-optimizer-are-sharded-at-each-zero-stage/check.py +21 -0
  9636. mlsys/tasks/rwm-which-of-params-grads-optimizer-are-sharded-at-each-zero-stage/gen_fixtures.py +1 -0
  9637. mlsys/tasks/rwm-which-of-params-grads-optimizer-are-sharded-at-each-zero-stage/meta.json +22 -0
  9638. mlsys/tasks/rwm-which-of-params-grads-optimizer-are-sharded-at-each-zero-stage/solution_ref.py +25 -0
  9639. mlsys/tasks/rwm-which-of-params-grads-optimizer-are-sharded-at-each-zero-stage/starter.py +2 -0
  9640. mlsys/tasks/rwm-which-of-params-grads-optimizer-are-sharded-at-each-zero-stage/task.md +51 -0
  9641. mlsys/tasks/rwm-why-expandable-segments-avoids-a-fragmentation-oom/check.py +130 -0
  9642. mlsys/tasks/rwm-why-expandable-segments-avoids-a-fragmentation-oom/gen_fixtures.py +2 -0
  9643. mlsys/tasks/rwm-why-expandable-segments-avoids-a-fragmentation-oom/meta.json +22 -0
  9644. mlsys/tasks/rwm-why-expandable-segments-avoids-a-fragmentation-oom/solution_ref.py +78 -0
  9645. mlsys/tasks/rwm-why-expandable-segments-avoids-a-fragmentation-oom/starter.py +13 -0
  9646. mlsys/tasks/rwm-why-expandable-segments-avoids-a-fragmentation-oom/task.md +92 -0
  9647. mlsys/tasks/rwq-act-order-column-permutation/check.py +85 -0
  9648. mlsys/tasks/rwq-act-order-column-permutation/gen_fixtures.py +1 -0
  9649. mlsys/tasks/rwq-act-order-column-permutation/meta.json +27 -0
  9650. mlsys/tasks/rwq-act-order-column-permutation/solution_ref.py +53 -0
  9651. mlsys/tasks/rwq-act-order-column-permutation/starter.py +10 -0
  9652. mlsys/tasks/rwq-act-order-column-permutation/task.md +85 -0
  9653. mlsys/tasks/rwq-activation-calibration-scale-moving-absmax/check.py +30 -0
  9654. mlsys/tasks/rwq-activation-calibration-scale-moving-absmax/gen_fixtures.py +1 -0
  9655. mlsys/tasks/rwq-activation-calibration-scale-moving-absmax/meta.json +22 -0
  9656. mlsys/tasks/rwq-activation-calibration-scale-moving-absmax/solution_ref.py +11 -0
  9657. mlsys/tasks/rwq-activation-calibration-scale-moving-absmax/starter.py +4 -0
  9658. mlsys/tasks/rwq-activation-calibration-scale-moving-absmax/task.md +74 -0
  9659. mlsys/tasks/rwq-apply-a-per-channel-scale-and-quantize/check.py +80 -0
  9660. mlsys/tasks/rwq-apply-a-per-channel-scale-and-quantize/gen_fixtures.py +1 -0
  9661. mlsys/tasks/rwq-apply-a-per-channel-scale-and-quantize/meta.json +27 -0
  9662. mlsys/tasks/rwq-apply-a-per-channel-scale-and-quantize/solution_ref.py +38 -0
  9663. mlsys/tasks/rwq-apply-a-per-channel-scale-and-quantize/starter.py +38 -0
  9664. mlsys/tasks/rwq-apply-a-per-channel-scale-and-quantize/task.md +92 -0
  9665. mlsys/tasks/rwq-awq-scaling-vs-plain-group-int4/check.py +64 -0
  9666. mlsys/tasks/rwq-awq-scaling-vs-plain-group-int4/gen_fixtures.py +1 -0
  9667. mlsys/tasks/rwq-awq-scaling-vs-plain-group-int4/meta.json +32 -0
  9668. mlsys/tasks/rwq-awq-scaling-vs-plain-group-int4/solution_ref.py +31 -0
  9669. mlsys/tasks/rwq-awq-scaling-vs-plain-group-int4/starter.py +7 -0
  9670. mlsys/tasks/rwq-awq-scaling-vs-plain-group-int4/task.md +70 -0
  9671. mlsys/tasks/rwq-build-a-normalized-sylvester-hadamard-matrix/check.py +42 -0
  9672. mlsys/tasks/rwq-build-a-normalized-sylvester-hadamard-matrix/gen_fixtures.py +1 -0
  9673. mlsys/tasks/rwq-build-a-normalized-sylvester-hadamard-matrix/meta.json +27 -0
  9674. mlsys/tasks/rwq-build-a-normalized-sylvester-hadamard-matrix/solution_ref.py +8 -0
  9675. mlsys/tasks/rwq-build-a-normalized-sylvester-hadamard-matrix/starter.py +6 -0
  9676. mlsys/tasks/rwq-build-a-normalized-sylvester-hadamard-matrix/task.md +89 -0
  9677. mlsys/tasks/rwq-cholesky-inverse-of-the-damped-hessian/check.py +38 -0
  9678. mlsys/tasks/rwq-cholesky-inverse-of-the-damped-hessian/gen_fixtures.py +1 -0
  9679. mlsys/tasks/rwq-cholesky-inverse-of-the-damped-hessian/meta.json +22 -0
  9680. mlsys/tasks/rwq-cholesky-inverse-of-the-damped-hessian/solution_ref.py +14 -0
  9681. mlsys/tasks/rwq-cholesky-inverse-of-the-damped-hessian/starter.py +9 -0
  9682. mlsys/tasks/rwq-cholesky-inverse-of-the-damped-hessian/task.md +54 -0
  9683. mlsys/tasks/rwq-classify-e4m3-regime-per-value/check.py +37 -0
  9684. mlsys/tasks/rwq-classify-e4m3-regime-per-value/fixtures/fp8_x.npy +0 -0
  9685. mlsys/tasks/rwq-classify-e4m3-regime-per-value/gen_fixtures.py +52 -0
  9686. mlsys/tasks/rwq-classify-e4m3-regime-per-value/meta.json +24 -0
  9687. mlsys/tasks/rwq-classify-e4m3-regime-per-value/solution_ref.py +35 -0
  9688. mlsys/tasks/rwq-classify-e4m3-regime-per-value/starter.py +16 -0
  9689. mlsys/tasks/rwq-classify-e4m3-regime-per-value/task.md +79 -0
  9690. mlsys/tasks/rwq-classify-each-value-s-e2m1-code/check.py +37 -0
  9691. mlsys/tasks/rwq-classify-each-value-s-e2m1-code/fixtures/fp4_x.npy +0 -0
  9692. mlsys/tasks/rwq-classify-each-value-s-e2m1-code/gen_fixtures.py +39 -0
  9693. mlsys/tasks/rwq-classify-each-value-s-e2m1-code/meta.json +24 -0
  9694. mlsys/tasks/rwq-classify-each-value-s-e2m1-code/solution_ref.py +30 -0
  9695. mlsys/tasks/rwq-classify-each-value-s-e2m1-code/starter.py +21 -0
  9696. mlsys/tasks/rwq-classify-each-value-s-e2m1-code/task.md +65 -0
  9697. mlsys/tasks/rwq-classify-which-modules-quantize-dynamic-targets/check.py +21 -0
  9698. mlsys/tasks/rwq-classify-which-modules-quantize-dynamic-targets/gen_fixtures.py +1 -0
  9699. mlsys/tasks/rwq-classify-which-modules-quantize-dynamic-targets/meta.json +22 -0
  9700. mlsys/tasks/rwq-classify-which-modules-quantize-dynamic-targets/solution_ref.py +3 -0
  9701. mlsys/tasks/rwq-classify-which-modules-quantize-dynamic-targets/starter.py +2 -0
  9702. mlsys/tasks/rwq-classify-which-modules-quantize-dynamic-targets/task.md +35 -0
  9703. mlsys/tasks/rwq-damped-hessian-from-calibration-activations/check.py +32 -0
  9704. mlsys/tasks/rwq-damped-hessian-from-calibration-activations/gen_fixtures.py +1 -0
  9705. mlsys/tasks/rwq-damped-hessian-from-calibration-activations/meta.json +27 -0
  9706. mlsys/tasks/rwq-damped-hessian-from-calibration-activations/solution_ref.py +6 -0
  9707. mlsys/tasks/rwq-damped-hessian-from-calibration-activations/starter.py +5 -0
  9708. mlsys/tasks/rwq-damped-hessian-from-calibration-activations/task.md +67 -0
  9709. mlsys/tasks/rwq-debug-error-term-missing-the-h-1-q-q-normalization/check.py +62 -0
  9710. mlsys/tasks/rwq-debug-error-term-missing-the-h-1-q-q-normalization/gen_fixtures.py +2 -0
  9711. mlsys/tasks/rwq-debug-error-term-missing-the-h-1-q-q-normalization/meta.json +27 -0
  9712. mlsys/tasks/rwq-debug-error-term-missing-the-h-1-q-q-normalization/solution_ref.py +32 -0
  9713. mlsys/tasks/rwq-debug-error-term-missing-the-h-1-q-q-normalization/starter.py +34 -0
  9714. mlsys/tasks/rwq-debug-error-term-missing-the-h-1-q-q-normalization/task.md +78 -0
  9715. mlsys/tasks/rwq-debug-loop-optimizes-scale-instead-of-zero-point/check.py +42 -0
  9716. mlsys/tasks/rwq-debug-loop-optimizes-scale-instead-of-zero-point/gen_fixtures.py +1 -0
  9717. mlsys/tasks/rwq-debug-loop-optimizes-scale-instead-of-zero-point/meta.json +22 -0
  9718. mlsys/tasks/rwq-debug-loop-optimizes-scale-instead-of-zero-point/solution_ref.py +23 -0
  9719. mlsys/tasks/rwq-debug-loop-optimizes-scale-instead-of-zero-point/starter.py +18 -0
  9720. mlsys/tasks/rwq-debug-loop-optimizes-scale-instead-of-zero-point/task.md +66 -0
  9721. mlsys/tasks/rwq-debug-per-tensor-scale-instead-of-per-token/check.py +64 -0
  9722. mlsys/tasks/rwq-debug-per-tensor-scale-instead-of-per-token/gen_fixtures.py +1 -0
  9723. mlsys/tasks/rwq-debug-per-tensor-scale-instead-of-per-token/meta.json +27 -0
  9724. mlsys/tasks/rwq-debug-per-tensor-scale-instead-of-per-token/solution_ref.py +23 -0
  9725. mlsys/tasks/rwq-debug-per-tensor-scale-instead-of-per-token/starter.py +23 -0
  9726. mlsys/tasks/rwq-debug-per-tensor-scale-instead-of-per-token/task.md +75 -0
  9727. mlsys/tasks/rwq-debug-per-tensor-scale-where-vector-wise-is-required/check.py +61 -0
  9728. mlsys/tasks/rwq-debug-per-tensor-scale-where-vector-wise-is-required/gen_fixtures.py +1 -0
  9729. mlsys/tasks/rwq-debug-per-tensor-scale-where-vector-wise-is-required/meta.json +22 -0
  9730. mlsys/tasks/rwq-debug-per-tensor-scale-where-vector-wise-is-required/solution_ref.py +24 -0
  9731. mlsys/tasks/rwq-debug-per-tensor-scale-where-vector-wise-is-required/starter.py +17 -0
  9732. mlsys/tasks/rwq-debug-per-tensor-scale-where-vector-wise-is-required/task.md +104 -0
  9733. mlsys/tasks/rwq-debug-scale-applied-in-the-wrong-direction/check.py +39 -0
  9734. mlsys/tasks/rwq-debug-scale-applied-in-the-wrong-direction/gen_fixtures.py +1 -0
  9735. mlsys/tasks/rwq-debug-scale-applied-in-the-wrong-direction/meta.json +22 -0
  9736. mlsys/tasks/rwq-debug-scale-applied-in-the-wrong-direction/solution_ref.py +15 -0
  9737. mlsys/tasks/rwq-debug-scale-applied-in-the-wrong-direction/starter.py +9 -0
  9738. mlsys/tasks/rwq-debug-scale-applied-in-the-wrong-direction/task.md +69 -0
  9739. mlsys/tasks/rwq-debug-smoothing-folded-the-same-way-into-both-sides/check.py +27 -0
  9740. mlsys/tasks/rwq-debug-smoothing-folded-the-same-way-into-both-sides/gen_fixtures.py +1 -0
  9741. mlsys/tasks/rwq-debug-smoothing-folded-the-same-way-into-both-sides/meta.json +22 -0
  9742. mlsys/tasks/rwq-debug-smoothing-folded-the-same-way-into-both-sides/solution_ref.py +8 -0
  9743. mlsys/tasks/rwq-debug-smoothing-folded-the-same-way-into-both-sides/starter.py +10 -0
  9744. mlsys/tasks/rwq-debug-smoothing-folded-the-same-way-into-both-sides/task.md +70 -0
  9745. mlsys/tasks/rwq-debug-static-activation-scale-on-shifted-input/check.py +48 -0
  9746. mlsys/tasks/rwq-debug-static-activation-scale-on-shifted-input/gen_fixtures.py +1 -0
  9747. mlsys/tasks/rwq-debug-static-activation-scale-on-shifted-input/meta.json +22 -0
  9748. mlsys/tasks/rwq-debug-static-activation-scale-on-shifted-input/solution_ref.py +16 -0
  9749. mlsys/tasks/rwq-debug-static-activation-scale-on-shifted-input/starter.py +24 -0
  9750. mlsys/tasks/rwq-debug-static-activation-scale-on-shifted-input/task.md +73 -0
  9751. mlsys/tasks/rwq-debug-uniform-levels-instead-of-the-nf4-codebook/check.py +56 -0
  9752. mlsys/tasks/rwq-debug-uniform-levels-instead-of-the-nf4-codebook/gen_fixtures.py +1 -0
  9753. mlsys/tasks/rwq-debug-uniform-levels-instead-of-the-nf4-codebook/meta.json +22 -0
  9754. mlsys/tasks/rwq-debug-uniform-levels-instead-of-the-nf4-codebook/solution_ref.py +21 -0
  9755. mlsys/tasks/rwq-debug-uniform-levels-instead-of-the-nf4-codebook/starter.py +34 -0
  9756. mlsys/tasks/rwq-debug-uniform-levels-instead-of-the-nf4-codebook/task.md +80 -0
  9757. mlsys/tasks/rwq-debug-unnormalized-hadamard-breaks-invariance/check.py +41 -0
  9758. mlsys/tasks/rwq-debug-unnormalized-hadamard-breaks-invariance/gen_fixtures.py +1 -0
  9759. mlsys/tasks/rwq-debug-unnormalized-hadamard-breaks-invariance/meta.json +22 -0
  9760. mlsys/tasks/rwq-debug-unnormalized-hadamard-breaks-invariance/solution_ref.py +15 -0
  9761. mlsys/tasks/rwq-debug-unnormalized-hadamard-breaks-invariance/starter.py +17 -0
  9762. mlsys/tasks/rwq-debug-unnormalized-hadamard-breaks-invariance/task.md +81 -0
  9763. mlsys/tasks/rwq-decode-e4m3-bit-patterns-to-values/check.py +50 -0
  9764. mlsys/tasks/rwq-decode-e4m3-bit-patterns-to-values/gen_fixtures.py +1 -0
  9765. mlsys/tasks/rwq-decode-e4m3-bit-patterns-to-values/meta.json +22 -0
  9766. mlsys/tasks/rwq-decode-e4m3-bit-patterns-to-values/solution_ref.py +30 -0
  9767. mlsys/tasks/rwq-decode-e4m3-bit-patterns-to-values/starter.py +9 -0
  9768. mlsys/tasks/rwq-decode-e4m3-bit-patterns-to-values/task.md +67 -0
  9769. mlsys/tasks/rwq-decomposition-vs-naive-per-tensor-int8/check.py +59 -0
  9770. mlsys/tasks/rwq-decomposition-vs-naive-per-tensor-int8/gen_fixtures.py +1 -0
  9771. mlsys/tasks/rwq-decomposition-vs-naive-per-tensor-int8/meta.json +27 -0
  9772. mlsys/tasks/rwq-decomposition-vs-naive-per-tensor-int8/solution_ref.py +32 -0
  9773. mlsys/tasks/rwq-decomposition-vs-naive-per-tensor-int8/starter.py +5 -0
  9774. mlsys/tasks/rwq-decomposition-vs-naive-per-tensor-int8/task.md +62 -0
  9775. mlsys/tasks/rwq-dequant-from-hqq-state/check.py +25 -0
  9776. mlsys/tasks/rwq-dequant-from-hqq-state/gen_fixtures.py +1 -0
  9777. mlsys/tasks/rwq-dequant-from-hqq-state/meta.json +22 -0
  9778. mlsys/tasks/rwq-dequant-from-hqq-state/solution_ref.py +24 -0
  9779. mlsys/tasks/rwq-dequant-from-hqq-state/starter.py +4 -0
  9780. mlsys/tasks/rwq-dequant-from-hqq-state/task.md +52 -0
  9781. mlsys/tasks/rwq-dequant-only-from-stored-nf4-codes/check.py +36 -0
  9782. mlsys/tasks/rwq-dequant-only-from-stored-nf4-codes/fixtures/nf4_absmax.npy +0 -0
  9783. mlsys/tasks/rwq-dequant-only-from-stored-nf4-codes/fixtures/nf4_idx.npy +0 -0
  9784. mlsys/tasks/rwq-dequant-only-from-stored-nf4-codes/gen_fixtures.py +27 -0
  9785. mlsys/tasks/rwq-dequant-only-from-stored-nf4-codes/meta.json +25 -0
  9786. mlsys/tasks/rwq-dequant-only-from-stored-nf4-codes/solution_ref.py +20 -0
  9787. mlsys/tasks/rwq-dequant-only-from-stored-nf4-codes/starter.py +15 -0
  9788. mlsys/tasks/rwq-dequant-only-from-stored-nf4-codes/task.md +73 -0
  9789. mlsys/tasks/rwq-detect-outlier-feature-columns-threshold-6-0/check.py +44 -0
  9790. mlsys/tasks/rwq-detect-outlier-feature-columns-threshold-6-0/gen_fixtures.py +1 -0
  9791. mlsys/tasks/rwq-detect-outlier-feature-columns-threshold-6-0/meta.json +22 -0
  9792. mlsys/tasks/rwq-detect-outlier-feature-columns-threshold-6-0/solution_ref.py +11 -0
  9793. mlsys/tasks/rwq-detect-outlier-feature-columns-threshold-6-0/starter.py +8 -0
  9794. mlsys/tasks/rwq-detect-outlier-feature-columns-threshold-6-0/task.md +49 -0
  9795. mlsys/tasks/rwq-double-quantization-of-the-block-scales/check.py +62 -0
  9796. mlsys/tasks/rwq-double-quantization-of-the-block-scales/fixtures/nf4_absmax.npy +0 -0
  9797. mlsys/tasks/rwq-double-quantization-of-the-block-scales/gen_fixtures.py +29 -0
  9798. mlsys/tasks/rwq-double-quantization-of-the-block-scales/meta.json +29 -0
  9799. mlsys/tasks/rwq-double-quantization-of-the-block-scales/solution_ref.py +67 -0
  9800. mlsys/tasks/rwq-double-quantization-of-the-block-scales/starter.py +20 -0
  9801. mlsys/tasks/rwq-double-quantization-of-the-block-scales/task.md +95 -0
  9802. mlsys/tasks/rwq-dtype-range-packing-factor-table/check.py +18 -0
  9803. mlsys/tasks/rwq-dtype-range-packing-factor-table/gen_fixtures.py +1 -0
  9804. mlsys/tasks/rwq-dtype-range-packing-factor-table/meta.json +22 -0
  9805. mlsys/tasks/rwq-dtype-range-packing-factor-table/solution_ref.py +13 -0
  9806. mlsys/tasks/rwq-dtype-range-packing-factor-table/starter.py +2 -0
  9807. mlsys/tasks/rwq-dtype-range-packing-factor-table/task.md +52 -0
  9808. mlsys/tasks/rwq-dynamic-activation-scale-zero-point/check.py +29 -0
  9809. mlsys/tasks/rwq-dynamic-activation-scale-zero-point/gen_fixtures.py +1 -0
  9810. mlsys/tasks/rwq-dynamic-activation-scale-zero-point/meta.json +27 -0
  9811. mlsys/tasks/rwq-dynamic-activation-scale-zero-point/solution_ref.py +30 -0
  9812. mlsys/tasks/rwq-dynamic-activation-scale-zero-point/starter.py +5 -0
  9813. mlsys/tasks/rwq-dynamic-activation-scale-zero-point/task.md +49 -0
  9814. mlsys/tasks/rwq-dynamic-int8-linear-forward/check.py +50 -0
  9815. mlsys/tasks/rwq-dynamic-int8-linear-forward/gen_fixtures.py +1 -0
  9816. mlsys/tasks/rwq-dynamic-int8-linear-forward/meta.json +22 -0
  9817. mlsys/tasks/rwq-dynamic-int8-linear-forward/solution_ref.py +32 -0
  9818. mlsys/tasks/rwq-dynamic-int8-linear-forward/starter.py +10 -0
  9819. mlsys/tasks/rwq-dynamic-int8-linear-forward/task.md +76 -0
  9820. mlsys/tasks/rwq-e4m3-vs-e5m2-on-the-same-tensor/check.py +120 -0
  9821. mlsys/tasks/rwq-e4m3-vs-e5m2-on-the-same-tensor/gen_fixtures.py +2 -0
  9822. mlsys/tasks/rwq-e4m3-vs-e5m2-on-the-same-tensor/meta.json +27 -0
  9823. mlsys/tasks/rwq-e4m3-vs-e5m2-on-the-same-tensor/solution_ref.py +56 -0
  9824. mlsys/tasks/rwq-e4m3-vs-e5m2-on-the-same-tensor/starter.py +11 -0
  9825. mlsys/tasks/rwq-e4m3-vs-e5m2-on-the-same-tensor/task.md +73 -0
  9826. mlsys/tasks/rwq-entropy-kl-calibration-threshold/check.py +74 -0
  9827. mlsys/tasks/rwq-entropy-kl-calibration-threshold/gen_fixtures.py +1 -0
  9828. mlsys/tasks/rwq-entropy-kl-calibration-threshold/meta.json +27 -0
  9829. mlsys/tasks/rwq-entropy-kl-calibration-threshold/solution_ref.py +36 -0
  9830. mlsys/tasks/rwq-entropy-kl-calibration-threshold/starter.py +4 -0
  9831. mlsys/tasks/rwq-entropy-kl-calibration-threshold/task.md +72 -0
  9832. mlsys/tasks/rwq-enumerate-the-e4m3-value-grid/check.py +48 -0
  9833. mlsys/tasks/rwq-enumerate-the-e4m3-value-grid/gen_fixtures.py +1 -0
  9834. mlsys/tasks/rwq-enumerate-the-e4m3-value-grid/meta.json +22 -0
  9835. mlsys/tasks/rwq-enumerate-the-e4m3-value-grid/solution_ref.py +24 -0
  9836. mlsys/tasks/rwq-enumerate-the-e4m3-value-grid/starter.py +8 -0
  9837. mlsys/tasks/rwq-enumerate-the-e4m3-value-grid/task.md +71 -0
  9838. mlsys/tasks/rwq-error-propagation-through-softmax/check.py +62 -0
  9839. mlsys/tasks/rwq-error-propagation-through-softmax/gen_fixtures.py +1 -0
  9840. mlsys/tasks/rwq-error-propagation-through-softmax/meta.json +22 -0
  9841. mlsys/tasks/rwq-error-propagation-through-softmax/solution_ref.py +33 -0
  9842. mlsys/tasks/rwq-error-propagation-through-softmax/starter.py +8 -0
  9843. mlsys/tasks/rwq-error-propagation-through-softmax/task.md +69 -0
  9844. mlsys/tasks/rwq-fast-walsh-hadamard-transform/check.py +50 -0
  9845. mlsys/tasks/rwq-fast-walsh-hadamard-transform/gen_fixtures.py +2 -0
  9846. mlsys/tasks/rwq-fast-walsh-hadamard-transform/meta.json +22 -0
  9847. mlsys/tasks/rwq-fast-walsh-hadamard-transform/solution_ref.py +27 -0
  9848. mlsys/tasks/rwq-fast-walsh-hadamard-transform/starter.py +11 -0
  9849. mlsys/tasks/rwq-fast-walsh-hadamard-transform/task.md +71 -0
  9850. mlsys/tasks/rwq-float-vs-integer-zero-point-domains-are-equivalent/check.py +72 -0
  9851. mlsys/tasks/rwq-float-vs-integer-zero-point-domains-are-equivalent/gen_fixtures.py +2 -0
  9852. mlsys/tasks/rwq-float-vs-integer-zero-point-domains-are-equivalent/meta.json +32 -0
  9853. mlsys/tasks/rwq-float-vs-integer-zero-point-domains-are-equivalent/solution_ref.py +9 -0
  9854. mlsys/tasks/rwq-float-vs-integer-zero-point-domains-are-equivalent/starter.py +10 -0
  9855. mlsys/tasks/rwq-float-vs-integer-zero-point-domains-are-equivalent/task.md +86 -0
  9856. mlsys/tasks/rwq-full-autoround-loop/check.py +80 -0
  9857. mlsys/tasks/rwq-full-autoround-loop/gen_fixtures.py +1 -0
  9858. mlsys/tasks/rwq-full-autoround-loop/meta.json +27 -0
  9859. mlsys/tasks/rwq-full-autoround-loop/solution_ref.py +37 -0
  9860. mlsys/tasks/rwq-full-autoround-loop/starter.py +4 -0
  9861. mlsys/tasks/rwq-full-autoround-loop/task.md +92 -0
  9862. mlsys/tasks/rwq-full-fp8-w8a8-dynamic-matmul/check.py +91 -0
  9863. mlsys/tasks/rwq-full-fp8-w8a8-dynamic-matmul/gen_fixtures.py +1 -0
  9864. mlsys/tasks/rwq-full-fp8-w8a8-dynamic-matmul/meta.json +27 -0
  9865. mlsys/tasks/rwq-full-fp8-w8a8-dynamic-matmul/solution_ref.py +63 -0
  9866. mlsys/tasks/rwq-full-fp8-w8a8-dynamic-matmul/starter.py +21 -0
  9867. mlsys/tasks/rwq-full-fp8-w8a8-dynamic-matmul/task.md +95 -0
  9868. mlsys/tasks/rwq-full-gptq-error-compensation-on-a-layer/check.py +103 -0
  9869. mlsys/tasks/rwq-full-gptq-error-compensation-on-a-layer/fixtures/gptq_w.npy +0 -0
  9870. mlsys/tasks/rwq-full-gptq-error-compensation-on-a-layer/fixtures/gptq_x.npy +0 -0
  9871. mlsys/tasks/rwq-full-gptq-error-compensation-on-a-layer/gen_fixtures.py +26 -0
  9872. mlsys/tasks/rwq-full-gptq-error-compensation-on-a-layer/meta.json +35 -0
  9873. mlsys/tasks/rwq-full-gptq-error-compensation-on-a-layer/solution_ref.py +59 -0
  9874. mlsys/tasks/rwq-full-gptq-error-compensation-on-a-layer/starter.py +14 -0
  9875. mlsys/tasks/rwq-full-gptq-error-compensation-on-a-layer/task.md +94 -0
  9876. mlsys/tasks/rwq-full-hqq-optimization-loop/check.py +73 -0
  9877. mlsys/tasks/rwq-full-hqq-optimization-loop/gen_fixtures.py +2 -0
  9878. mlsys/tasks/rwq-full-hqq-optimization-loop/meta.json +27 -0
  9879. mlsys/tasks/rwq-full-hqq-optimization-loop/solution_ref.py +30 -0
  9880. mlsys/tasks/rwq-full-hqq-optimization-loop/starter.py +11 -0
  9881. mlsys/tasks/rwq-full-hqq-optimization-loop/task.md +99 -0
  9882. mlsys/tasks/rwq-full-nf4-quantize-dequantize-blocksize-64/check.py +51 -0
  9883. mlsys/tasks/rwq-full-nf4-quantize-dequantize-blocksize-64/fixtures/nf4_w.npy +0 -0
  9884. mlsys/tasks/rwq-full-nf4-quantize-dequantize-blocksize-64/gen_fixtures.py +31 -0
  9885. mlsys/tasks/rwq-full-nf4-quantize-dequantize-blocksize-64/meta.json +29 -0
  9886. mlsys/tasks/rwq-full-nf4-quantize-dequantize-blocksize-64/solution_ref.py +25 -0
  9887. mlsys/tasks/rwq-full-nf4-quantize-dequantize-blocksize-64/starter.py +22 -0
  9888. mlsys/tasks/rwq-full-nf4-quantize-dequantize-blocksize-64/task.md +69 -0
  9889. mlsys/tasks/rwq-generalized-soft-threshold-shrinkage-operator/check.py +21 -0
  9890. mlsys/tasks/rwq-generalized-soft-threshold-shrinkage-operator/gen_fixtures.py +1 -0
  9891. mlsys/tasks/rwq-generalized-soft-threshold-shrinkage-operator/meta.json +22 -0
  9892. mlsys/tasks/rwq-generalized-soft-threshold-shrinkage-operator/solution_ref.py +9 -0
  9893. mlsys/tasks/rwq-generalized-soft-threshold-shrinkage-operator/starter.py +2 -0
  9894. mlsys/tasks/rwq-generalized-soft-threshold-shrinkage-operator/task.md +52 -0
  9895. mlsys/tasks/rwq-gptq-vs-rtn-output-error/check.py +98 -0
  9896. mlsys/tasks/rwq-gptq-vs-rtn-output-error/gen_fixtures.py +1 -0
  9897. mlsys/tasks/rwq-gptq-vs-rtn-output-error/meta.json +32 -0
  9898. mlsys/tasks/rwq-gptq-vs-rtn-output-error/solution_ref.py +57 -0
  9899. mlsys/tasks/rwq-gptq-vs-rtn-output-error/starter.py +9 -0
  9900. mlsys/tasks/rwq-gptq-vs-rtn-output-error/task.md +94 -0
  9901. mlsys/tasks/rwq-grid-search-the-per-channel-scale-exponent/check.py +66 -0
  9902. mlsys/tasks/rwq-grid-search-the-per-channel-scale-exponent/gen_fixtures.py +1 -0
  9903. mlsys/tasks/rwq-grid-search-the-per-channel-scale-exponent/meta.json +27 -0
  9904. mlsys/tasks/rwq-grid-search-the-per-channel-scale-exponent/solution_ref.py +51 -0
  9905. mlsys/tasks/rwq-grid-search-the-per-channel-scale-exponent/starter.py +27 -0
  9906. mlsys/tasks/rwq-grid-search-the-per-channel-scale-exponent/task.md +95 -0
  9907. mlsys/tasks/rwq-group-wise-rtn-baseline-the-thing-gptq-beats/check.py +53 -0
  9908. mlsys/tasks/rwq-group-wise-rtn-baseline-the-thing-gptq-beats/fixtures/gptq_w.npy +0 -0
  9909. mlsys/tasks/rwq-group-wise-rtn-baseline-the-thing-gptq-beats/gen_fixtures.py +24 -0
  9910. mlsys/tasks/rwq-group-wise-rtn-baseline-the-thing-gptq-beats/meta.json +29 -0
  9911. mlsys/tasks/rwq-group-wise-rtn-baseline-the-thing-gptq-beats/solution_ref.py +34 -0
  9912. mlsys/tasks/rwq-group-wise-rtn-baseline-the-thing-gptq-beats/starter.py +15 -0
  9913. mlsys/tasks/rwq-group-wise-rtn-baseline-the-thing-gptq-beats/task.md +72 -0
  9914. mlsys/tasks/rwq-hard-activation-channels-needing-migration/check.py +67 -0
  9915. mlsys/tasks/rwq-hard-activation-channels-needing-migration/gen_fixtures.py +1 -0
  9916. mlsys/tasks/rwq-hard-activation-channels-needing-migration/meta.json +22 -0
  9917. mlsys/tasks/rwq-hard-activation-channels-needing-migration/solution_ref.py +9 -0
  9918. mlsys/tasks/rwq-hard-activation-channels-needing-migration/starter.py +6 -0
  9919. mlsys/tasks/rwq-hard-activation-channels-needing-migration/task.md +65 -0
  9920. mlsys/tasks/rwq-hqq-initialization-asymmetric-group-quant/check.py +83 -0
  9921. mlsys/tasks/rwq-hqq-initialization-asymmetric-group-quant/gen_fixtures.py +2 -0
  9922. mlsys/tasks/rwq-hqq-initialization-asymmetric-group-quant/meta.json +27 -0
  9923. mlsys/tasks/rwq-hqq-initialization-asymmetric-group-quant/solution_ref.py +64 -0
  9924. mlsys/tasks/rwq-hqq-initialization-asymmetric-group-quant/starter.py +20 -0
  9925. mlsys/tasks/rwq-hqq-initialization-asymmetric-group-quant/task.md +85 -0
  9926. mlsys/tasks/rwq-hqq-vs-asymmetric-rtn-at-4-bit/check.py +80 -0
  9927. mlsys/tasks/rwq-hqq-vs-asymmetric-rtn-at-4-bit/gen_fixtures.py +1 -0
  9928. mlsys/tasks/rwq-hqq-vs-asymmetric-rtn-at-4-bit/meta.json +32 -0
  9929. mlsys/tasks/rwq-hqq-vs-asymmetric-rtn-at-4-bit/solution_ref.py +41 -0
  9930. mlsys/tasks/rwq-hqq-vs-asymmetric-rtn-at-4-bit/starter.py +7 -0
  9931. mlsys/tasks/rwq-hqq-vs-asymmetric-rtn-at-4-bit/task.md +70 -0
  9932. mlsys/tasks/rwq-imatrix-weighted-scale-selection/check.py +62 -0
  9933. mlsys/tasks/rwq-imatrix-weighted-scale-selection/gen_fixtures.py +2 -0
  9934. mlsys/tasks/rwq-imatrix-weighted-scale-selection/meta.json +27 -0
  9935. mlsys/tasks/rwq-imatrix-weighted-scale-selection/solution_ref.py +24 -0
  9936. mlsys/tasks/rwq-imatrix-weighted-scale-selection/starter.py +10 -0
  9937. mlsys/tasks/rwq-imatrix-weighted-scale-selection/task.md +79 -0
  9938. mlsys/tasks/rwq-importance-matrix-from-calibration/check.py +39 -0
  9939. mlsys/tasks/rwq-importance-matrix-from-calibration/fixtures/gguf_x.npy +0 -0
  9940. mlsys/tasks/rwq-importance-matrix-from-calibration/gen_fixtures.py +43 -0
  9941. mlsys/tasks/rwq-importance-matrix-from-calibration/meta.json +24 -0
  9942. mlsys/tasks/rwq-importance-matrix-from-calibration/solution_ref.py +10 -0
  9943. mlsys/tasks/rwq-importance-matrix-from-calibration/starter.py +9 -0
  9944. mlsys/tasks/rwq-importance-matrix-from-calibration/task.md +69 -0
  9945. mlsys/tasks/rwq-int4-weight-only-tinygemm-quant/check.py +79 -0
  9946. mlsys/tasks/rwq-int4-weight-only-tinygemm-quant/fixtures/tao_w.npy +0 -0
  9947. mlsys/tasks/rwq-int4-weight-only-tinygemm-quant/gen_fixtures.py +30 -0
  9948. mlsys/tasks/rwq-int4-weight-only-tinygemm-quant/meta.json +34 -0
  9949. mlsys/tasks/rwq-int4-weight-only-tinygemm-quant/solution_ref.py +26 -0
  9950. mlsys/tasks/rwq-int4-weight-only-tinygemm-quant/starter.py +15 -0
  9951. mlsys/tasks/rwq-int4-weight-only-tinygemm-quant/task.md +84 -0
  9952. mlsys/tasks/rwq-int8-dynamic-activation-int8-weight-linear/check.py +47 -0
  9953. mlsys/tasks/rwq-int8-dynamic-activation-int8-weight-linear/gen_fixtures.py +1 -0
  9954. mlsys/tasks/rwq-int8-dynamic-activation-int8-weight-linear/meta.json +22 -0
  9955. mlsys/tasks/rwq-int8-dynamic-activation-int8-weight-linear/solution_ref.py +23 -0
  9956. mlsys/tasks/rwq-int8-dynamic-activation-int8-weight-linear/starter.py +10 -0
  9957. mlsys/tasks/rwq-int8-dynamic-activation-int8-weight-linear/task.md +98 -0
  9958. mlsys/tasks/rwq-int8-vs-fp8-kv-attention-error/check.py +81 -0
  9959. mlsys/tasks/rwq-int8-vs-fp8-kv-attention-error/gen_fixtures.py +1 -0
  9960. mlsys/tasks/rwq-int8-vs-fp8-kv-attention-error/meta.json +27 -0
  9961. mlsys/tasks/rwq-int8-vs-fp8-kv-attention-error/solution_ref.py +40 -0
  9962. mlsys/tasks/rwq-int8-vs-fp8-kv-attention-error/starter.py +4 -0
  9963. mlsys/tasks/rwq-int8-vs-fp8-kv-attention-error/task.md +76 -0
  9964. mlsys/tasks/rwq-learned-clipping-range/check.py +85 -0
  9965. mlsys/tasks/rwq-learned-clipping-range/gen_fixtures.py +1 -0
  9966. mlsys/tasks/rwq-learned-clipping-range/meta.json +27 -0
  9967. mlsys/tasks/rwq-learned-clipping-range/solution_ref.py +49 -0
  9968. mlsys/tasks/rwq-learned-clipping-range/starter.py +21 -0
  9969. mlsys/tasks/rwq-learned-clipping-range/task.md +94 -0
  9970. mlsys/tasks/rwq-learned-rounding-vs-nearest-rounding/check.py +83 -0
  9971. mlsys/tasks/rwq-learned-rounding-vs-nearest-rounding/gen_fixtures.py +2 -0
  9972. mlsys/tasks/rwq-learned-rounding-vs-nearest-rounding/meta.json +32 -0
  9973. mlsys/tasks/rwq-learned-rounding-vs-nearest-rounding/solution_ref.py +52 -0
  9974. mlsys/tasks/rwq-learned-rounding-vs-nearest-rounding/starter.py +15 -0
  9975. mlsys/tasks/rwq-learned-rounding-vs-nearest-rounding/task.md +88 -0
  9976. mlsys/tasks/rwq-match-a-bits-per-weight-budget-to-a-gguf-type/check.py +41 -0
  9977. mlsys/tasks/rwq-match-a-bits-per-weight-budget-to-a-gguf-type/gen_fixtures.py +1 -0
  9978. mlsys/tasks/rwq-match-a-bits-per-weight-budget-to-a-gguf-type/meta.json +22 -0
  9979. mlsys/tasks/rwq-match-a-bits-per-weight-budget-to-a-gguf-type/solution_ref.py +20 -0
  9980. mlsys/tasks/rwq-match-a-bits-per-weight-budget-to-a-gguf-type/starter.py +20 -0
  9981. mlsys/tasks/rwq-match-a-bits-per-weight-budget-to-a-gguf-type/task.md +58 -0
  9982. mlsys/tasks/rwq-math-equivalent-smoothing-transform/check.py +26 -0
  9983. mlsys/tasks/rwq-math-equivalent-smoothing-transform/gen_fixtures.py +1 -0
  9984. mlsys/tasks/rwq-math-equivalent-smoothing-transform/meta.json +22 -0
  9985. mlsys/tasks/rwq-math-equivalent-smoothing-transform/solution_ref.py +34 -0
  9986. mlsys/tasks/rwq-math-equivalent-smoothing-transform/starter.py +6 -0
  9987. mlsys/tasks/rwq-math-equivalent-smoothing-transform/task.md +67 -0
  9988. mlsys/tasks/rwq-migrated-quantization-difficulty/check.py +69 -0
  9989. mlsys/tasks/rwq-migrated-quantization-difficulty/gen_fixtures.py +2 -0
  9990. mlsys/tasks/rwq-migrated-quantization-difficulty/meta.json +27 -0
  9991. mlsys/tasks/rwq-migrated-quantization-difficulty/solution_ref.py +46 -0
  9992. mlsys/tasks/rwq-migrated-quantization-difficulty/starter.py +20 -0
  9993. mlsys/tasks/rwq-migrated-quantization-difficulty/task.md +89 -0
  9994. mlsys/tasks/rwq-min-max-vs-percentile-vs-entropy-calibration/check.py +122 -0
  9995. mlsys/tasks/rwq-min-max-vs-percentile-vs-entropy-calibration/gen_fixtures.py +1 -0
  9996. mlsys/tasks/rwq-min-max-vs-percentile-vs-entropy-calibration/meta.json +27 -0
  9997. mlsys/tasks/rwq-min-max-vs-percentile-vs-entropy-calibration/solution_ref.py +94 -0
  9998. mlsys/tasks/rwq-min-max-vs-percentile-vs-entropy-calibration/starter.py +12 -0
  9999. mlsys/tasks/rwq-min-max-vs-percentile-vs-entropy-calibration/task.md +90 -0
  10000. mlsys/tasks/rwq-mixed-precision-memory-accounting/check.py +26 -0
  10001. mlsys/tasks/rwq-mixed-precision-memory-accounting/gen_fixtures.py +1 -0
  10002. mlsys/tasks/rwq-mixed-precision-memory-accounting/meta.json +22 -0
  10003. mlsys/tasks/rwq-mixed-precision-memory-accounting/solution_ref.py +28 -0
  10004. mlsys/tasks/rwq-mixed-precision-memory-accounting/starter.py +2 -0
  10005. mlsys/tasks/rwq-mixed-precision-memory-accounting/task.md +77 -0
  10006. mlsys/tasks/rwq-mixed-precision-outlier-decomposition/check.py +81 -0
  10007. mlsys/tasks/rwq-mixed-precision-outlier-decomposition/gen_fixtures.py +1 -0
  10008. mlsys/tasks/rwq-mixed-precision-outlier-decomposition/meta.json +27 -0
  10009. mlsys/tasks/rwq-mixed-precision-outlier-decomposition/solution_ref.py +32 -0
  10010. mlsys/tasks/rwq-mixed-precision-outlier-decomposition/starter.py +4 -0
  10011. mlsys/tasks/rwq-mixed-precision-outlier-decomposition/task.md +100 -0
  10012. mlsys/tasks/rwq-mxfp4-e8m0-power-of-two-block-scale/check.py +31 -0
  10013. mlsys/tasks/rwq-mxfp4-e8m0-power-of-two-block-scale/fixtures/mx_w.npy +0 -0
  10014. mlsys/tasks/rwq-mxfp4-e8m0-power-of-two-block-scale/gen_fixtures.py +45 -0
  10015. mlsys/tasks/rwq-mxfp4-e8m0-power-of-two-block-scale/meta.json +24 -0
  10016. mlsys/tasks/rwq-mxfp4-e8m0-power-of-two-block-scale/solution_ref.py +17 -0
  10017. mlsys/tasks/rwq-mxfp4-e8m0-power-of-two-block-scale/starter.py +14 -0
  10018. mlsys/tasks/rwq-mxfp4-e8m0-power-of-two-block-scale/task.md +63 -0
  10019. mlsys/tasks/rwq-mxfp4-full-block-quantization/check.py +57 -0
  10020. mlsys/tasks/rwq-mxfp4-full-block-quantization/fixtures/mx_w.npy +0 -0
  10021. mlsys/tasks/rwq-mxfp4-full-block-quantization/gen_fixtures.py +38 -0
  10022. mlsys/tasks/rwq-mxfp4-full-block-quantization/meta.json +34 -0
  10023. mlsys/tasks/rwq-mxfp4-full-block-quantization/solution_ref.py +24 -0
  10024. mlsys/tasks/rwq-mxfp4-full-block-quantization/starter.py +9 -0
  10025. mlsys/tasks/rwq-mxfp4-full-block-quantization/task.md +95 -0
  10026. mlsys/tasks/rwq-nearest-rounding-baseline-v-0/check.py +70 -0
  10027. mlsys/tasks/rwq-nearest-rounding-baseline-v-0/fixtures/ar_w.npy +0 -0
  10028. mlsys/tasks/rwq-nearest-rounding-baseline-v-0/gen_fixtures.py +29 -0
  10029. mlsys/tasks/rwq-nearest-rounding-baseline-v-0/meta.json +29 -0
  10030. mlsys/tasks/rwq-nearest-rounding-baseline-v-0/solution_ref.py +38 -0
  10031. mlsys/tasks/rwq-nearest-rounding-baseline-v-0/starter.py +12 -0
  10032. mlsys/tasks/rwq-nearest-rounding-baseline-v-0/task.md +81 -0
  10033. mlsys/tasks/rwq-nf4-beats-symmetric-int4-on-normal-weights/check.py +53 -0
  10034. mlsys/tasks/rwq-nf4-beats-symmetric-int4-on-normal-weights/gen_fixtures.py +2 -0
  10035. mlsys/tasks/rwq-nf4-beats-symmetric-int4-on-normal-weights/meta.json +27 -0
  10036. mlsys/tasks/rwq-nf4-beats-symmetric-int4-on-normal-weights/solution_ref.py +37 -0
  10037. mlsys/tasks/rwq-nf4-beats-symmetric-int4-on-normal-weights/starter.py +11 -0
  10038. mlsys/tasks/rwq-nf4-beats-symmetric-int4-on-normal-weights/task.md +71 -0
  10039. mlsys/tasks/rwq-nvfp4-second-level-scale-factorization/check.py +72 -0
  10040. mlsys/tasks/rwq-nvfp4-second-level-scale-factorization/gen_fixtures.py +1 -0
  10041. mlsys/tasks/rwq-nvfp4-second-level-scale-factorization/meta.json +22 -0
  10042. mlsys/tasks/rwq-nvfp4-second-level-scale-factorization/solution_ref.py +43 -0
  10043. mlsys/tasks/rwq-nvfp4-second-level-scale-factorization/starter.py +21 -0
  10044. mlsys/tasks/rwq-nvfp4-second-level-scale-factorization/task.md +84 -0
  10045. mlsys/tasks/rwq-nvfp4-two-level-scaling/check.py +101 -0
  10046. mlsys/tasks/rwq-nvfp4-two-level-scaling/fixtures/nv_w.npy +0 -0
  10047. mlsys/tasks/rwq-nvfp4-two-level-scaling/gen_fixtures.py +44 -0
  10048. mlsys/tasks/rwq-nvfp4-two-level-scaling/meta.json +39 -0
  10049. mlsys/tasks/rwq-nvfp4-two-level-scaling/solution_ref.py +58 -0
  10050. mlsys/tasks/rwq-nvfp4-two-level-scaling/starter.py +23 -0
  10051. mlsys/tasks/rwq-nvfp4-two-level-scaling/task.md +96 -0
  10052. mlsys/tasks/rwq-nvfp4-vs-mxfp4-accuracy/check.py +59 -0
  10053. mlsys/tasks/rwq-nvfp4-vs-mxfp4-accuracy/gen_fixtures.py +1 -0
  10054. mlsys/tasks/rwq-nvfp4-vs-mxfp4-accuracy/meta.json +32 -0
  10055. mlsys/tasks/rwq-nvfp4-vs-mxfp4-accuracy/solution_ref.py +37 -0
  10056. mlsys/tasks/rwq-nvfp4-vs-mxfp4-accuracy/starter.py +35 -0
  10057. mlsys/tasks/rwq-nvfp4-vs-mxfp4-accuracy/task.md +81 -0
  10058. mlsys/tasks/rwq-one-half-quadratic-iteration/check.py +70 -0
  10059. mlsys/tasks/rwq-one-half-quadratic-iteration/gen_fixtures.py +2 -0
  10060. mlsys/tasks/rwq-one-half-quadratic-iteration/meta.json +27 -0
  10061. mlsys/tasks/rwq-one-half-quadratic-iteration/solution_ref.py +40 -0
  10062. mlsys/tasks/rwq-one-half-quadratic-iteration/starter.py +17 -0
  10063. mlsys/tasks/rwq-one-half-quadratic-iteration/task.md +84 -0
  10064. mlsys/tasks/rwq-one-obq-single-weight-hessian-update/check.py +52 -0
  10065. mlsys/tasks/rwq-one-obq-single-weight-hessian-update/gen_fixtures.py +1 -0
  10066. mlsys/tasks/rwq-one-obq-single-weight-hessian-update/meta.json +22 -0
  10067. mlsys/tasks/rwq-one-obq-single-weight-hessian-update/solution_ref.py +19 -0
  10068. mlsys/tasks/rwq-one-obq-single-weight-hessian-update/starter.py +4 -0
  10069. mlsys/tasks/rwq-one-obq-single-weight-hessian-update/task.md +78 -0
  10070. mlsys/tasks/rwq-one-signsgd-rounding-step/check.py +49 -0
  10071. mlsys/tasks/rwq-one-signsgd-rounding-step/gen_fixtures.py +3 -0
  10072. mlsys/tasks/rwq-one-signsgd-rounding-step/meta.json +27 -0
  10073. mlsys/tasks/rwq-one-signsgd-rounding-step/solution_ref.py +15 -0
  10074. mlsys/tasks/rwq-one-signsgd-rounding-step/starter.py +10 -0
  10075. mlsys/tasks/rwq-one-signsgd-rounding-step/task.md +76 -0
  10076. mlsys/tasks/rwq-outlier-ratio-before-after-rotation/check.py +81 -0
  10077. mlsys/tasks/rwq-outlier-ratio-before-after-rotation/fixtures/rot_x.npy +0 -0
  10078. mlsys/tasks/rwq-outlier-ratio-before-after-rotation/gen_fixtures.py +35 -0
  10079. mlsys/tasks/rwq-outlier-ratio-before-after-rotation/meta.json +29 -0
  10080. mlsys/tasks/rwq-outlier-ratio-before-after-rotation/solution_ref.py +24 -0
  10081. mlsys/tasks/rwq-outlier-ratio-before-after-rotation/starter.py +11 -0
  10082. mlsys/tasks/rwq-outlier-ratio-before-after-rotation/task.md +76 -0
  10083. mlsys/tasks/rwq-per-64-block-absmax-scales/check.py +24 -0
  10084. mlsys/tasks/rwq-per-64-block-absmax-scales/fixtures/nf4_w.npy +0 -0
  10085. mlsys/tasks/rwq-per-64-block-absmax-scales/gen_fixtures.py +26 -0
  10086. mlsys/tasks/rwq-per-64-block-absmax-scales/meta.json +24 -0
  10087. mlsys/tasks/rwq-per-64-block-absmax-scales/solution_ref.py +7 -0
  10088. mlsys/tasks/rwq-per-64-block-absmax-scales/starter.py +7 -0
  10089. mlsys/tasks/rwq-per-64-block-absmax-scales/task.md +80 -0
  10090. mlsys/tasks/rwq-per-channel-smoothing-scale-vector/check.py +26 -0
  10091. mlsys/tasks/rwq-per-channel-smoothing-scale-vector/gen_fixtures.py +1 -0
  10092. mlsys/tasks/rwq-per-channel-smoothing-scale-vector/meta.json +22 -0
  10093. mlsys/tasks/rwq-per-channel-smoothing-scale-vector/solution_ref.py +23 -0
  10094. mlsys/tasks/rwq-per-channel-smoothing-scale-vector/starter.py +4 -0
  10095. mlsys/tasks/rwq-per-channel-smoothing-scale-vector/task.md +48 -0
  10096. mlsys/tasks/rwq-per-input-channel-importance/check.py +16 -0
  10097. mlsys/tasks/rwq-per-input-channel-importance/gen_fixtures.py +1 -0
  10098. mlsys/tasks/rwq-per-input-channel-importance/meta.json +22 -0
  10099. mlsys/tasks/rwq-per-input-channel-importance/solution_ref.py +17 -0
  10100. mlsys/tasks/rwq-per-input-channel-importance/starter.py +4 -0
  10101. mlsys/tasks/rwq-per-input-channel-importance/task.md +49 -0
  10102. mlsys/tasks/rwq-per-tensor-and-per-token-fp8-scales/check.py +43 -0
  10103. mlsys/tasks/rwq-per-tensor-and-per-token-fp8-scales/gen_fixtures.py +1 -0
  10104. mlsys/tasks/rwq-per-tensor-and-per-token-fp8-scales/meta.json +22 -0
  10105. mlsys/tasks/rwq-per-tensor-and-per-token-fp8-scales/solution_ref.py +30 -0
  10106. mlsys/tasks/rwq-per-tensor-and-per-token-fp8-scales/starter.py +4 -0
  10107. mlsys/tasks/rwq-per-tensor-and-per-token-fp8-scales/task.md +61 -0
  10108. mlsys/tasks/rwq-per-tensor-vs-per-channel-weight-int8/check.py +60 -0
  10109. mlsys/tasks/rwq-per-tensor-vs-per-channel-weight-int8/gen_fixtures.py +1 -0
  10110. mlsys/tasks/rwq-per-tensor-vs-per-channel-weight-int8/meta.json +32 -0
  10111. mlsys/tasks/rwq-per-tensor-vs-per-channel-weight-int8/solution_ref.py +27 -0
  10112. mlsys/tasks/rwq-per-tensor-vs-per-channel-weight-int8/starter.py +22 -0
  10113. mlsys/tasks/rwq-per-tensor-vs-per-channel-weight-int8/task.md +76 -0
  10114. mlsys/tasks/rwq-per-token-fp8-e4m3-kv-quant-attention-error/check.py +83 -0
  10115. mlsys/tasks/rwq-per-token-fp8-e4m3-kv-quant-attention-error/gen_fixtures.py +1 -0
  10116. mlsys/tasks/rwq-per-token-fp8-e4m3-kv-quant-attention-error/meta.json +27 -0
  10117. mlsys/tasks/rwq-per-token-fp8-e4m3-kv-quant-attention-error/solution_ref.py +44 -0
  10118. mlsys/tasks/rwq-per-token-fp8-e4m3-kv-quant-attention-error/starter.py +4 -0
  10119. mlsys/tasks/rwq-per-token-fp8-e4m3-kv-quant-attention-error/task.md +89 -0
  10120. mlsys/tasks/rwq-per-token-int8-kv-quant-attention-error/check.py +65 -0
  10121. mlsys/tasks/rwq-per-token-int8-kv-quant-attention-error/gen_fixtures.py +2 -0
  10122. mlsys/tasks/rwq-per-token-int8-kv-quant-attention-error/meta.json +27 -0
  10123. mlsys/tasks/rwq-per-token-int8-kv-quant-attention-error/solution_ref.py +55 -0
  10124. mlsys/tasks/rwq-per-token-int8-kv-quant-attention-error/starter.py +20 -0
  10125. mlsys/tasks/rwq-per-token-int8-kv-quant-attention-error/task.md +78 -0
  10126. mlsys/tasks/rwq-per-token-scales-memory-accounting/check.py +54 -0
  10127. mlsys/tasks/rwq-per-token-scales-memory-accounting/gen_fixtures.py +1 -0
  10128. mlsys/tasks/rwq-per-token-scales-memory-accounting/meta.json +27 -0
  10129. mlsys/tasks/rwq-per-token-scales-memory-accounting/solution_ref.py +21 -0
  10130. mlsys/tasks/rwq-per-token-scales-memory-accounting/starter.py +4 -0
  10131. mlsys/tasks/rwq-per-token-scales-memory-accounting/task.md +85 -0
  10132. mlsys/tasks/rwq-percentile-clipping-sweep/check.py +59 -0
  10133. mlsys/tasks/rwq-percentile-clipping-sweep/gen_fixtures.py +3 -0
  10134. mlsys/tasks/rwq-percentile-clipping-sweep/meta.json +27 -0
  10135. mlsys/tasks/rwq-percentile-clipping-sweep/solution_ref.py +28 -0
  10136. mlsys/tasks/rwq-percentile-clipping-sweep/starter.py +11 -0
  10137. mlsys/tasks/rwq-percentile-clipping-sweep/task.md +76 -0
  10138. mlsys/tasks/rwq-pick-the-int4-group-size/check.py +58 -0
  10139. mlsys/tasks/rwq-pick-the-int4-group-size/gen_fixtures.py +1 -0
  10140. mlsys/tasks/rwq-pick-the-int4-group-size/meta.json +27 -0
  10141. mlsys/tasks/rwq-pick-the-int4-group-size/solution_ref.py +30 -0
  10142. mlsys/tasks/rwq-pick-the-int4-group-size/starter.py +24 -0
  10143. mlsys/tasks/rwq-pick-the-int4-group-size/task.md +86 -0
  10144. mlsys/tasks/rwq-pick-the-kv-scale-granularity/check.py +68 -0
  10145. mlsys/tasks/rwq-pick-the-kv-scale-granularity/gen_fixtures.py +1 -0
  10146. mlsys/tasks/rwq-pick-the-kv-scale-granularity/meta.json +22 -0
  10147. mlsys/tasks/rwq-pick-the-kv-scale-granularity/solution_ref.py +37 -0
  10148. mlsys/tasks/rwq-pick-the-kv-scale-granularity/starter.py +4 -0
  10149. mlsys/tasks/rwq-pick-the-kv-scale-granularity/task.md +77 -0
  10150. mlsys/tasks/rwq-q4-0-block-pack-unpack-32-elem-fp16-scale/check.py +49 -0
  10151. mlsys/tasks/rwq-q4-0-block-pack-unpack-32-elem-fp16-scale/fixtures/gguf_w.npy +0 -0
  10152. mlsys/tasks/rwq-q4-0-block-pack-unpack-32-elem-fp16-scale/gen_fixtures.py +29 -0
  10153. mlsys/tasks/rwq-q4-0-block-pack-unpack-32-elem-fp16-scale/meta.json +29 -0
  10154. mlsys/tasks/rwq-q4-0-block-pack-unpack-32-elem-fp16-scale/solution_ref.py +22 -0
  10155. mlsys/tasks/rwq-q4-0-block-pack-unpack-32-elem-fp16-scale/starter.py +10 -0
  10156. mlsys/tasks/rwq-q4-0-block-pack-unpack-32-elem-fp16-scale/task.md +91 -0
  10157. mlsys/tasks/rwq-q4-0-vs-q8-0-reconstruction-error/check.py +43 -0
  10158. mlsys/tasks/rwq-q4-0-vs-q8-0-reconstruction-error/fixtures/gguf_w.npy +0 -0
  10159. mlsys/tasks/rwq-q4-0-vs-q8-0-reconstruction-error/gen_fixtures.py +16 -0
  10160. mlsys/tasks/rwq-q4-0-vs-q8-0-reconstruction-error/meta.json +34 -0
  10161. mlsys/tasks/rwq-q4-0-vs-q8-0-reconstruction-error/solution_ref.py +28 -0
  10162. mlsys/tasks/rwq-q4-0-vs-q8-0-reconstruction-error/starter.py +13 -0
  10163. mlsys/tasks/rwq-q4-0-vs-q8-0-reconstruction-error/task.md +66 -0
  10164. mlsys/tasks/rwq-q4-k-super-block-structure/check.py +144 -0
  10165. mlsys/tasks/rwq-q4-k-super-block-structure/gen_fixtures.py +2 -0
  10166. mlsys/tasks/rwq-q4-k-super-block-structure/meta.json +28 -0
  10167. mlsys/tasks/rwq-q4-k-super-block-structure/solution_ref.py +122 -0
  10168. mlsys/tasks/rwq-q4-k-super-block-structure/starter.py +36 -0
  10169. mlsys/tasks/rwq-q4-k-super-block-structure/task.md +107 -0
  10170. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/check.py +75 -0
  10171. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/fixtures/q6k_d.npy +0 -0
  10172. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/fixtures/q6k_qh.npy +0 -0
  10173. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/fixtures/q6k_ql.npy +0 -0
  10174. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/fixtures/q6k_scales.npy +0 -0
  10175. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/gen_fixtures.py +36 -0
  10176. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/meta.json +27 -0
  10177. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/solution_ref.py +37 -0
  10178. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/starter.py +12 -0
  10179. mlsys/tasks/rwq-q6-k-dequant-from-packed-fields/task.md +82 -0
  10180. mlsys/tasks/rwq-q8-0-block-quantization-32-elem-int8/check.py +50 -0
  10181. mlsys/tasks/rwq-q8-0-block-quantization-32-elem-int8/gen_fixtures.py +1 -0
  10182. mlsys/tasks/rwq-q8-0-block-quantization-32-elem-int8/meta.json +22 -0
  10183. mlsys/tasks/rwq-q8-0-block-quantization-32-elem-int8/solution_ref.py +38 -0
  10184. mlsys/tasks/rwq-q8-0-block-quantization-32-elem-int8/starter.py +7 -0
  10185. mlsys/tasks/rwq-q8-0-block-quantization-32-elem-int8/task.md +92 -0
  10186. mlsys/tasks/rwq-qfloat8-weight-quant-per-tensor-scale-e4m3/check.py +76 -0
  10187. mlsys/tasks/rwq-qfloat8-weight-quant-per-tensor-scale-e4m3/gen_fixtures.py +1 -0
  10188. mlsys/tasks/rwq-qfloat8-weight-quant-per-tensor-scale-e4m3/meta.json +27 -0
  10189. mlsys/tasks/rwq-qfloat8-weight-quant-per-tensor-scale-e4m3/solution_ref.py +43 -0
  10190. mlsys/tasks/rwq-qfloat8-weight-quant-per-tensor-scale-e4m3/starter.py +20 -0
  10191. mlsys/tasks/rwq-qfloat8-weight-quant-per-tensor-scale-e4m3/task.md +85 -0
  10192. mlsys/tasks/rwq-qint4-per-axis-vs-per-group-scales/check.py +60 -0
  10193. mlsys/tasks/rwq-qint4-per-axis-vs-per-group-scales/fixtures/qnt_w.npy +0 -0
  10194. mlsys/tasks/rwq-qint4-per-axis-vs-per-group-scales/gen_fixtures.py +35 -0
  10195. mlsys/tasks/rwq-qint4-per-axis-vs-per-group-scales/meta.json +34 -0
  10196. mlsys/tasks/rwq-qint4-per-axis-vs-per-group-scales/solution_ref.py +28 -0
  10197. mlsys/tasks/rwq-qint4-per-axis-vs-per-group-scales/starter.py +14 -0
  10198. mlsys/tasks/rwq-qint4-per-axis-vs-per-group-scales/task.md +71 -0
  10199. mlsys/tasks/rwq-qint4-qint2-sub-byte-packing/check.py +64 -0
  10200. mlsys/tasks/rwq-qint4-qint2-sub-byte-packing/fixtures/qnt_w.npy +0 -0
  10201. mlsys/tasks/rwq-qint4-qint2-sub-byte-packing/gen_fixtures.py +16 -0
  10202. mlsys/tasks/rwq-qint4-qint2-sub-byte-packing/meta.json +29 -0
  10203. mlsys/tasks/rwq-qint4-qint2-sub-byte-packing/solution_ref.py +45 -0
  10204. mlsys/tasks/rwq-qint4-qint2-sub-byte-packing/starter.py +16 -0
  10205. mlsys/tasks/rwq-qint4-qint2-sub-byte-packing/task.md +79 -0
  10206. mlsys/tasks/rwq-qint8-per-axis-symmetric-quant/check.py +53 -0
  10207. mlsys/tasks/rwq-qint8-per-axis-symmetric-quant/gen_fixtures.py +2 -0
  10208. mlsys/tasks/rwq-qint8-per-axis-symmetric-quant/meta.json +27 -0
  10209. mlsys/tasks/rwq-qint8-per-axis-symmetric-quant/solution_ref.py +18 -0
  10210. mlsys/tasks/rwq-qint8-per-axis-symmetric-quant/starter.py +11 -0
  10211. mlsys/tasks/rwq-qint8-per-axis-symmetric-quant/task.md +69 -0
  10212. mlsys/tasks/rwq-quantizelinear-dequantizelinear-round-trip/check.py +45 -0
  10213. mlsys/tasks/rwq-quantizelinear-dequantizelinear-round-trip/gen_fixtures.py +1 -0
  10214. mlsys/tasks/rwq-quantizelinear-dequantizelinear-round-trip/meta.json +27 -0
  10215. mlsys/tasks/rwq-quantizelinear-dequantizelinear-round-trip/solution_ref.py +13 -0
  10216. mlsys/tasks/rwq-quantizelinear-dequantizelinear-round-trip/starter.py +17 -0
  10217. mlsys/tasks/rwq-quantizelinear-dequantizelinear-round-trip/task.md +63 -0
  10218. mlsys/tasks/rwq-random-hadamard-vs-learned-orthogonal-rotation/check.py +51 -0
  10219. mlsys/tasks/rwq-random-hadamard-vs-learned-orthogonal-rotation/gen_fixtures.py +1 -0
  10220. mlsys/tasks/rwq-random-hadamard-vs-learned-orthogonal-rotation/meta.json +22 -0
  10221. mlsys/tasks/rwq-random-hadamard-vs-learned-orthogonal-rotation/solution_ref.py +34 -0
  10222. mlsys/tasks/rwq-random-hadamard-vs-learned-orthogonal-rotation/starter.py +4 -0
  10223. mlsys/tasks/rwq-random-hadamard-vs-learned-orthogonal-rotation/task.md +73 -0
  10224. mlsys/tasks/rwq-reconstruct-from-nvfp4-storage/check.py +51 -0
  10225. mlsys/tasks/rwq-reconstruct-from-nvfp4-storage/fixtures/e2m1_codes.npy +0 -0
  10226. mlsys/tasks/rwq-reconstruct-from-nvfp4-storage/fixtures/e4m3_block_codes.npy +0 -0
  10227. mlsys/tasks/rwq-reconstruct-from-nvfp4-storage/fixtures/global_scale.npy +0 -0
  10228. mlsys/tasks/rwq-reconstruct-from-nvfp4-storage/gen_fixtures.py +39 -0
  10229. mlsys/tasks/rwq-reconstruct-from-nvfp4-storage/meta.json +26 -0
  10230. mlsys/tasks/rwq-reconstruct-from-nvfp4-storage/solution_ref.py +30 -0
  10231. mlsys/tasks/rwq-reconstruct-from-nvfp4-storage/starter.py +9 -0
  10232. mlsys/tasks/rwq-reconstruct-from-nvfp4-storage/task.md +90 -0
  10233. mlsys/tasks/rwq-reconstruct-from-qdq-node-params/check.py +69 -0
  10234. mlsys/tasks/rwq-reconstruct-from-qdq-node-params/fixtures/qdq_q.npy +0 -0
  10235. mlsys/tasks/rwq-reconstruct-from-qdq-node-params/fixtures/qdq_scale.npy +0 -0
  10236. mlsys/tasks/rwq-reconstruct-from-qdq-node-params/fixtures/qdq_zp.npy +0 -0
  10237. mlsys/tasks/rwq-reconstruct-from-qdq-node-params/gen_fixtures.py +27 -0
  10238. mlsys/tasks/rwq-reconstruct-from-qdq-node-params/meta.json +26 -0
  10239. mlsys/tasks/rwq-reconstruct-from-qdq-node-params/solution_ref.py +17 -0
  10240. mlsys/tasks/rwq-reconstruct-from-qdq-node-params/starter.py +13 -0
  10241. mlsys/tasks/rwq-reconstruct-from-qdq-node-params/task.md +56 -0
  10242. mlsys/tasks/rwq-reconstruct-from-tinygemm-codes/check.py +29 -0
  10243. mlsys/tasks/rwq-reconstruct-from-tinygemm-codes/gen_fixtures.py +1 -0
  10244. mlsys/tasks/rwq-reconstruct-from-tinygemm-codes/meta.json +20 -0
  10245. mlsys/tasks/rwq-reconstruct-from-tinygemm-codes/solution_ref.py +6 -0
  10246. mlsys/tasks/rwq-reconstruct-from-tinygemm-codes/starter.py +6 -0
  10247. mlsys/tasks/rwq-reconstruct-from-tinygemm-codes/task.md +55 -0
  10248. mlsys/tasks/rwq-reconstruct-the-dynamic-linear-output/check.py +38 -0
  10249. mlsys/tasks/rwq-reconstruct-the-dynamic-linear-output/gen_fixtures.py +1 -0
  10250. mlsys/tasks/rwq-reconstruct-the-dynamic-linear-output/meta.json +20 -0
  10251. mlsys/tasks/rwq-reconstruct-the-dynamic-linear-output/solution_ref.py +10 -0
  10252. mlsys/tasks/rwq-reconstruct-the-dynamic-linear-output/starter.py +6 -0
  10253. mlsys/tasks/rwq-reconstruct-the-dynamic-linear-output/task.md +62 -0
  10254. mlsys/tasks/rwq-reduce-range-accumulator-safety/check.py +47 -0
  10255. mlsys/tasks/rwq-reduce-range-accumulator-safety/gen_fixtures.py +1 -0
  10256. mlsys/tasks/rwq-reduce-range-accumulator-safety/meta.json +27 -0
  10257. mlsys/tasks/rwq-reduce-range-accumulator-safety/solution_ref.py +22 -0
  10258. mlsys/tasks/rwq-reduce-range-accumulator-safety/starter.py +5 -0
  10259. mlsys/tasks/rwq-reduce-range-accumulator-safety/task.md +45 -0
  10260. mlsys/tasks/rwq-rotation-preserves-the-matmul-spreads-outliers/check.py +108 -0
  10261. mlsys/tasks/rwq-rotation-preserves-the-matmul-spreads-outliers/gen_fixtures.py +2 -0
  10262. mlsys/tasks/rwq-rotation-preserves-the-matmul-spreads-outliers/meta.json +32 -0
  10263. mlsys/tasks/rwq-rotation-preserves-the-matmul-spreads-outliers/solution_ref.py +76 -0
  10264. mlsys/tasks/rwq-rotation-preserves-the-matmul-spreads-outliers/starter.py +23 -0
  10265. mlsys/tasks/rwq-rotation-preserves-the-matmul-spreads-outliers/task.md +87 -0
  10266. mlsys/tasks/rwq-simulate-e4m3-round-to-nearest-even-cast/check.py +98 -0
  10267. mlsys/tasks/rwq-simulate-e4m3-round-to-nearest-even-cast/gen_fixtures.py +1 -0
  10268. mlsys/tasks/rwq-simulate-e4m3-round-to-nearest-even-cast/meta.json +20 -0
  10269. mlsys/tasks/rwq-simulate-e4m3-round-to-nearest-even-cast/solution_ref.py +58 -0
  10270. mlsys/tasks/rwq-simulate-e4m3-round-to-nearest-even-cast/starter.py +6 -0
  10271. mlsys/tasks/rwq-simulate-e4m3-round-to-nearest-even-cast/task.md +54 -0
  10272. mlsys/tasks/rwq-smoothed-vs-raw-w8a8-output-error/check.py +56 -0
  10273. mlsys/tasks/rwq-smoothed-vs-raw-w8a8-output-error/gen_fixtures.py +1 -0
  10274. mlsys/tasks/rwq-smoothed-vs-raw-w8a8-output-error/meta.json +20 -0
  10275. mlsys/tasks/rwq-smoothed-vs-raw-w8a8-output-error/solution_ref.py +29 -0
  10276. mlsys/tasks/rwq-smoothed-vs-raw-w8a8-output-error/starter.py +6 -0
  10277. mlsys/tasks/rwq-smoothed-vs-raw-w8a8-output-error/task.md +62 -0
  10278. mlsys/tasks/rwq-snap-normalized-weights-to-the-nf4-codebook/check.py +52 -0
  10279. mlsys/tasks/rwq-snap-normalized-weights-to-the-nf4-codebook/gen_fixtures.py +1 -0
  10280. mlsys/tasks/rwq-snap-normalized-weights-to-the-nf4-codebook/meta.json +22 -0
  10281. mlsys/tasks/rwq-snap-normalized-weights-to-the-nf4-codebook/solution_ref.py +33 -0
  10282. mlsys/tasks/rwq-snap-normalized-weights-to-the-nf4-codebook/starter.py +2 -0
  10283. mlsys/tasks/rwq-snap-normalized-weights-to-the-nf4-codebook/task.md +49 -0
  10284. mlsys/tasks/rwq-snap-to-the-e2m1-fp4-value-grid/check.py +49 -0
  10285. mlsys/tasks/rwq-snap-to-the-e2m1-fp4-value-grid/gen_fixtures.py +1 -0
  10286. mlsys/tasks/rwq-snap-to-the-e2m1-fp4-value-grid/meta.json +22 -0
  10287. mlsys/tasks/rwq-snap-to-the-e2m1-fp4-value-grid/solution_ref.py +11 -0
  10288. mlsys/tasks/rwq-snap-to-the-e2m1-fp4-value-grid/starter.py +5 -0
  10289. mlsys/tasks/rwq-snap-to-the-e2m1-fp4-value-grid/task.md +73 -0
  10290. mlsys/tasks/rwq-static-min-max-calibration-params/check.py +58 -0
  10291. mlsys/tasks/rwq-static-min-max-calibration-params/gen_fixtures.py +1 -0
  10292. mlsys/tasks/rwq-static-min-max-calibration-params/meta.json +27 -0
  10293. mlsys/tasks/rwq-static-min-max-calibration-params/solution_ref.py +18 -0
  10294. mlsys/tasks/rwq-static-min-max-calibration-params/starter.py +11 -0
  10295. mlsys/tasks/rwq-static-min-max-calibration-params/task.md +70 -0
  10296. mlsys/tasks/rwq-straight-through-gradient-of-block-mse-wrt-v/check.py +57 -0
  10297. mlsys/tasks/rwq-straight-through-gradient-of-block-mse-wrt-v/gen_fixtures.py +1 -0
  10298. mlsys/tasks/rwq-straight-through-gradient-of-block-mse-wrt-v/meta.json +22 -0
  10299. mlsys/tasks/rwq-straight-through-gradient-of-block-mse-wrt-v/solution_ref.py +27 -0
  10300. mlsys/tasks/rwq-straight-through-gradient-of-block-mse-wrt-v/starter.py +24 -0
  10301. mlsys/tasks/rwq-straight-through-gradient-of-block-mse-wrt-v/task.md +92 -0
  10302. mlsys/tasks/rwq-symmetric-vs-asymmetric-int8-quantize-dequantize/check.py +66 -0
  10303. mlsys/tasks/rwq-symmetric-vs-asymmetric-int8-quantize-dequantize/gen_fixtures.py +1 -0
  10304. mlsys/tasks/rwq-symmetric-vs-asymmetric-int8-quantize-dequantize/meta.json +33 -0
  10305. mlsys/tasks/rwq-symmetric-vs-asymmetric-int8-quantize-dequantize/solution_ref.py +22 -0
  10306. mlsys/tasks/rwq-symmetric-vs-asymmetric-int8-quantize-dequantize/starter.py +7 -0
  10307. mlsys/tasks/rwq-symmetric-vs-asymmetric-int8-quantize-dequantize/task.md +80 -0
  10308. mlsys/tasks/rwq-symmetric-weights-vs-asymmetric-activations/check.py +40 -0
  10309. mlsys/tasks/rwq-symmetric-weights-vs-asymmetric-activations/gen_fixtures.py +2 -0
  10310. mlsys/tasks/rwq-symmetric-weights-vs-asymmetric-activations/meta.json +22 -0
  10311. mlsys/tasks/rwq-symmetric-weights-vs-asymmetric-activations/solution_ref.py +17 -0
  10312. mlsys/tasks/rwq-symmetric-weights-vs-asymmetric-activations/starter.py +7 -0
  10313. mlsys/tasks/rwq-symmetric-weights-vs-asymmetric-activations/task.md +53 -0
  10314. mlsys/tasks/rwq-the-two-torchao-scale-granularities/check.py +27 -0
  10315. mlsys/tasks/rwq-the-two-torchao-scale-granularities/gen_fixtures.py +1 -0
  10316. mlsys/tasks/rwq-the-two-torchao-scale-granularities/meta.json +22 -0
  10317. mlsys/tasks/rwq-the-two-torchao-scale-granularities/solution_ref.py +6 -0
  10318. mlsys/tasks/rwq-the-two-torchao-scale-granularities/starter.py +4 -0
  10319. mlsys/tasks/rwq-the-two-torchao-scale-granularities/task.md +45 -0
  10320. mlsys/tasks/rwq-top-1-salient-channels/check.py +57 -0
  10321. mlsys/tasks/rwq-top-1-salient-channels/fixtures/awq_x.npy +0 -0
  10322. mlsys/tasks/rwq-top-1-salient-channels/gen_fixtures.py +36 -0
  10323. mlsys/tasks/rwq-top-1-salient-channels/meta.json +24 -0
  10324. mlsys/tasks/rwq-top-1-salient-channels/solution_ref.py +16 -0
  10325. mlsys/tasks/rwq-top-1-salient-channels/starter.py +11 -0
  10326. mlsys/tasks/rwq-top-1-salient-channels/task.md +60 -0
  10327. mlsys/tasks/rwq-tune-the-migration-strength-alpha/check.py +72 -0
  10328. mlsys/tasks/rwq-tune-the-migration-strength-alpha/gen_fixtures.py +4 -0
  10329. mlsys/tasks/rwq-tune-the-migration-strength-alpha/meta.json +27 -0
  10330. mlsys/tasks/rwq-tune-the-migration-strength-alpha/solution_ref.py +46 -0
  10331. mlsys/tasks/rwq-tune-the-migration-strength-alpha/starter.py +10 -0
  10332. mlsys/tasks/rwq-tune-the-migration-strength-alpha/task.md +74 -0
  10333. mlsys/tasks/rwq-undo-rotation-on-stored-weights/check.py +28 -0
  10334. mlsys/tasks/rwq-undo-rotation-on-stored-weights/gen_fixtures.py +1 -0
  10335. mlsys/tasks/rwq-undo-rotation-on-stored-weights/meta.json +22 -0
  10336. mlsys/tasks/rwq-undo-rotation-on-stored-weights/solution_ref.py +5 -0
  10337. mlsys/tasks/rwq-undo-rotation-on-stored-weights/starter.py +5 -0
  10338. mlsys/tasks/rwq-undo-rotation-on-stored-weights/task.md +68 -0
  10339. mlsys/tasks/rwq-unpack-dequant-qint4-codes/check.py +25 -0
  10340. mlsys/tasks/rwq-unpack-dequant-qint4-codes/gen_fixtures.py +1 -0
  10341. mlsys/tasks/rwq-unpack-dequant-qint4-codes/meta.json +22 -0
  10342. mlsys/tasks/rwq-unpack-dequant-qint4-codes/solution_ref.py +8 -0
  10343. mlsys/tasks/rwq-unpack-dequant-qint4-codes/starter.py +4 -0
  10344. mlsys/tasks/rwq-unpack-dequant-qint4-codes/task.md +46 -0
  10345. mlsys/tasks/rwq-vector-wise-int8-matmul-reconstruction/check.py +37 -0
  10346. mlsys/tasks/rwq-vector-wise-int8-matmul-reconstruction/fixtures/int8_w.npy +0 -0
  10347. mlsys/tasks/rwq-vector-wise-int8-matmul-reconstruction/fixtures/int8_x.npy +0 -0
  10348. mlsys/tasks/rwq-vector-wise-int8-matmul-reconstruction/gen_fixtures.py +29 -0
  10349. mlsys/tasks/rwq-vector-wise-int8-matmul-reconstruction/meta.json +25 -0
  10350. mlsys/tasks/rwq-vector-wise-int8-matmul-reconstruction/solution_ref.py +19 -0
  10351. mlsys/tasks/rwq-vector-wise-int8-matmul-reconstruction/starter.py +8 -0
  10352. mlsys/tasks/rwq-vector-wise-int8-matmul-reconstruction/task.md +85 -0
  10353. mlsys/tasks/rwq-vector-wise-int8-scales-for-x-and-w/check.py +36 -0
  10354. mlsys/tasks/rwq-vector-wise-int8-scales-for-x-and-w/gen_fixtures.py +1 -0
  10355. mlsys/tasks/rwq-vector-wise-int8-scales-for-x-and-w/meta.json +25 -0
  10356. mlsys/tasks/rwq-vector-wise-int8-scales-for-x-and-w/solution_ref.py +7 -0
  10357. mlsys/tasks/rwq-vector-wise-int8-scales-for-x-and-w/starter.py +14 -0
  10358. mlsys/tasks/rwq-vector-wise-int8-scales-for-x-and-w/task.md +47 -0
  10359. mlsys/tasks/rwq-weight-clipping-search-after-scaling/check.py +61 -0
  10360. mlsys/tasks/rwq-weight-clipping-search-after-scaling/fixtures/clip_w.npy +0 -0
  10361. mlsys/tasks/rwq-weight-clipping-search-after-scaling/gen_fixtures.py +40 -0
  10362. mlsys/tasks/rwq-weight-clipping-search-after-scaling/meta.json +29 -0
  10363. mlsys/tasks/rwq-weight-clipping-search-after-scaling/solution_ref.py +31 -0
  10364. mlsys/tasks/rwq-weight-clipping-search-after-scaling/starter.py +22 -0
  10365. mlsys/tasks/rwq-weight-clipping-search-after-scaling/task.md +88 -0
  10366. mlsys/tasks/rwq-weight-only-vs-dynamic-activation-error/check.py +55 -0
  10367. mlsys/tasks/rwq-weight-only-vs-dynamic-activation-error/gen_fixtures.py +2 -0
  10368. mlsys/tasks/rwq-weight-only-vs-dynamic-activation-error/meta.json +27 -0
  10369. mlsys/tasks/rwq-weight-only-vs-dynamic-activation-error/solution_ref.py +37 -0
  10370. mlsys/tasks/rwq-weight-only-vs-dynamic-activation-error/starter.py +12 -0
  10371. mlsys/tasks/rwq-weight-only-vs-dynamic-activation-error/task.md +70 -0
  10372. mlsys/tasks/rwq-which-weights-flipped-rounding-direction/check.py +25 -0
  10373. mlsys/tasks/rwq-which-weights-flipped-rounding-direction/gen_fixtures.py +1 -0
  10374. mlsys/tasks/rwq-which-weights-flipped-rounding-direction/meta.json +22 -0
  10375. mlsys/tasks/rwq-which-weights-flipped-rounding-direction/solution_ref.py +28 -0
  10376. mlsys/tasks/rwq-which-weights-flipped-rounding-direction/starter.py +6 -0
  10377. mlsys/tasks/rwq-which-weights-flipped-rounding-direction/task.md +62 -0
  10378. mlsys/tasks/rws-1d-wasserstein-via-cdf-integral/check.py +37 -0
  10379. mlsys/tasks/rws-1d-wasserstein-via-cdf-integral/fixtures/w1_u.npy +0 -0
  10380. mlsys/tasks/rws-1d-wasserstein-via-cdf-integral/fixtures/w1_v.npy +0 -0
  10381. mlsys/tasks/rws-1d-wasserstein-via-cdf-integral/gen_fixtures.py +37 -0
  10382. mlsys/tasks/rws-1d-wasserstein-via-cdf-integral/meta.json +25 -0
  10383. mlsys/tasks/rws-1d-wasserstein-via-cdf-integral/solution_ref.py +19 -0
  10384. mlsys/tasks/rws-1d-wasserstein-via-cdf-integral/starter.py +9 -0
  10385. mlsys/tasks/rws-1d-wasserstein-via-cdf-integral/task.md +77 -0
  10386. mlsys/tasks/rws-activation-based-importance-scoring/check.py +20 -0
  10387. mlsys/tasks/rws-activation-based-importance-scoring/gen_fixtures.py +1 -0
  10388. mlsys/tasks/rws-activation-based-importance-scoring/meta.json +22 -0
  10389. mlsys/tasks/rws-activation-based-importance-scoring/solution_ref.py +21 -0
  10390. mlsys/tasks/rws-activation-based-importance-scoring/starter.py +7 -0
  10391. mlsys/tasks/rws-activation-based-importance-scoring/task.md +57 -0
  10392. mlsys/tasks/rws-activation-covariance-eigenbasis/check.py +52 -0
  10393. mlsys/tasks/rws-activation-covariance-eigenbasis/gen_fixtures.py +1 -0
  10394. mlsys/tasks/rws-activation-covariance-eigenbasis/meta.json +27 -0
  10395. mlsys/tasks/rws-activation-covariance-eigenbasis/solution_ref.py +13 -0
  10396. mlsys/tasks/rws-activation-covariance-eigenbasis/starter.py +6 -0
  10397. mlsys/tasks/rws-activation-covariance-eigenbasis/task.md +49 -0
  10398. mlsys/tasks/rws-activation-weighted-2-4-mask/check.py +75 -0
  10399. mlsys/tasks/rws-activation-weighted-2-4-mask/gen_fixtures.py +1 -0
  10400. mlsys/tasks/rws-activation-weighted-2-4-mask/meta.json +27 -0
  10401. mlsys/tasks/rws-activation-weighted-2-4-mask/solution_ref.py +18 -0
  10402. mlsys/tasks/rws-activation-weighted-2-4-mask/starter.py +4 -0
  10403. mlsys/tasks/rws-activation-weighted-2-4-mask/task.md +89 -0
  10404. mlsys/tasks/rws-angular-distance-per-layer/check.py +44 -0
  10405. mlsys/tasks/rws-angular-distance-per-layer/gen_fixtures.py +1 -0
  10406. mlsys/tasks/rws-angular-distance-per-layer/meta.json +22 -0
  10407. mlsys/tasks/rws-angular-distance-per-layer/solution_ref.py +15 -0
  10408. mlsys/tasks/rws-angular-distance-per-layer/starter.py +4 -0
  10409. mlsys/tasks/rws-angular-distance-per-layer/task.md +65 -0
  10410. mlsys/tasks/rws-angular-distance-vs-block-influence-agreement/check.py +71 -0
  10411. mlsys/tasks/rws-angular-distance-vs-block-influence-agreement/gen_fixtures.py +1 -0
  10412. mlsys/tasks/rws-angular-distance-vs-block-influence-agreement/meta.json +22 -0
  10413. mlsys/tasks/rws-angular-distance-vs-block-influence-agreement/solution_ref.py +40 -0
  10414. mlsys/tasks/rws-angular-distance-vs-block-influence-agreement/starter.py +4 -0
  10415. mlsys/tasks/rws-angular-distance-vs-block-influence-agreement/task.md +67 -0
  10416. mlsys/tasks/rws-best-contiguous-n-block-to-drop/check.py +63 -0
  10417. mlsys/tasks/rws-best-contiguous-n-block-to-drop/gen_fixtures.py +1 -0
  10418. mlsys/tasks/rws-best-contiguous-n-block-to-drop/meta.json +27 -0
  10419. mlsys/tasks/rws-best-contiguous-n-block-to-drop/solution_ref.py +18 -0
  10420. mlsys/tasks/rws-best-contiguous-n-block-to-drop/starter.py +4 -0
  10421. mlsys/tasks/rws-best-contiguous-n-block-to-drop/task.md +57 -0
  10422. mlsys/tasks/rws-block-influence-layer-ranking/check.py +47 -0
  10423. mlsys/tasks/rws-block-influence-layer-ranking/gen_fixtures.py +1 -0
  10424. mlsys/tasks/rws-block-influence-layer-ranking/meta.json +27 -0
  10425. mlsys/tasks/rws-block-influence-layer-ranking/solution_ref.py +41 -0
  10426. mlsys/tasks/rws-block-influence-layer-ranking/starter.py +4 -0
  10427. mlsys/tasks/rws-block-influence-layer-ranking/task.md +62 -0
  10428. mlsys/tasks/rws-cached-norm-sparsity-sweep/check.py +59 -0
  10429. mlsys/tasks/rws-cached-norm-sparsity-sweep/gen_fixtures.py +1 -0
  10430. mlsys/tasks/rws-cached-norm-sparsity-sweep/meta.json +22 -0
  10431. mlsys/tasks/rws-cached-norm-sparsity-sweep/solution_ref.py +27 -0
  10432. mlsys/tasks/rws-cached-norm-sparsity-sweep/starter.py +23 -0
  10433. mlsys/tasks/rws-cached-norm-sparsity-sweep/task.md +80 -0
  10434. mlsys/tasks/rws-classify-a-mask-as-valid-2-4/check.py +37 -0
  10435. mlsys/tasks/rws-classify-a-mask-as-valid-2-4/gen_fixtures.py +1 -0
  10436. mlsys/tasks/rws-classify-a-mask-as-valid-2-4/meta.json +22 -0
  10437. mlsys/tasks/rws-classify-a-mask-as-valid-2-4/solution_ref.py +17 -0
  10438. mlsys/tasks/rws-classify-a-mask-as-valid-2-4/starter.py +4 -0
  10439. mlsys/tasks/rws-classify-a-mask-as-valid-2-4/task.md +54 -0
  10440. mlsys/tasks/rws-classify-alm-token-pair-alignment-type/check.py +55 -0
  10441. mlsys/tasks/rws-classify-alm-token-pair-alignment-type/gen_fixtures.py +1 -0
  10442. mlsys/tasks/rws-classify-alm-token-pair-alignment-type/meta.json +22 -0
  10443. mlsys/tasks/rws-classify-alm-token-pair-alignment-type/solution_ref.py +11 -0
  10444. mlsys/tasks/rws-classify-alm-token-pair-alignment-type/starter.py +3 -0
  10445. mlsys/tasks/rws-classify-alm-token-pair-alignment-type/task.md +61 -0
  10446. mlsys/tasks/rws-classify-apply-on-policy-vs-off-policy-target/check.py +41 -0
  10447. mlsys/tasks/rws-classify-apply-on-policy-vs-off-policy-target/gen_fixtures.py +1 -0
  10448. mlsys/tasks/rws-classify-apply-on-policy-vs-off-policy-target/meta.json +22 -0
  10449. mlsys/tasks/rws-classify-apply-on-policy-vs-off-policy-target/solution_ref.py +28 -0
  10450. mlsys/tasks/rws-classify-apply-on-policy-vs-off-policy-target/starter.py +4 -0
  10451. mlsys/tasks/rws-classify-apply-on-policy-vs-off-policy-target/task.md +81 -0
  10452. mlsys/tasks/rws-classify-constraint-satisfaction/check.py +48 -0
  10453. mlsys/tasks/rws-classify-constraint-satisfaction/gen_fixtures.py +1 -0
  10454. mlsys/tasks/rws-classify-constraint-satisfaction/meta.json +22 -0
  10455. mlsys/tasks/rws-classify-constraint-satisfaction/solution_ref.py +13 -0
  10456. mlsys/tasks/rws-classify-constraint-satisfaction/starter.py +4 -0
  10457. mlsys/tasks/rws-classify-constraint-satisfaction/task.md +61 -0
  10458. mlsys/tasks/rws-classify-k-for-a-variance-target/check.py +26 -0
  10459. mlsys/tasks/rws-classify-k-for-a-variance-target/gen_fixtures.py +1 -0
  10460. mlsys/tasks/rws-classify-k-for-a-variance-target/meta.json +22 -0
  10461. mlsys/tasks/rws-classify-k-for-a-variance-target/solution_ref.py +8 -0
  10462. mlsys/tasks/rws-classify-k-for-a-variance-target/starter.py +4 -0
  10463. mlsys/tasks/rws-classify-k-for-a-variance-target/task.md +46 -0
  10464. mlsys/tasks/rws-classify-removable-vs-critical-layers/check.py +20 -0
  10465. mlsys/tasks/rws-classify-removable-vs-critical-layers/gen_fixtures.py +1 -0
  10466. mlsys/tasks/rws-classify-removable-vs-critical-layers/meta.json +22 -0
  10467. mlsys/tasks/rws-classify-removable-vs-critical-layers/solution_ref.py +6 -0
  10468. mlsys/tasks/rws-classify-removable-vs-critical-layers/starter.py +6 -0
  10469. mlsys/tasks/rws-classify-removable-vs-critical-layers/task.md +37 -0
  10470. mlsys/tasks/rws-classify-the-coupling-map-of-an-attention-block/check.py +51 -0
  10471. mlsys/tasks/rws-classify-the-coupling-map-of-an-attention-block/gen_fixtures.py +1 -0
  10472. mlsys/tasks/rws-classify-the-coupling-map-of-an-attention-block/meta.json +22 -0
  10473. mlsys/tasks/rws-classify-the-coupling-map-of-an-attention-block/solution_ref.py +48 -0
  10474. mlsys/tasks/rws-classify-the-coupling-map-of-an-attention-block/starter.py +2 -0
  10475. mlsys/tasks/rws-classify-the-coupling-map-of-an-attention-block/task.md +57 -0
  10476. mlsys/tasks/rws-classify-whether-a-mask-is-a-valid-l1-unstructured-mask-at-s/check.py +42 -0
  10477. mlsys/tasks/rws-classify-whether-a-mask-is-a-valid-l1-unstructured-mask-at-s/gen_fixtures.py +3 -0
  10478. mlsys/tasks/rws-classify-whether-a-mask-is-a-valid-l1-unstructured-mask-at-s/meta.json +22 -0
  10479. mlsys/tasks/rws-classify-whether-a-mask-is-a-valid-l1-unstructured-mask-at-s/solution_ref.py +20 -0
  10480. mlsys/tasks/rws-classify-whether-a-mask-is-a-valid-l1-unstructured-mask-at-s/starter.py +11 -0
  10481. mlsys/tasks/rws-classify-whether-a-mask-is-a-valid-l1-unstructured-mask-at-s/task.md +62 -0
  10482. mlsys/tasks/rws-combined-logit-intermediate-loss-and-its-gradient/check.py +90 -0
  10483. mlsys/tasks/rws-combined-logit-intermediate-loss-and-its-gradient/gen_fixtures.py +1 -0
  10484. mlsys/tasks/rws-combined-logit-intermediate-loss-and-its-gradient/meta.json +27 -0
  10485. mlsys/tasks/rws-combined-logit-intermediate-loss-and-its-gradient/solution_ref.py +32 -0
  10486. mlsys/tasks/rws-combined-logit-intermediate-loss-and-its-gradient/starter.py +7 -0
  10487. mlsys/tasks/rws-combined-logit-intermediate-loss-and-its-gradient/task.md +105 -0
  10488. mlsys/tasks/rws-combined-served-size/check.py +45 -0
  10489. mlsys/tasks/rws-combined-served-size/gen_fixtures.py +1 -0
  10490. mlsys/tasks/rws-combined-served-size/meta.json +22 -0
  10491. mlsys/tasks/rws-combined-served-size/solution_ref.py +16 -0
  10492. mlsys/tasks/rws-combined-served-size/starter.py +4 -0
  10493. mlsys/tasks/rws-combined-served-size/task.md +66 -0
  10494. mlsys/tasks/rws-compressed-sparse-storage-size-vs-dense/check.py +59 -0
  10495. mlsys/tasks/rws-compressed-sparse-storage-size-vs-dense/gen_fixtures.py +4 -0
  10496. mlsys/tasks/rws-compressed-sparse-storage-size-vs-dense/meta.json +22 -0
  10497. mlsys/tasks/rws-compressed-sparse-storage-size-vs-dense/solution_ref.py +15 -0
  10498. mlsys/tasks/rws-compressed-sparse-storage-size-vs-dense/starter.py +6 -0
  10499. mlsys/tasks/rws-compressed-sparse-storage-size-vs-dense/task.md +87 -0
  10500. mlsys/tasks/rws-compute-savings-from-the-chosen-width-depth/check.py +69 -0
  10501. mlsys/tasks/rws-compute-savings-from-the-chosen-width-depth/gen_fixtures.py +1 -0
  10502. mlsys/tasks/rws-compute-savings-from-the-chosen-width-depth/meta.json +27 -0
  10503. mlsys/tasks/rws-compute-savings-from-the-chosen-width-depth/solution_ref.py +25 -0
  10504. mlsys/tasks/rws-compute-savings-from-the-chosen-width-depth/starter.py +2 -0
  10505. mlsys/tasks/rws-compute-savings-from-the-chosen-width-depth/task.md +86 -0
  10506. mlsys/tasks/rws-compute-wanda-per-input-activation-norms/check.py +18 -0
  10507. mlsys/tasks/rws-compute-wanda-per-input-activation-norms/gen_fixtures.py +1 -0
  10508. mlsys/tasks/rws-compute-wanda-per-input-activation-norms/meta.json +22 -0
  10509. mlsys/tasks/rws-compute-wanda-per-input-activation-norms/solution_ref.py +4 -0
  10510. mlsys/tasks/rws-compute-wanda-per-input-activation-norms/starter.py +4 -0
  10511. mlsys/tasks/rws-compute-wanda-per-input-activation-norms/task.md +31 -0
  10512. mlsys/tasks/rws-cosine-annealed-update-fraction/check.py +24 -0
  10513. mlsys/tasks/rws-cosine-annealed-update-fraction/gen_fixtures.py +3 -0
  10514. mlsys/tasks/rws-cosine-annealed-update-fraction/meta.json +22 -0
  10515. mlsys/tasks/rws-cosine-annealed-update-fraction/solution_ref.py +5 -0
  10516. mlsys/tasks/rws-cosine-annealed-update-fraction/starter.py +3 -0
  10517. mlsys/tasks/rws-cosine-annealed-update-fraction/task.md +32 -0
  10518. mlsys/tasks/rws-cosine-similarity-of-one-layer-s-in-out-states/check.py +24 -0
  10519. mlsys/tasks/rws-cosine-similarity-of-one-layer-s-in-out-states/gen_fixtures.py +1 -0
  10520. mlsys/tasks/rws-cosine-similarity-of-one-layer-s-in-out-states/meta.json +22 -0
  10521. mlsys/tasks/rws-cosine-similarity-of-one-layer-s-in-out-states/solution_ref.py +8 -0
  10522. mlsys/tasks/rws-cosine-similarity-of-one-layer-s-in-out-states/starter.py +4 -0
  10523. mlsys/tasks/rws-cosine-similarity-of-one-layer-s-in-out-states/task.md +47 -0
  10524. mlsys/tasks/rws-count-live-params-sparsity-of-a-mask/check.py +28 -0
  10525. mlsys/tasks/rws-count-live-params-sparsity-of-a-mask/gen_fixtures.py +1 -0
  10526. mlsys/tasks/rws-count-live-params-sparsity-of-a-mask/meta.json +22 -0
  10527. mlsys/tasks/rws-count-live-params-sparsity-of-a-mask/solution_ref.py +22 -0
  10528. mlsys/tasks/rws-count-live-params-sparsity-of-a-mask/starter.py +4 -0
  10529. mlsys/tasks/rws-count-live-params-sparsity-of-a-mask/task.md +35 -0
  10530. mlsys/tasks/rws-dark-knowledge-vs-hard-label-gradient/check.py +66 -0
  10531. mlsys/tasks/rws-dark-knowledge-vs-hard-label-gradient/gen_fixtures.py +1 -0
  10532. mlsys/tasks/rws-dark-knowledge-vs-hard-label-gradient/meta.json +27 -0
  10533. mlsys/tasks/rws-dark-knowledge-vs-hard-label-gradient/solution_ref.py +20 -0
  10534. mlsys/tasks/rws-dark-knowledge-vs-hard-label-gradient/starter.py +7 -0
  10535. mlsys/tasks/rws-dark-knowledge-vs-hard-label-gradient/task.md +82 -0
  10536. mlsys/tasks/rws-debug-a-broken-obs-update/check.py +51 -0
  10537. mlsys/tasks/rws-debug-a-broken-obs-update/gen_fixtures.py +1 -0
  10538. mlsys/tasks/rws-debug-a-broken-obs-update/meta.json +22 -0
  10539. mlsys/tasks/rws-debug-a-broken-obs-update/solution_ref.py +12 -0
  10540. mlsys/tasks/rws-debug-a-broken-obs-update/starter.py +13 -0
  10541. mlsys/tasks/rws-debug-a-broken-obs-update/task.md +59 -0
  10542. mlsys/tasks/rws-debug-a-globally-thresholded-wanda/check.py +47 -0
  10543. mlsys/tasks/rws-debug-a-globally-thresholded-wanda/gen_fixtures.py +1 -0
  10544. mlsys/tasks/rws-debug-a-globally-thresholded-wanda/meta.json +22 -0
  10545. mlsys/tasks/rws-debug-a-globally-thresholded-wanda/solution_ref.py +15 -0
  10546. mlsys/tasks/rws-debug-a-globally-thresholded-wanda/starter.py +4 -0
  10547. mlsys/tasks/rws-debug-a-globally-thresholded-wanda/task.md +70 -0
  10548. mlsys/tasks/rws-debug-a-half-coupled-head-prune/check.py +56 -0
  10549. mlsys/tasks/rws-debug-a-half-coupled-head-prune/gen_fixtures.py +1 -0
  10550. mlsys/tasks/rws-debug-a-half-coupled-head-prune/meta.json +22 -0
  10551. mlsys/tasks/rws-debug-a-half-coupled-head-prune/solution_ref.py +26 -0
  10552. mlsys/tasks/rws-debug-a-half-coupled-head-prune/starter.py +24 -0
  10553. mlsys/tasks/rws-debug-a-half-coupled-head-prune/task.md +74 -0
  10554. mlsys/tasks/rws-debug-a-pipeline-that-quantizes-the-pruned-zeros/check.py +53 -0
  10555. mlsys/tasks/rws-debug-a-pipeline-that-quantizes-the-pruned-zeros/gen_fixtures.py +2 -0
  10556. mlsys/tasks/rws-debug-a-pipeline-that-quantizes-the-pruned-zeros/meta.json +22 -0
  10557. mlsys/tasks/rws-debug-a-pipeline-that-quantizes-the-pruned-zeros/solution_ref.py +57 -0
  10558. mlsys/tasks/rws-debug-a-pipeline-that-quantizes-the-pruned-zeros/starter.py +38 -0
  10559. mlsys/tasks/rws-debug-a-pipeline-that-quantizes-the-pruned-zeros/task.md +81 -0
  10560. mlsys/tasks/rws-debug-a-rigl-that-regrows-among-live-weights/check.py +66 -0
  10561. mlsys/tasks/rws-debug-a-rigl-that-regrows-among-live-weights/gen_fixtures.py +1 -0
  10562. mlsys/tasks/rws-debug-a-rigl-that-regrows-among-live-weights/meta.json +22 -0
  10563. mlsys/tasks/rws-debug-a-rigl-that-regrows-among-live-weights/solution_ref.py +13 -0
  10564. mlsys/tasks/rws-debug-a-rigl-that-regrows-among-live-weights/starter.py +11 -0
  10565. mlsys/tasks/rws-debug-a-rigl-that-regrows-among-live-weights/task.md +68 -0
  10566. mlsys/tasks/rws-debug-a-t-less-softmax-z-t-kd/check.py +68 -0
  10567. mlsys/tasks/rws-debug-a-t-less-softmax-z-t-kd/gen_fixtures.py +1 -0
  10568. mlsys/tasks/rws-debug-a-t-less-softmax-z-t-kd/meta.json +22 -0
  10569. mlsys/tasks/rws-debug-a-t-less-softmax-z-t-kd/solution_ref.py +22 -0
  10570. mlsys/tasks/rws-debug-a-t-less-softmax-z-t-kd/starter.py +24 -0
  10571. mlsys/tasks/rws-debug-a-t-less-softmax-z-t-kd/task.md +72 -0
  10572. mlsys/tasks/rws-debug-a-wrong-order-eigenvector-slice/check.py +42 -0
  10573. mlsys/tasks/rws-debug-a-wrong-order-eigenvector-slice/gen_fixtures.py +2 -0
  10574. mlsys/tasks/rws-debug-a-wrong-order-eigenvector-slice/meta.json +22 -0
  10575. mlsys/tasks/rws-debug-a-wrong-order-eigenvector-slice/solution_ref.py +19 -0
  10576. mlsys/tasks/rws-debug-a-wrong-order-eigenvector-slice/starter.py +20 -0
  10577. mlsys/tasks/rws-debug-a-wrong-order-eigenvector-slice/task.md +62 -0
  10578. mlsys/tasks/rws-debug-an-unclamped-arccos-max-distance-selector/check.py +65 -0
  10579. mlsys/tasks/rws-debug-an-unclamped-arccos-max-distance-selector/meta.json +22 -0
  10580. mlsys/tasks/rws-debug-an-unclamped-arccos-max-distance-selector/solution_ref.py +12 -0
  10581. mlsys/tasks/rws-debug-an-unclamped-arccos-max-distance-selector/starter.py +16 -0
  10582. mlsys/tasks/rws-debug-an-unclamped-arccos-max-distance-selector/task.md +76 -0
  10583. mlsys/tasks/rws-debug-tie-handling-in-a-magnitude-prune/check.py +36 -0
  10584. mlsys/tasks/rws-debug-tie-handling-in-a-magnitude-prune/gen_fixtures.py +1 -0
  10585. mlsys/tasks/rws-debug-tie-handling-in-a-magnitude-prune/meta.json +22 -0
  10586. mlsys/tasks/rws-debug-tie-handling-in-a-magnitude-prune/solution_ref.py +16 -0
  10587. mlsys/tasks/rws-debug-tie-handling-in-a-magnitude-prune/starter.py +5 -0
  10588. mlsys/tasks/rws-debug-tie-handling-in-a-magnitude-prune/task.md +35 -0
  10589. mlsys/tasks/rws-deepsparse-style-csr-matmul-unstructured/check.py +60 -0
  10590. mlsys/tasks/rws-deepsparse-style-csr-matmul-unstructured/gen_fixtures.py +1 -0
  10591. mlsys/tasks/rws-deepsparse-style-csr-matmul-unstructured/meta.json +22 -0
  10592. mlsys/tasks/rws-deepsparse-style-csr-matmul-unstructured/solution_ref.py +14 -0
  10593. mlsys/tasks/rws-deepsparse-style-csr-matmul-unstructured/starter.py +4 -0
  10594. mlsys/tasks/rws-deepsparse-style-csr-matmul-unstructured/task.md +84 -0
  10595. mlsys/tasks/rws-depgraph-group-norm-importance-ranking/check.py +120 -0
  10596. mlsys/tasks/rws-depgraph-group-norm-importance-ranking/gen_fixtures.py +1 -0
  10597. mlsys/tasks/rws-depgraph-group-norm-importance-ranking/meta.json +22 -0
  10598. mlsys/tasks/rws-depgraph-group-norm-importance-ranking/solution_ref.py +17 -0
  10599. mlsys/tasks/rws-depgraph-group-norm-importance-ranking/starter.py +4 -0
  10600. mlsys/tasks/rws-depgraph-group-norm-importance-ranking/task.md +78 -0
  10601. mlsys/tasks/rws-derive-greedy-top-2-optimality-over-the-6-patterns/check.py +35 -0
  10602. mlsys/tasks/rws-derive-greedy-top-2-optimality-over-the-6-patterns/gen_fixtures.py +1 -0
  10603. mlsys/tasks/rws-derive-greedy-top-2-optimality-over-the-6-patterns/meta.json +22 -0
  10604. mlsys/tasks/rws-derive-greedy-top-2-optimality-over-the-6-patterns/solution_ref.py +7 -0
  10605. mlsys/tasks/rws-derive-greedy-top-2-optimality-over-the-6-patterns/starter.py +4 -0
  10606. mlsys/tasks/rws-derive-greedy-top-2-optimality-over-the-6-patterns/task.md +60 -0
  10607. mlsys/tasks/rws-derive-per-row-scale-invariance-of-the-wanda-mask/check.py +45 -0
  10608. mlsys/tasks/rws-derive-per-row-scale-invariance-of-the-wanda-mask/fixtures/wanda_norms.npy +0 -0
  10609. mlsys/tasks/rws-derive-per-row-scale-invariance-of-the-wanda-mask/fixtures/wanda_w.npy +0 -0
  10610. mlsys/tasks/rws-derive-per-row-scale-invariance-of-the-wanda-mask/gen_fixtures.py +26 -0
  10611. mlsys/tasks/rws-derive-per-row-scale-invariance-of-the-wanda-mask/meta.json +25 -0
  10612. mlsys/tasks/rws-derive-per-row-scale-invariance-of-the-wanda-mask/solution_ref.py +13 -0
  10613. mlsys/tasks/rws-derive-per-row-scale-invariance-of-the-wanda-mask/starter.py +14 -0
  10614. mlsys/tasks/rws-derive-per-row-scale-invariance-of-the-wanda-mask/task.md +71 -0
  10615. mlsys/tasks/rws-derive-the-s-quantile-threshold-matching-argsort-mask/check.py +41 -0
  10616. mlsys/tasks/rws-derive-the-s-quantile-threshold-matching-argsort-mask/gen_fixtures.py +1 -0
  10617. mlsys/tasks/rws-derive-the-s-quantile-threshold-matching-argsort-mask/meta.json +22 -0
  10618. mlsys/tasks/rws-derive-the-s-quantile-threshold-matching-argsort-mask/solution_ref.py +17 -0
  10619. mlsys/tasks/rws-derive-the-s-quantile-threshold-matching-argsort-mask/starter.py +4 -0
  10620. mlsys/tasks/rws-derive-the-s-quantile-threshold-matching-argsort-mask/task.md +79 -0
  10621. mlsys/tasks/rws-derive-the-t-mse-limit/check.py +54 -0
  10622. mlsys/tasks/rws-derive-the-t-mse-limit/gen_fixtures.py +1 -0
  10623. mlsys/tasks/rws-derive-the-t-mse-limit/meta.json +27 -0
  10624. mlsys/tasks/rws-derive-the-t-mse-limit/solution_ref.py +24 -0
  10625. mlsys/tasks/rws-derive-the-t-mse-limit/starter.py +4 -0
  10626. mlsys/tasks/rws-derive-the-t-mse-limit/task.md +78 -0
  10627. mlsys/tasks/rws-detect-a-2-4-sparse-tensor/check.py +32 -0
  10628. mlsys/tasks/rws-detect-a-2-4-sparse-tensor/gen_fixtures.py +1 -0
  10629. mlsys/tasks/rws-detect-a-2-4-sparse-tensor/meta.json +22 -0
  10630. mlsys/tasks/rws-detect-a-2-4-sparse-tensor/solution_ref.py +9 -0
  10631. mlsys/tasks/rws-detect-a-2-4-sparse-tensor/starter.py +2 -0
  10632. mlsys/tasks/rws-detect-a-2-4-sparse-tensor/task.md +52 -0
  10633. mlsys/tasks/rws-distilbert-kd-loss/check.py +51 -0
  10634. mlsys/tasks/rws-distilbert-kd-loss/gen_fixtures.py +1 -0
  10635. mlsys/tasks/rws-distilbert-kd-loss/meta.json +22 -0
  10636. mlsys/tasks/rws-distilbert-kd-loss/solution_ref.py +29 -0
  10637. mlsys/tasks/rws-distilbert-kd-loss/starter.py +4 -0
  10638. mlsys/tasks/rws-distilbert-kd-loss/task.md +67 -0
  10639. mlsys/tasks/rws-drop-step-prune-bottom-w-of-live-weights/check.py +44 -0
  10640. mlsys/tasks/rws-drop-step-prune-bottom-w-of-live-weights/gen_fixtures.py +1 -0
  10641. mlsys/tasks/rws-drop-step-prune-bottom-w-of-live-weights/meta.json +22 -0
  10642. mlsys/tasks/rws-drop-step-prune-bottom-w-of-live-weights/solution_ref.py +42 -0
  10643. mlsys/tasks/rws-drop-step-prune-bottom-w-of-live-weights/starter.py +4 -0
  10644. mlsys/tasks/rws-drop-step-prune-bottom-w-of-live-weights/task.md +49 -0
  10645. mlsys/tasks/rws-dynamic-batch-loading-weight-update/check.py +15 -0
  10646. mlsys/tasks/rws-dynamic-batch-loading-weight-update/gen_fixtures.py +1 -0
  10647. mlsys/tasks/rws-dynamic-batch-loading-weight-update/meta.json +27 -0
  10648. mlsys/tasks/rws-dynamic-batch-loading-weight-update/solution_ref.py +24 -0
  10649. mlsys/tasks/rws-dynamic-batch-loading-weight-update/starter.py +5 -0
  10650. mlsys/tasks/rws-dynamic-batch-loading-weight-update/task.md +36 -0
  10651. mlsys/tasks/rws-effective-bits-per-weight/check.py +38 -0
  10652. mlsys/tasks/rws-effective-bits-per-weight/gen_fixtures.py +1 -0
  10653. mlsys/tasks/rws-effective-bits-per-weight/meta.json +22 -0
  10654. mlsys/tasks/rws-effective-bits-per-weight/solution_ref.py +13 -0
  10655. mlsys/tasks/rws-effective-bits-per-weight/starter.py +18 -0
  10656. mlsys/tasks/rws-effective-bits-per-weight/task.md +74 -0
  10657. mlsys/tasks/rws-enumerate-classify-the-6-valid-2-4-patterns/check.py +30 -0
  10658. mlsys/tasks/rws-enumerate-classify-the-6-valid-2-4-patterns/gen_fixtures.py +1 -0
  10659. mlsys/tasks/rws-enumerate-classify-the-6-valid-2-4-patterns/meta.json +22 -0
  10660. mlsys/tasks/rws-enumerate-classify-the-6-valid-2-4-patterns/solution_ref.py +24 -0
  10661. mlsys/tasks/rws-enumerate-classify-the-6-valid-2-4-patterns/starter.py +4 -0
  10662. mlsys/tasks/rws-enumerate-classify-the-6-valid-2-4-patterns/task.md +44 -0
  10663. mlsys/tasks/rws-erk-per-layer-density-budget/check.py +70 -0
  10664. mlsys/tasks/rws-erk-per-layer-density-budget/gen_fixtures.py +3 -0
  10665. mlsys/tasks/rws-erk-per-layer-density-budget/meta.json +27 -0
  10666. mlsys/tasks/rws-erk-per-layer-density-budget/solution_ref.py +40 -0
  10667. mlsys/tasks/rws-erk-per-layer-density-budget/starter.py +13 -0
  10668. mlsys/tasks/rws-erk-per-layer-density-budget/task.md +78 -0
  10669. mlsys/tasks/rws-error-compounding-triangle-bound/check.py +78 -0
  10670. mlsys/tasks/rws-error-compounding-triangle-bound/gen_fixtures.py +2 -0
  10671. mlsys/tasks/rws-error-compounding-triangle-bound/meta.json +27 -0
  10672. mlsys/tasks/rws-error-compounding-triangle-bound/solution_ref.py +48 -0
  10673. mlsys/tasks/rws-error-compounding-triangle-bound/starter.py +12 -0
  10674. mlsys/tasks/rws-error-compounding-triangle-bound/task.md +82 -0
  10675. mlsys/tasks/rws-excess-loss-signal-for-dynamic-batch-loading/check.py +17 -0
  10676. mlsys/tasks/rws-excess-loss-signal-for-dynamic-batch-loading/gen_fixtures.py +1 -0
  10677. mlsys/tasks/rws-excess-loss-signal-for-dynamic-batch-loading/meta.json +22 -0
  10678. mlsys/tasks/rws-excess-loss-signal-for-dynamic-batch-loading/solution_ref.py +11 -0
  10679. mlsys/tasks/rws-excess-loss-signal-for-dynamic-batch-loading/starter.py +4 -0
  10680. mlsys/tasks/rws-excess-loss-signal-for-dynamic-batch-loading/task.md +42 -0
  10681. mlsys/tasks/rws-expected-sparsity-retained-magnitude-of-a-pattern-distribution/check.py +76 -0
  10682. mlsys/tasks/rws-expected-sparsity-retained-magnitude-of-a-pattern-distribution/fixtures/pat_p.npy +0 -0
  10683. mlsys/tasks/rws-expected-sparsity-retained-magnitude-of-a-pattern-distribution/fixtures/pat_w.npy +0 -0
  10684. mlsys/tasks/rws-expected-sparsity-retained-magnitude-of-a-pattern-distribution/gen_fixtures.py +37 -0
  10685. mlsys/tasks/rws-expected-sparsity-retained-magnitude-of-a-pattern-distribution/meta.json +25 -0
  10686. mlsys/tasks/rws-expected-sparsity-retained-magnitude-of-a-pattern-distribution/solution_ref.py +33 -0
  10687. mlsys/tasks/rws-expected-sparsity-retained-magnitude-of-a-pattern-distribution/starter.py +12 -0
  10688. mlsys/tasks/rws-expected-sparsity-retained-magnitude-of-a-pattern-distribution/task.md +82 -0
  10689. mlsys/tasks/rws-form-the-sparsegpt-hessian-and-its-inverse/check.py +20 -0
  10690. mlsys/tasks/rws-form-the-sparsegpt-hessian-and-its-inverse/gen_fixtures.py +1 -0
  10691. mlsys/tasks/rws-form-the-sparsegpt-hessian-and-its-inverse/meta.json +22 -0
  10692. mlsys/tasks/rws-form-the-sparsegpt-hessian-and-its-inverse/solution_ref.py +13 -0
  10693. mlsys/tasks/rws-form-the-sparsegpt-hessian-and-its-inverse/starter.py +4 -0
  10694. mlsys/tasks/rws-form-the-sparsegpt-hessian-and-its-inverse/task.md +64 -0
  10695. mlsys/tasks/rws-forward-vs-reverse-kl-kd-term/check.py +36 -0
  10696. mlsys/tasks/rws-forward-vs-reverse-kl-kd-term/gen_fixtures.py +1 -0
  10697. mlsys/tasks/rws-forward-vs-reverse-kl-kd-term/meta.json +22 -0
  10698. mlsys/tasks/rws-forward-vs-reverse-kl-kd-term/solution_ref.py +34 -0
  10699. mlsys/tasks/rws-forward-vs-reverse-kl-kd-term/starter.py +4 -0
  10700. mlsys/tasks/rws-forward-vs-reverse-kl-kd-term/task.md +59 -0
  10701. mlsys/tasks/rws-full-1d-optimal-transport-with-a-ground-metric/check.py +62 -0
  10702. mlsys/tasks/rws-full-1d-optimal-transport-with-a-ground-metric/gen_fixtures.py +1 -0
  10703. mlsys/tasks/rws-full-1d-optimal-transport-with-a-ground-metric/meta.json +22 -0
  10704. mlsys/tasks/rws-full-1d-optimal-transport-with-a-ground-metric/solution_ref.py +22 -0
  10705. mlsys/tasks/rws-full-1d-optimal-transport-with-a-ground-metric/starter.py +16 -0
  10706. mlsys/tasks/rws-full-1d-optimal-transport-with-a-ground-metric/task.md +67 -0
  10707. mlsys/tasks/rws-full-column-block-prune-obs-compensation/check.py +85 -0
  10708. mlsys/tasks/rws-full-column-block-prune-obs-compensation/gen_fixtures.py +1 -0
  10709. mlsys/tasks/rws-full-column-block-prune-obs-compensation/meta.json +22 -0
  10710. mlsys/tasks/rws-full-column-block-prune-obs-compensation/solution_ref.py +32 -0
  10711. mlsys/tasks/rws-full-column-block-prune-obs-compensation/starter.py +4 -0
  10712. mlsys/tasks/rws-full-column-block-prune-obs-compensation/task.md +98 -0
  10713. mlsys/tasks/rws-full-rigl-topology-update/check.py +75 -0
  10714. mlsys/tasks/rws-full-rigl-topology-update/gen_fixtures.py +1 -0
  10715. mlsys/tasks/rws-full-rigl-topology-update/meta.json +22 -0
  10716. mlsys/tasks/rws-full-rigl-topology-update/solution_ref.py +23 -0
  10717. mlsys/tasks/rws-full-rigl-topology-update/starter.py +4 -0
  10718. mlsys/tasks/rws-full-rigl-topology-update/task.md +86 -0
  10719. mlsys/tasks/rws-general-n-m-mask-4-8-1-4/check.py +52 -0
  10720. mlsys/tasks/rws-general-n-m-mask-4-8-1-4/gen_fixtures.py +1 -0
  10721. mlsys/tasks/rws-general-n-m-mask-4-8-1-4/meta.json +22 -0
  10722. mlsys/tasks/rws-general-n-m-mask-4-8-1-4/solution_ref.py +11 -0
  10723. mlsys/tasks/rws-general-n-m-mask-4-8-1-4/starter.py +6 -0
  10724. mlsys/tasks/rws-general-n-m-mask-4-8-1-4/task.md +60 -0
  10725. mlsys/tasks/rws-generalized-jsd-divergence/check.py +32 -0
  10726. mlsys/tasks/rws-generalized-jsd-divergence/gen_fixtures.py +1 -0
  10727. mlsys/tasks/rws-generalized-jsd-divergence/meta.json +22 -0
  10728. mlsys/tasks/rws-generalized-jsd-divergence/solution_ref.py +11 -0
  10729. mlsys/tasks/rws-generalized-jsd-divergence/starter.py +4 -0
  10730. mlsys/tasks/rws-generalized-jsd-divergence/task.md +48 -0
  10731. mlsys/tasks/rws-gkd-mixed-on-off-policy-objective/check.py +48 -0
  10732. mlsys/tasks/rws-gkd-mixed-on-off-policy-objective/gen_fixtures.py +1 -0
  10733. mlsys/tasks/rws-gkd-mixed-on-off-policy-objective/meta.json +22 -0
  10734. mlsys/tasks/rws-gkd-mixed-on-off-policy-objective/solution_ref.py +16 -0
  10735. mlsys/tasks/rws-gkd-mixed-on-off-policy-objective/starter.py +4 -0
  10736. mlsys/tasks/rws-gkd-mixed-on-off-policy-objective/task.md +71 -0
  10737. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/check.py +54 -0
  10738. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/fixtures/layer0.npy +0 -0
  10739. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/fixtures/layer1.npy +0 -0
  10740. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/fixtures/layer2.npy +0 -0
  10741. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/fixtures/layer3.npy +0 -0
  10742. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/gen_fixtures.py +29 -0
  10743. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/meta.json +32 -0
  10744. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/solution_ref.py +21 -0
  10745. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/starter.py +17 -0
  10746. mlsys/tasks/rws-global-unstructured-across-layers-with-one-shared-threshold/task.md +66 -0
  10747. mlsys/tasks/rws-gradient-of-expected-mask-objective-w-r-t-logits/check.py +59 -0
  10748. mlsys/tasks/rws-gradient-of-expected-mask-objective-w-r-t-logits/gen_fixtures.py +1 -0
  10749. mlsys/tasks/rws-gradient-of-expected-mask-objective-w-r-t-logits/meta.json +22 -0
  10750. mlsys/tasks/rws-gradient-of-expected-mask-objective-w-r-t-logits/solution_ref.py +17 -0
  10751. mlsys/tasks/rws-gradient-of-expected-mask-objective-w-r-t-logits/starter.py +4 -0
  10752. mlsys/tasks/rws-gradient-of-expected-mask-objective-w-r-t-logits/task.md +82 -0
  10753. mlsys/tasks/rws-gradient-of-jsd-w-r-t-student-logits/check.py +59 -0
  10754. mlsys/tasks/rws-gradient-of-jsd-w-r-t-student-logits/meta.json +22 -0
  10755. mlsys/tasks/rws-gradient-of-jsd-w-r-t-student-logits/solution_ref.py +21 -0
  10756. mlsys/tasks/rws-gradient-of-jsd-w-r-t-student-logits/starter.py +13 -0
  10757. mlsys/tasks/rws-gradient-of-jsd-w-r-t-student-logits/task.md +89 -0
  10758. mlsys/tasks/rws-gumbel-softmax-relaxed-pattern-sample/check.py +37 -0
  10759. mlsys/tasks/rws-gumbel-softmax-relaxed-pattern-sample/gen_fixtures.py +3 -0
  10760. mlsys/tasks/rws-gumbel-softmax-relaxed-pattern-sample/meta.json +22 -0
  10761. mlsys/tasks/rws-gumbel-softmax-relaxed-pattern-sample/solution_ref.py +15 -0
  10762. mlsys/tasks/rws-gumbel-softmax-relaxed-pattern-sample/starter.py +10 -0
  10763. mlsys/tasks/rws-gumbel-softmax-relaxed-pattern-sample/task.md +61 -0
  10764. mlsys/tasks/rws-hard-concrete-gate-value-expected-l0/check.py +51 -0
  10765. mlsys/tasks/rws-hard-concrete-gate-value-expected-l0/gen_fixtures.py +2 -0
  10766. mlsys/tasks/rws-hard-concrete-gate-value-expected-l0/meta.json +27 -0
  10767. mlsys/tasks/rws-hard-concrete-gate-value-expected-l0/solution_ref.py +23 -0
  10768. mlsys/tasks/rws-hard-concrete-gate-value-expected-l0/starter.py +12 -0
  10769. mlsys/tasks/rws-hard-concrete-gate-value-expected-l0/task.md +66 -0
  10770. mlsys/tasks/rws-hidden-state-cosine-loss-distilbert-3rd-term/check.py +75 -0
  10771. mlsys/tasks/rws-hidden-state-cosine-loss-distilbert-3rd-term/gen_fixtures.py +1 -0
  10772. mlsys/tasks/rws-hidden-state-cosine-loss-distilbert-3rd-term/meta.json +27 -0
  10773. mlsys/tasks/rws-hidden-state-cosine-loss-distilbert-3rd-term/solution_ref.py +23 -0
  10774. mlsys/tasks/rws-hidden-state-cosine-loss-distilbert-3rd-term/starter.py +20 -0
  10775. mlsys/tasks/rws-hidden-state-cosine-loss-distilbert-3rd-term/task.md +85 -0
  10776. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/check.py +74 -0
  10777. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/fixtures/cs_budget.npy +0 -0
  10778. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/fixtures/cs_coefs.npy +0 -0
  10779. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/fixtures/cs_consts.npy +0 -0
  10780. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/fixtures/cs_widths.npy +0 -0
  10781. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/gen_fixtures.py +58 -0
  10782. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/meta.json +27 -0
  10783. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/solution_ref.py +28 -0
  10784. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/starter.py +12 -0
  10785. mlsys/tasks/rws-hit-a-param-budget-after-coupled-slicing/task.md +82 -0
  10786. mlsys/tasks/rws-implement-the-wanda-score-per-output-row-mask/check.py +43 -0
  10787. mlsys/tasks/rws-implement-the-wanda-score-per-output-row-mask/fixtures/ww.npy +0 -0
  10788. mlsys/tasks/rws-implement-the-wanda-score-per-output-row-mask/fixtures/wx.npy +0 -0
  10789. mlsys/tasks/rws-implement-the-wanda-score-per-output-row-mask/gen_fixtures.py +30 -0
  10790. mlsys/tasks/rws-implement-the-wanda-score-per-output-row-mask/meta.json +25 -0
  10791. mlsys/tasks/rws-implement-the-wanda-score-per-output-row-mask/solution_ref.py +14 -0
  10792. mlsys/tasks/rws-implement-the-wanda-score-per-output-row-mask/starter.py +18 -0
  10793. mlsys/tasks/rws-implement-the-wanda-score-per-output-row-mask/task.md +63 -0
  10794. mlsys/tasks/rws-intermediate-state-hidden-distillation-loss/check.py +46 -0
  10795. mlsys/tasks/rws-intermediate-state-hidden-distillation-loss/gen_fixtures.py +1 -0
  10796. mlsys/tasks/rws-intermediate-state-hidden-distillation-loss/meta.json +22 -0
  10797. mlsys/tasks/rws-intermediate-state-hidden-distillation-loss/solution_ref.py +9 -0
  10798. mlsys/tasks/rws-intermediate-state-hidden-distillation-loss/starter.py +4 -0
  10799. mlsys/tasks/rws-intermediate-state-hidden-distillation-loss/task.md +65 -0
  10800. mlsys/tasks/rws-jsd-limits-recover-forward-reverse-kl/check.py +51 -0
  10801. mlsys/tasks/rws-jsd-limits-recover-forward-reverse-kl/gen_fixtures.py +1 -0
  10802. mlsys/tasks/rws-jsd-limits-recover-forward-reverse-kl/meta.json +22 -0
  10803. mlsys/tasks/rws-jsd-limits-recover-forward-reverse-kl/solution_ref.py +13 -0
  10804. mlsys/tasks/rws-jsd-limits-recover-forward-reverse-kl/starter.py +4 -0
  10805. mlsys/tasks/rws-jsd-limits-recover-forward-reverse-kl/task.md +90 -0
  10806. mlsys/tasks/rws-kd-gradient-and-the-t-scale-role/check.py +72 -0
  10807. mlsys/tasks/rws-kd-gradient-and-the-t-scale-role/gen_fixtures.py +1 -0
  10808. mlsys/tasks/rws-kd-gradient-and-the-t-scale-role/meta.json +27 -0
  10809. mlsys/tasks/rws-kd-gradient-and-the-t-scale-role/solution_ref.py +21 -0
  10810. mlsys/tasks/rws-kd-gradient-and-the-t-scale-role/starter.py +7 -0
  10811. mlsys/tasks/rws-kd-gradient-and-the-t-scale-role/task.md +54 -0
  10812. mlsys/tasks/rws-lagrangian-shape-constraint-loss-gradient/check.py +54 -0
  10813. mlsys/tasks/rws-lagrangian-shape-constraint-loss-gradient/gen_fixtures.py +1 -0
  10814. mlsys/tasks/rws-lagrangian-shape-constraint-loss-gradient/meta.json +22 -0
  10815. mlsys/tasks/rws-lagrangian-shape-constraint-loss-gradient/solution_ref.py +20 -0
  10816. mlsys/tasks/rws-lagrangian-shape-constraint-loss-gradient/starter.py +6 -0
  10817. mlsys/tasks/rws-lagrangian-shape-constraint-loss-gradient/task.md +80 -0
  10818. mlsys/tasks/rws-lazy-batch-blocked-update-equals-full-update/check.py +70 -0
  10819. mlsys/tasks/rws-lazy-batch-blocked-update-equals-full-update/gen_fixtures.py +1 -0
  10820. mlsys/tasks/rws-lazy-batch-blocked-update-equals-full-update/meta.json +22 -0
  10821. mlsys/tasks/rws-lazy-batch-blocked-update-equals-full-update/solution_ref.py +33 -0
  10822. mlsys/tasks/rws-lazy-batch-blocked-update-equals-full-update/starter.py +7 -0
  10823. mlsys/tasks/rws-lazy-batch-blocked-update-equals-full-update/task.md +95 -0
  10824. mlsys/tasks/rws-learned-soft-mask-vs-one-shot-magnitude-2-4/check.py +88 -0
  10825. mlsys/tasks/rws-learned-soft-mask-vs-one-shot-magnitude-2-4/gen_fixtures.py +1 -0
  10826. mlsys/tasks/rws-learned-soft-mask-vs-one-shot-magnitude-2-4/meta.json +27 -0
  10827. mlsys/tasks/rws-learned-soft-mask-vs-one-shot-magnitude-2-4/solution_ref.py +40 -0
  10828. mlsys/tasks/rws-learned-soft-mask-vs-one-shot-magnitude-2-4/starter.py +4 -0
  10829. mlsys/tasks/rws-learned-soft-mask-vs-one-shot-magnitude-2-4/task.md +79 -0
  10830. mlsys/tasks/rws-levenshtein-edit-distance-mined-core/check.py +56 -0
  10831. mlsys/tasks/rws-levenshtein-edit-distance-mined-core/gen_fixtures.py +1 -0
  10832. mlsys/tasks/rws-levenshtein-edit-distance-mined-core/meta.json +22 -0
  10833. mlsys/tasks/rws-levenshtein-edit-distance-mined-core/solution_ref.py +24 -0
  10834. mlsys/tasks/rws-levenshtein-edit-distance-mined-core/starter.py +3 -0
  10835. mlsys/tasks/rws-levenshtein-edit-distance-mined-core/task.md +70 -0
  10836. mlsys/tasks/rws-magnitude-optimal-2-4-mask/check.py +36 -0
  10837. mlsys/tasks/rws-magnitude-optimal-2-4-mask/gen_fixtures.py +1 -0
  10838. mlsys/tasks/rws-magnitude-optimal-2-4-mask/meta.json +22 -0
  10839. mlsys/tasks/rws-magnitude-optimal-2-4-mask/solution_ref.py +17 -0
  10840. mlsys/tasks/rws-magnitude-optimal-2-4-mask/starter.py +4 -0
  10841. mlsys/tasks/rws-magnitude-optimal-2-4-mask/task.md +58 -0
  10842. mlsys/tasks/rws-magnitude-vs-taylor-head-importance/check.py +54 -0
  10843. mlsys/tasks/rws-magnitude-vs-taylor-head-importance/gen_fixtures.py +1 -0
  10844. mlsys/tasks/rws-magnitude-vs-taylor-head-importance/meta.json +27 -0
  10845. mlsys/tasks/rws-magnitude-vs-taylor-head-importance/solution_ref.py +20 -0
  10846. mlsys/tasks/rws-magnitude-vs-taylor-head-importance/starter.py +4 -0
  10847. mlsys/tasks/rws-magnitude-vs-taylor-head-importance/task.md +84 -0
  10848. mlsys/tasks/rws-map-a-learned-mask-to-a-target-architecture/check.py +73 -0
  10849. mlsys/tasks/rws-map-a-learned-mask-to-a-target-architecture/gen_fixtures.py +1 -0
  10850. mlsys/tasks/rws-map-a-learned-mask-to-a-target-architecture/meta.json +22 -0
  10851. mlsys/tasks/rws-map-a-learned-mask-to-a-target-architecture/solution_ref.py +24 -0
  10852. mlsys/tasks/rws-map-a-learned-mask-to-a-target-architecture/starter.py +4 -0
  10853. mlsys/tasks/rws-map-a-learned-mask-to-a-target-architecture/task.md +79 -0
  10854. mlsys/tasks/rws-mean-activation-vs-l2-vs-taylor-importance/check.py +45 -0
  10855. mlsys/tasks/rws-mean-activation-vs-l2-vs-taylor-importance/gen_fixtures.py +1 -0
  10856. mlsys/tasks/rws-mean-activation-vs-l2-vs-taylor-importance/meta.json +22 -0
  10857. mlsys/tasks/rws-mean-activation-vs-l2-vs-taylor-importance/solution_ref.py +40 -0
  10858. mlsys/tasks/rws-mean-activation-vs-l2-vs-taylor-importance/starter.py +4 -0
  10859. mlsys/tasks/rws-mean-activation-vs-l2-vs-taylor-importance/task.md +54 -0
  10860. mlsys/tasks/rws-measure-2-4-compute-memory-reduction/check.py +56 -0
  10861. mlsys/tasks/rws-measure-2-4-compute-memory-reduction/gen_fixtures.py +1 -0
  10862. mlsys/tasks/rws-measure-2-4-compute-memory-reduction/meta.json +27 -0
  10863. mlsys/tasks/rws-measure-2-4-compute-memory-reduction/solution_ref.py +10 -0
  10864. mlsys/tasks/rws-measure-2-4-compute-memory-reduction/starter.py +4 -0
  10865. mlsys/tasks/rws-measure-2-4-compute-memory-reduction/task.md +77 -0
  10866. mlsys/tasks/rws-measure-realized-sparsity-of-a-pruned-checkpoint/check.py +33 -0
  10867. mlsys/tasks/rws-measure-realized-sparsity-of-a-pruned-checkpoint/gen_fixtures.py +1 -0
  10868. mlsys/tasks/rws-measure-realized-sparsity-of-a-pruned-checkpoint/meta.json +22 -0
  10869. mlsys/tasks/rws-measure-realized-sparsity-of-a-pruned-checkpoint/solution_ref.py +9 -0
  10870. mlsys/tasks/rws-measure-realized-sparsity-of-a-pruned-checkpoint/starter.py +4 -0
  10871. mlsys/tasks/rws-measure-realized-sparsity-of-a-pruned-checkpoint/task.md +40 -0
  10872. mlsys/tasks/rws-mined-vocab-alignment-map/check.py +58 -0
  10873. mlsys/tasks/rws-mined-vocab-alignment-map/gen_fixtures.py +3 -0
  10874. mlsys/tasks/rws-mined-vocab-alignment-map/meta.json +22 -0
  10875. mlsys/tasks/rws-mined-vocab-alignment-map/solution_ref.py +26 -0
  10876. mlsys/tasks/rws-mined-vocab-alignment-map/starter.py +8 -0
  10877. mlsys/tasks/rws-mined-vocab-alignment-map/task.md +62 -0
  10878. mlsys/tasks/rws-mode-covering-vs-mode-seeking-behavior/check.py +102 -0
  10879. mlsys/tasks/rws-mode-covering-vs-mode-seeking-behavior/gen_fixtures.py +3 -0
  10880. mlsys/tasks/rws-mode-covering-vs-mode-seeking-behavior/meta.json +32 -0
  10881. mlsys/tasks/rws-mode-covering-vs-mode-seeking-behavior/solution_ref.py +52 -0
  10882. mlsys/tasks/rws-mode-covering-vs-mode-seeking-behavior/starter.py +24 -0
  10883. mlsys/tasks/rws-mode-covering-vs-mode-seeking-behavior/task.md +100 -0
  10884. mlsys/tasks/rws-numeric-equality-dense-vs-2-4-compressed-matmul/check.py +33 -0
  10885. mlsys/tasks/rws-numeric-equality-dense-vs-2-4-compressed-matmul/fixtures/w24.npy +0 -0
  10886. mlsys/tasks/rws-numeric-equality-dense-vs-2-4-compressed-matmul/fixtures/x.npy +0 -0
  10887. mlsys/tasks/rws-numeric-equality-dense-vs-2-4-compressed-matmul/gen_fixtures.py +32 -0
  10888. mlsys/tasks/rws-numeric-equality-dense-vs-2-4-compressed-matmul/meta.json +25 -0
  10889. mlsys/tasks/rws-numeric-equality-dense-vs-2-4-compressed-matmul/solution_ref.py +20 -0
  10890. mlsys/tasks/rws-numeric-equality-dense-vs-2-4-compressed-matmul/starter.py +11 -0
  10891. mlsys/tasks/rws-numeric-equality-dense-vs-2-4-compressed-matmul/task.md +71 -0
  10892. mlsys/tasks/rws-obs-single-weight-saliency-closed-form-update/check.py +61 -0
  10893. mlsys/tasks/rws-obs-single-weight-saliency-closed-form-update/gen_fixtures.py +2 -0
  10894. mlsys/tasks/rws-obs-single-weight-saliency-closed-form-update/meta.json +32 -0
  10895. mlsys/tasks/rws-obs-single-weight-saliency-closed-form-update/solution_ref.py +34 -0
  10896. mlsys/tasks/rws-obs-single-weight-saliency-closed-form-update/starter.py +15 -0
  10897. mlsys/tasks/rws-obs-single-weight-saliency-closed-form-update/task.md +71 -0
  10898. mlsys/tasks/rws-optimal-per-group-int4-scales-under-the-mask/check.py +102 -0
  10899. mlsys/tasks/rws-optimal-per-group-int4-scales-under-the-mask/gen_fixtures.py +1 -0
  10900. mlsys/tasks/rws-optimal-per-group-int4-scales-under-the-mask/meta.json +27 -0
  10901. mlsys/tasks/rws-optimal-per-group-int4-scales-under-the-mask/solution_ref.py +66 -0
  10902. mlsys/tasks/rws-optimal-per-group-int4-scales-under-the-mask/starter.py +35 -0
  10903. mlsys/tasks/rws-optimal-per-group-int4-scales-under-the-mask/task.md +99 -0
  10904. mlsys/tasks/rws-order-matters-prune-quant-vs-quant-prune/check.py +80 -0
  10905. mlsys/tasks/rws-order-matters-prune-quant-vs-quant-prune/fixtures/opw_w.npy +0 -0
  10906. mlsys/tasks/rws-order-matters-prune-quant-vs-quant-prune/fixtures/opw_x.npy +0 -0
  10907. mlsys/tasks/rws-order-matters-prune-quant-vs-quant-prune/gen_fixtures.py +54 -0
  10908. mlsys/tasks/rws-order-matters-prune-quant-vs-quant-prune/meta.json +35 -0
  10909. mlsys/tasks/rws-order-matters-prune-quant-vs-quant-prune/solution_ref.py +45 -0
  10910. mlsys/tasks/rws-order-matters-prune-quant-vs-quant-prune/starter.py +27 -0
  10911. mlsys/tasks/rws-order-matters-prune-quant-vs-quant-prune/task.md +83 -0
  10912. mlsys/tasks/rws-orthogonal-rotation-invariance/check.py +44 -0
  10913. mlsys/tasks/rws-orthogonal-rotation-invariance/gen_fixtures.py +3 -0
  10914. mlsys/tasks/rws-orthogonal-rotation-invariance/meta.json +22 -0
  10915. mlsys/tasks/rws-orthogonal-rotation-invariance/solution_ref.py +17 -0
  10916. mlsys/tasks/rws-orthogonal-rotation-invariance/starter.py +9 -0
  10917. mlsys/tasks/rws-orthogonal-rotation-invariance/task.md +57 -0
  10918. mlsys/tasks/rws-pack-2-4-into-values-2-bit-index-metadata/check.py +45 -0
  10919. mlsys/tasks/rws-pack-2-4-into-values-2-bit-index-metadata/gen_fixtures.py +1 -0
  10920. mlsys/tasks/rws-pack-2-4-into-values-2-bit-index-metadata/meta.json +22 -0
  10921. mlsys/tasks/rws-pack-2-4-into-values-2-bit-index-metadata/solution_ref.py +15 -0
  10922. mlsys/tasks/rws-pack-2-4-into-values-2-bit-index-metadata/starter.py +4 -0
  10923. mlsys/tasks/rws-pack-2-4-into-values-2-bit-index-metadata/task.md +51 -0
  10924. mlsys/tasks/rws-param-flop-fraction-removed-by-dropping-k-layers/check.py +32 -0
  10925. mlsys/tasks/rws-param-flop-fraction-removed-by-dropping-k-layers/gen_fixtures.py +1 -0
  10926. mlsys/tasks/rws-param-flop-fraction-removed-by-dropping-k-layers/meta.json +22 -0
  10927. mlsys/tasks/rws-param-flop-fraction-removed-by-dropping-k-layers/solution_ref.py +27 -0
  10928. mlsys/tasks/rws-param-flop-fraction-removed-by-dropping-k-layers/starter.py +2 -0
  10929. mlsys/tasks/rws-param-flop-fraction-removed-by-dropping-k-layers/task.md +48 -0
  10930. mlsys/tasks/rws-pca-slice-error-equals-tail-eigenvalue-sum/check.py +46 -0
  10931. mlsys/tasks/rws-pca-slice-error-equals-tail-eigenvalue-sum/fixtures/pca_k.npy +0 -0
  10932. mlsys/tasks/rws-pca-slice-error-equals-tail-eigenvalue-sum/fixtures/pca_x.npy +0 -0
  10933. mlsys/tasks/rws-pca-slice-error-equals-tail-eigenvalue-sum/gen_fixtures.py +34 -0
  10934. mlsys/tasks/rws-pca-slice-error-equals-tail-eigenvalue-sum/meta.json +25 -0
  10935. mlsys/tasks/rws-pca-slice-error-equals-tail-eigenvalue-sum/solution_ref.py +20 -0
  10936. mlsys/tasks/rws-pca-slice-error-equals-tail-eigenvalue-sum/starter.py +8 -0
  10937. mlsys/tasks/rws-pca-slice-error-equals-tail-eigenvalue-sum/task.md +76 -0
  10938. mlsys/tasks/rws-pca-slice-vs-naive-magnitude-column-drop/check.py +49 -0
  10939. mlsys/tasks/rws-pca-slice-vs-naive-magnitude-column-drop/gen_fixtures.py +2 -0
  10940. mlsys/tasks/rws-pca-slice-vs-naive-magnitude-column-drop/meta.json +27 -0
  10941. mlsys/tasks/rws-pca-slice-vs-naive-magnitude-column-drop/solution_ref.py +33 -0
  10942. mlsys/tasks/rws-pca-slice-vs-naive-magnitude-column-drop/starter.py +11 -0
  10943. mlsys/tasks/rws-pca-slice-vs-naive-magnitude-column-drop/task.md +69 -0
  10944. mlsys/tasks/rws-per-neuron-ffn-importance-group-l2-norm/check.py +31 -0
  10945. mlsys/tasks/rws-per-neuron-ffn-importance-group-l2-norm/gen_fixtures.py +1 -0
  10946. mlsys/tasks/rws-per-neuron-ffn-importance-group-l2-norm/meta.json +22 -0
  10947. mlsys/tasks/rws-per-neuron-ffn-importance-group-l2-norm/solution_ref.py +25 -0
  10948. mlsys/tasks/rws-per-neuron-ffn-importance-group-l2-norm/starter.py +7 -0
  10949. mlsys/tasks/rws-per-neuron-ffn-importance-group-l2-norm/task.md +51 -0
  10950. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/check.py +43 -0
  10951. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/fixtures/layer0.npy +0 -0
  10952. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/fixtures/layer1.npy +0 -0
  10953. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/fixtures/layer2.npy +0 -0
  10954. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/fixtures/layer3.npy +0 -0
  10955. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/gen_fixtures.py +25 -0
  10956. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/meta.json +32 -0
  10957. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/solution_ref.py +21 -0
  10958. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/starter.py +9 -0
  10959. mlsys/tasks/rws-per-tensor-vs-global-per-layer-sparsity-drift/task.md +84 -0
  10960. mlsys/tasks/rws-prune-ffn-neurons-to-target-width-consistently/check.py +42 -0
  10961. mlsys/tasks/rws-prune-ffn-neurons-to-target-width-consistently/gen_fixtures.py +1 -0
  10962. mlsys/tasks/rws-prune-ffn-neurons-to-target-width-consistently/meta.json +22 -0
  10963. mlsys/tasks/rws-prune-ffn-neurons-to-target-width-consistently/solution_ref.py +22 -0
  10964. mlsys/tasks/rws-prune-ffn-neurons-to-target-width-consistently/starter.py +4 -0
  10965. mlsys/tasks/rws-prune-ffn-neurons-to-target-width-consistently/task.md +54 -0
  10966. mlsys/tasks/rws-prune-then-quantize-a-layer/check.py +50 -0
  10967. mlsys/tasks/rws-prune-then-quantize-a-layer/gen_fixtures.py +1 -0
  10968. mlsys/tasks/rws-prune-then-quantize-a-layer/meta.json +22 -0
  10969. mlsys/tasks/rws-prune-then-quantize-a-layer/solution_ref.py +37 -0
  10970. mlsys/tasks/rws-prune-then-quantize-a-layer/starter.py +8 -0
  10971. mlsys/tasks/rws-prune-then-quantize-a-layer/task.md +62 -0
  10972. mlsys/tasks/rws-reconstruct-dense-weight-from-compressed-2-4/check.py +55 -0
  10973. mlsys/tasks/rws-reconstruct-dense-weight-from-compressed-2-4/gen_fixtures.py +1 -0
  10974. mlsys/tasks/rws-reconstruct-dense-weight-from-compressed-2-4/meta.json +22 -0
  10975. mlsys/tasks/rws-reconstruct-dense-weight-from-compressed-2-4/solution_ref.py +13 -0
  10976. mlsys/tasks/rws-reconstruct-dense-weight-from-compressed-2-4/starter.py +4 -0
  10977. mlsys/tasks/rws-reconstruct-dense-weight-from-compressed-2-4/task.md +58 -0
  10978. mlsys/tasks/rws-reconstruct-error-propagation-to-unvisited-columns/check.py +53 -0
  10979. mlsys/tasks/rws-reconstruct-error-propagation-to-unvisited-columns/gen_fixtures.py +1 -0
  10980. mlsys/tasks/rws-reconstruct-error-propagation-to-unvisited-columns/meta.json +22 -0
  10981. mlsys/tasks/rws-reconstruct-error-propagation-to-unvisited-columns/solution_ref.py +23 -0
  10982. mlsys/tasks/rws-reconstruct-error-propagation-to-unvisited-columns/starter.py +4 -0
  10983. mlsys/tasks/rws-reconstruct-error-propagation-to-unvisited-columns/task.md +82 -0
  10984. mlsys/tasks/rws-reconstruct-pruned-layer-output-residual/check.py +30 -0
  10985. mlsys/tasks/rws-reconstruct-pruned-layer-output-residual/fixtures/wanda_m.npy +0 -0
  10986. mlsys/tasks/rws-reconstruct-pruned-layer-output-residual/fixtures/wanda_w.npy +0 -0
  10987. mlsys/tasks/rws-reconstruct-pruned-layer-output-residual/fixtures/wanda_x.npy +0 -0
  10988. mlsys/tasks/rws-reconstruct-pruned-layer-output-residual/gen_fixtures.py +35 -0
  10989. mlsys/tasks/rws-reconstruct-pruned-layer-output-residual/meta.json +31 -0
  10990. mlsys/tasks/rws-reconstruct-pruned-layer-output-residual/solution_ref.py +22 -0
  10991. mlsys/tasks/rws-reconstruct-pruned-layer-output-residual/starter.py +12 -0
  10992. mlsys/tasks/rws-reconstruct-pruned-layer-output-residual/task.md +52 -0
  10993. mlsys/tasks/rws-reconstruct-the-pruned-shell-forward-pre-distill/check.py +52 -0
  10994. mlsys/tasks/rws-reconstruct-the-pruned-shell-forward-pre-distill/gen_fixtures.py +1 -0
  10995. mlsys/tasks/rws-reconstruct-the-pruned-shell-forward-pre-distill/meta.json +22 -0
  10996. mlsys/tasks/rws-reconstruct-the-pruned-shell-forward-pre-distill/solution_ref.py +8 -0
  10997. mlsys/tasks/rws-reconstruct-the-pruned-shell-forward-pre-distill/starter.py +4 -0
  10998. mlsys/tasks/rws-reconstruct-the-pruned-shell-forward-pre-distill/task.md +88 -0
  10999. mlsys/tasks/rws-remove-an-attention-head-end-to-end/check.py +62 -0
  11000. mlsys/tasks/rws-remove-an-attention-head-end-to-end/gen_fixtures.py +1 -0
  11001. mlsys/tasks/rws-remove-an-attention-head-end-to-end/meta.json +22 -0
  11002. mlsys/tasks/rws-remove-an-attention-head-end-to-end/solution_ref.py +33 -0
  11003. mlsys/tasks/rws-remove-an-attention-head-end-to-end/starter.py +7 -0
  11004. mlsys/tasks/rws-remove-an-attention-head-end-to-end/task.md +89 -0
  11005. mlsys/tasks/rws-reproduce-torch-l1-unstructured-per-tensor-mask/check.py +29 -0
  11006. mlsys/tasks/rws-reproduce-torch-l1-unstructured-per-tensor-mask/gen_fixtures.py +1 -0
  11007. mlsys/tasks/rws-reproduce-torch-l1-unstructured-per-tensor-mask/meta.json +22 -0
  11008. mlsys/tasks/rws-reproduce-torch-l1-unstructured-per-tensor-mask/solution_ref.py +12 -0
  11009. mlsys/tasks/rws-reproduce-torch-l1-unstructured-per-tensor-mask/starter.py +4 -0
  11010. mlsys/tasks/rws-reproduce-torch-l1-unstructured-per-tensor-mask/task.md +40 -0
  11011. mlsys/tasks/rws-retained-variance-for-a-slice-level/check.py +66 -0
  11012. mlsys/tasks/rws-retained-variance-for-a-slice-level/gen_fixtures.py +15 -0
  11013. mlsys/tasks/rws-retained-variance-for-a-slice-level/meta.json +27 -0
  11014. mlsys/tasks/rws-retained-variance-for-a-slice-level/solution_ref.py +31 -0
  11015. mlsys/tasks/rws-retained-variance-for-a-slice-level/starter.py +21 -0
  11016. mlsys/tasks/rws-retained-variance-for-a-slice-level/task.md +88 -0
  11017. mlsys/tasks/rws-rigl-grow-step-top-grad-among-zeros/check.py +40 -0
  11018. mlsys/tasks/rws-rigl-grow-step-top-grad-among-zeros/gen_fixtures.py +1 -0
  11019. mlsys/tasks/rws-rigl-grow-step-top-grad-among-zeros/meta.json +22 -0
  11020. mlsys/tasks/rws-rigl-grow-step-top-grad-among-zeros/solution_ref.py +39 -0
  11021. mlsys/tasks/rws-rigl-grow-step-top-grad-among-zeros/starter.py +4 -0
  11022. mlsys/tasks/rws-rigl-grow-step-top-grad-among-zeros/task.md +56 -0
  11023. mlsys/tasks/rws-rigl-vs-set-regrowth/check.py +87 -0
  11024. mlsys/tasks/rws-rigl-vs-set-regrowth/gen_fixtures.py +2 -0
  11025. mlsys/tasks/rws-rigl-vs-set-regrowth/meta.json +22 -0
  11026. mlsys/tasks/rws-rigl-vs-set-regrowth/solution_ref.py +61 -0
  11027. mlsys/tasks/rws-rigl-vs-set-regrowth/starter.py +21 -0
  11028. mlsys/tasks/rws-rigl-vs-set-regrowth/task.md +79 -0
  11029. mlsys/tasks/rws-rotate-and-slice-on-a-two-layer-stub/check.py +48 -0
  11030. mlsys/tasks/rws-rotate-and-slice-on-a-two-layer-stub/gen_fixtures.py +1 -0
  11031. mlsys/tasks/rws-rotate-and-slice-on-a-two-layer-stub/meta.json +22 -0
  11032. mlsys/tasks/rws-rotate-and-slice-on-a-two-layer-stub/solution_ref.py +16 -0
  11033. mlsys/tasks/rws-rotate-and-slice-on-a-two-layer-stub/starter.py +4 -0
  11034. mlsys/tasks/rws-rotate-and-slice-on-a-two-layer-stub/task.md +77 -0
  11035. mlsys/tasks/rws-route-to-the-right-serving-path/check.py +69 -0
  11036. mlsys/tasks/rws-route-to-the-right-serving-path/gen_fixtures.py +1 -0
  11037. mlsys/tasks/rws-route-to-the-right-serving-path/meta.json +22 -0
  11038. mlsys/tasks/rws-route-to-the-right-serving-path/solution_ref.py +16 -0
  11039. mlsys/tasks/rws-route-to-the-right-serving-path/starter.py +4 -0
  11040. mlsys/tasks/rws-route-to-the-right-serving-path/task.md +88 -0
  11041. mlsys/tasks/rws-select-keep-sets-for-a-target-width-depth/check.py +25 -0
  11042. mlsys/tasks/rws-select-keep-sets-for-a-target-width-depth/gen_fixtures.py +1 -0
  11043. mlsys/tasks/rws-select-keep-sets-for-a-target-width-depth/meta.json +22 -0
  11044. mlsys/tasks/rws-select-keep-sets-for-a-target-width-depth/solution_ref.py +13 -0
  11045. mlsys/tasks/rws-select-keep-sets-for-a-target-width-depth/starter.py +4 -0
  11046. mlsys/tasks/rws-select-keep-sets-for-a-target-width-depth/task.md +41 -0
  11047. mlsys/tasks/rws-sequence-level-kd-hard-target/check.py +44 -0
  11048. mlsys/tasks/rws-sequence-level-kd-hard-target/gen_fixtures.py +1 -0
  11049. mlsys/tasks/rws-sequence-level-kd-hard-target/meta.json +22 -0
  11050. mlsys/tasks/rws-sequence-level-kd-hard-target/solution_ref.py +21 -0
  11051. mlsys/tasks/rws-sequence-level-kd-hard-target/starter.py +5 -0
  11052. mlsys/tasks/rws-sequence-level-kd-hard-target/task.md +83 -0
  11053. mlsys/tasks/rws-serving-format-memory-footprint/check.py +55 -0
  11054. mlsys/tasks/rws-serving-format-memory-footprint/gen_fixtures.py +2 -0
  11055. mlsys/tasks/rws-serving-format-memory-footprint/meta.json +27 -0
  11056. mlsys/tasks/rws-serving-format-memory-footprint/solution_ref.py +34 -0
  11057. mlsys/tasks/rws-serving-format-memory-footprint/starter.py +11 -0
  11058. mlsys/tasks/rws-serving-format-memory-footprint/task.md +67 -0
  11059. mlsys/tasks/rws-soft-expected-mask-from-pattern-logits/check.py +28 -0
  11060. mlsys/tasks/rws-soft-expected-mask-from-pattern-logits/gen_fixtures.py +1 -0
  11061. mlsys/tasks/rws-soft-expected-mask-from-pattern-logits/meta.json +22 -0
  11062. mlsys/tasks/rws-soft-expected-mask-from-pattern-logits/solution_ref.py +10 -0
  11063. mlsys/tasks/rws-soft-expected-mask-from-pattern-logits/starter.py +4 -0
  11064. mlsys/tasks/rws-soft-expected-mask-from-pattern-logits/task.md +63 -0
  11065. mlsys/tasks/rws-sparse-gemm-from-compressed-2-4/check.py +70 -0
  11066. mlsys/tasks/rws-sparse-gemm-from-compressed-2-4/gen_fixtures.py +3 -0
  11067. mlsys/tasks/rws-sparse-gemm-from-compressed-2-4/meta.json +22 -0
  11068. mlsys/tasks/rws-sparse-gemm-from-compressed-2-4/solution_ref.py +25 -0
  11069. mlsys/tasks/rws-sparse-gemm-from-compressed-2-4/starter.py +12 -0
  11070. mlsys/tasks/rws-sparse-gemm-from-compressed-2-4/task.md +69 -0
  11071. mlsys/tasks/rws-sparsegpt-2-4-mask-via-hessian-diagonal/check.py +85 -0
  11072. mlsys/tasks/rws-sparsegpt-2-4-mask-via-hessian-diagonal/gen_fixtures.py +1 -0
  11073. mlsys/tasks/rws-sparsegpt-2-4-mask-via-hessian-diagonal/meta.json +32 -0
  11074. mlsys/tasks/rws-sparsegpt-2-4-mask-via-hessian-diagonal/solution_ref.py +37 -0
  11075. mlsys/tasks/rws-sparsegpt-2-4-mask-via-hessian-diagonal/starter.py +25 -0
  11076. mlsys/tasks/rws-sparsegpt-2-4-mask-via-hessian-diagonal/task.md +98 -0
  11077. mlsys/tasks/rws-sparsegpt-2-4-then-gptq-w4a16-mini-recipe/check.py +95 -0
  11078. mlsys/tasks/rws-sparsegpt-2-4-then-gptq-w4a16-mini-recipe/gen_fixtures.py +2 -0
  11079. mlsys/tasks/rws-sparsegpt-2-4-then-gptq-w4a16-mini-recipe/meta.json +27 -0
  11080. mlsys/tasks/rws-sparsegpt-2-4-then-gptq-w4a16-mini-recipe/solution_ref.py +77 -0
  11081. mlsys/tasks/rws-sparsegpt-2-4-then-gptq-w4a16-mini-recipe/starter.py +29 -0
  11082. mlsys/tasks/rws-sparsegpt-2-4-then-gptq-w4a16-mini-recipe/task.md +123 -0
  11083. mlsys/tasks/rws-sparsegpt-layer-wise-obs-reconstruction/check.py +81 -0
  11084. mlsys/tasks/rws-sparsegpt-layer-wise-obs-reconstruction/gen_fixtures.py +1 -0
  11085. mlsys/tasks/rws-sparsegpt-layer-wise-obs-reconstruction/meta.json +27 -0
  11086. mlsys/tasks/rws-sparsegpt-layer-wise-obs-reconstruction/solution_ref.py +28 -0
  11087. mlsys/tasks/rws-sparsegpt-layer-wise-obs-reconstruction/starter.py +4 -0
  11088. mlsys/tasks/rws-sparsegpt-layer-wise-obs-reconstruction/task.md +68 -0
  11089. mlsys/tasks/rws-sparsegpt-vs-wanda-vs-magnitude-at-equal-s/check.py +98 -0
  11090. mlsys/tasks/rws-sparsegpt-vs-wanda-vs-magnitude-at-equal-s/fixtures/layer_w.npy +0 -0
  11091. mlsys/tasks/rws-sparsegpt-vs-wanda-vs-magnitude-at-equal-s/fixtures/layer_x.npy +0 -0
  11092. mlsys/tasks/rws-sparsegpt-vs-wanda-vs-magnitude-at-equal-s/gen_fixtures.py +32 -0
  11093. mlsys/tasks/rws-sparsegpt-vs-wanda-vs-magnitude-at-equal-s/meta.json +40 -0
  11094. mlsys/tasks/rws-sparsegpt-vs-wanda-vs-magnitude-at-equal-s/solution_ref.py +64 -0
  11095. mlsys/tasks/rws-sparsegpt-vs-wanda-vs-magnitude-at-equal-s/starter.py +11 -0
  11096. mlsys/tasks/rws-sparsegpt-vs-wanda-vs-magnitude-at-equal-s/task.md +92 -0
  11097. mlsys/tasks/rws-straight-through-estimator-forward-backward/check.py +83 -0
  11098. mlsys/tasks/rws-straight-through-estimator-forward-backward/gen_fixtures.py +2 -0
  11099. mlsys/tasks/rws-straight-through-estimator-forward-backward/meta.json +27 -0
  11100. mlsys/tasks/rws-straight-through-estimator-forward-backward/solution_ref.py +59 -0
  11101. mlsys/tasks/rws-straight-through-estimator-forward-backward/starter.py +23 -0
  11102. mlsys/tasks/rws-straight-through-estimator-forward-backward/task.md +81 -0
  11103. mlsys/tasks/rws-temperature-limits-of-gumbel-softmax/check.py +65 -0
  11104. mlsys/tasks/rws-temperature-limits-of-gumbel-softmax/gen_fixtures.py +1 -0
  11105. mlsys/tasks/rws-temperature-limits-of-gumbel-softmax/meta.json +27 -0
  11106. mlsys/tasks/rws-temperature-limits-of-gumbel-softmax/solution_ref.py +14 -0
  11107. mlsys/tasks/rws-temperature-limits-of-gumbel-softmax/starter.py +4 -0
  11108. mlsys/tasks/rws-temperature-limits-of-gumbel-softmax/task.md +83 -0
  11109. mlsys/tasks/rws-temperature-softened-distribution/check.py +46 -0
  11110. mlsys/tasks/rws-temperature-softened-distribution/gen_fixtures.py +1 -0
  11111. mlsys/tasks/rws-temperature-softened-distribution/meta.json +22 -0
  11112. mlsys/tasks/rws-temperature-softened-distribution/solution_ref.py +8 -0
  11113. mlsys/tasks/rws-temperature-softened-distribution/starter.py +4 -0
  11114. mlsys/tasks/rws-temperature-softened-distribution/task.md +44 -0
  11115. mlsys/tasks/rws-uld-gradient-through-the-sort-permutation/check.py +39 -0
  11116. mlsys/tasks/rws-uld-gradient-through-the-sort-permutation/gen_fixtures.py +1 -0
  11117. mlsys/tasks/rws-uld-gradient-through-the-sort-permutation/meta.json +22 -0
  11118. mlsys/tasks/rws-uld-gradient-through-the-sort-permutation/solution_ref.py +9 -0
  11119. mlsys/tasks/rws-uld-gradient-through-the-sort-permutation/starter.py +5 -0
  11120. mlsys/tasks/rws-uld-gradient-through-the-sort-permutation/task.md +43 -0
  11121. mlsys/tasks/rws-uld-vs-same-vocab-kl-on-shared-vocab/check.py +58 -0
  11122. mlsys/tasks/rws-uld-vs-same-vocab-kl-on-shared-vocab/fixtures/uld_p_students.npy +0 -0
  11123. mlsys/tasks/rws-uld-vs-same-vocab-kl-on-shared-vocab/fixtures/uld_p_teacher.npy +0 -0
  11124. mlsys/tasks/rws-uld-vs-same-vocab-kl-on-shared-vocab/gen_fixtures.py +43 -0
  11125. mlsys/tasks/rws-uld-vs-same-vocab-kl-on-shared-vocab/meta.json +35 -0
  11126. mlsys/tasks/rws-uld-vs-same-vocab-kl-on-shared-vocab/solution_ref.py +18 -0
  11127. mlsys/tasks/rws-uld-vs-same-vocab-kl-on-shared-vocab/starter.py +18 -0
  11128. mlsys/tasks/rws-uld-vs-same-vocab-kl-on-shared-vocab/task.md +80 -0
  11129. mlsys/tasks/rws-uld-wasserstein-1-loss-on-sorted-logits/check.py +30 -0
  11130. mlsys/tasks/rws-uld-wasserstein-1-loss-on-sorted-logits/gen_fixtures.py +1 -0
  11131. mlsys/tasks/rws-uld-wasserstein-1-loss-on-sorted-logits/meta.json +22 -0
  11132. mlsys/tasks/rws-uld-wasserstein-1-loss-on-sorted-logits/solution_ref.py +13 -0
  11133. mlsys/tasks/rws-uld-wasserstein-1-loss-on-sorted-logits/starter.py +4 -0
  11134. mlsys/tasks/rws-uld-wasserstein-1-loss-on-sorted-logits/task.md +48 -0
  11135. mlsys/tasks/rws-uniform-vs-reweighted-expected-loss/check.py +58 -0
  11136. mlsys/tasks/rws-uniform-vs-reweighted-expected-loss/gen_fixtures.py +1 -0
  11137. mlsys/tasks/rws-uniform-vs-reweighted-expected-loss/meta.json +32 -0
  11138. mlsys/tasks/rws-uniform-vs-reweighted-expected-loss/solution_ref.py +18 -0
  11139. mlsys/tasks/rws-uniform-vs-reweighted-expected-loss/starter.py +4 -0
  11140. mlsys/tasks/rws-uniform-vs-reweighted-expected-loss/task.md +87 -0
  11141. mlsys/tasks/rws-unpack-cusparselt-metadata-to-a-dense-mask/check.py +29 -0
  11142. mlsys/tasks/rws-unpack-cusparselt-metadata-to-a-dense-mask/gen_fixtures.py +1 -0
  11143. mlsys/tasks/rws-unpack-cusparselt-metadata-to-a-dense-mask/meta.json +22 -0
  11144. mlsys/tasks/rws-unpack-cusparselt-metadata-to-a-dense-mask/solution_ref.py +30 -0
  11145. mlsys/tasks/rws-unpack-cusparselt-metadata-to-a-dense-mask/starter.py +4 -0
  11146. mlsys/tasks/rws-unpack-cusparselt-metadata-to-a-dense-mask/task.md +65 -0
  11147. mlsys/tasks/rws-wanda-2-4-variant-per-4-group/check.py +67 -0
  11148. mlsys/tasks/rws-wanda-2-4-variant-per-4-group/gen_fixtures.py +1 -0
  11149. mlsys/tasks/rws-wanda-2-4-variant-per-4-group/meta.json +27 -0
  11150. mlsys/tasks/rws-wanda-2-4-variant-per-4-group/solution_ref.py +19 -0
  11151. mlsys/tasks/rws-wanda-2-4-variant-per-4-group/starter.py +4 -0
  11152. mlsys/tasks/rws-wanda-2-4-variant-per-4-group/task.md +63 -0
  11153. mlsys/tasks/rws-wanda-vs-magnitude-reconstruction-error/check.py +82 -0
  11154. mlsys/tasks/rws-wanda-vs-magnitude-reconstruction-error/gen_fixtures.py +5 -0
  11155. mlsys/tasks/rws-wanda-vs-magnitude-reconstruction-error/meta.json +32 -0
  11156. mlsys/tasks/rws-wanda-vs-magnitude-reconstruction-error/solution_ref.py +46 -0
  11157. mlsys/tasks/rws-wanda-vs-magnitude-reconstruction-error/starter.py +11 -0
  11158. mlsys/tasks/rws-wanda-vs-magnitude-reconstruction-error/task.md +69 -0
  11159. mlsys/tasks/sys-1f1b-schedule-ordering/check.py +48 -0
  11160. mlsys/tasks/sys-1f1b-schedule-ordering/gen_fixtures.py +1 -0
  11161. mlsys/tasks/sys-1f1b-schedule-ordering/meta.json +22 -0
  11162. mlsys/tasks/sys-1f1b-schedule-ordering/solution_ref.py +27 -0
  11163. mlsys/tasks/sys-1f1b-schedule-ordering/starter.py +2 -0
  11164. mlsys/tasks/sys-1f1b-schedule-ordering/task.md +60 -0
  11165. mlsys/tasks/sys-acceptance-rate-computation/check.py +26 -0
  11166. mlsys/tasks/sys-acceptance-rate-computation/gen_fixtures.py +1 -0
  11167. mlsys/tasks/sys-acceptance-rate-computation/meta.json +22 -0
  11168. mlsys/tasks/sys-acceptance-rate-computation/solution_ref.py +6 -0
  11169. mlsys/tasks/sys-acceptance-rate-computation/starter.py +4 -0
  11170. mlsys/tasks/sys-acceptance-rate-computation/task.md +28 -0
  11171. mlsys/tasks/sys-activation-bytes-saved-by-recompute-vs-store-p/check.py +31 -0
  11172. mlsys/tasks/sys-activation-bytes-saved-by-recompute-vs-store-p/gen_fixtures.py +1 -0
  11173. mlsys/tasks/sys-activation-bytes-saved-by-recompute-vs-store-p/meta.json +22 -0
  11174. mlsys/tasks/sys-activation-bytes-saved-by-recompute-vs-store-p/solution_ref.py +4 -0
  11175. mlsys/tasks/sys-activation-bytes-saved-by-recompute-vs-store-p/starter.py +2 -0
  11176. mlsys/tasks/sys-activation-bytes-saved-by-recompute-vs-store-p/task.md +67 -0
  11177. mlsys/tasks/sys-adam-optimizer-state-bytes/check.py +33 -0
  11178. mlsys/tasks/sys-adam-optimizer-state-bytes/gen_fixtures.py +1 -0
  11179. mlsys/tasks/sys-adam-optimizer-state-bytes/meta.json +22 -0
  11180. mlsys/tasks/sys-adam-optimizer-state-bytes/solution_ref.py +5 -0
  11181. mlsys/tasks/sys-adam-optimizer-state-bytes/starter.py +3 -0
  11182. mlsys/tasks/sys-adam-optimizer-state-bytes/task.md +29 -0
  11183. mlsys/tasks/sys-alibi-additive-bias-inside-online-softmax/check.py +40 -0
  11184. mlsys/tasks/sys-alibi-additive-bias-inside-online-softmax/gen_fixtures.py +1 -0
  11185. mlsys/tasks/sys-alibi-additive-bias-inside-online-softmax/meta.json +22 -0
  11186. mlsys/tasks/sys-alibi-additive-bias-inside-online-softmax/solution_ref.py +27 -0
  11187. mlsys/tasks/sys-alibi-additive-bias-inside-online-softmax/starter.py +5 -0
  11188. mlsys/tasks/sys-alibi-additive-bias-inside-online-softmax/task.md +83 -0
  11189. mlsys/tasks/sys-all-reduce-reduce-scatter-all-gather/check.py +46 -0
  11190. mlsys/tasks/sys-all-reduce-reduce-scatter-all-gather/gen_fixtures.py +1 -0
  11191. mlsys/tasks/sys-all-reduce-reduce-scatter-all-gather/meta.json +23 -0
  11192. mlsys/tasks/sys-all-reduce-reduce-scatter-all-gather/solution_ref.py +16 -0
  11193. mlsys/tasks/sys-all-reduce-reduce-scatter-all-gather/starter.py +9 -0
  11194. mlsys/tasks/sys-all-reduce-reduce-scatter-all-gather/task.md +105 -0
  11195. mlsys/tasks/sys-all-to-all-for-moe-dispatch/check.py +39 -0
  11196. mlsys/tasks/sys-all-to-all-for-moe-dispatch/gen_fixtures.py +1 -0
  11197. mlsys/tasks/sys-all-to-all-for-moe-dispatch/meta.json +22 -0
  11198. mlsys/tasks/sys-all-to-all-for-moe-dispatch/solution_ref.py +11 -0
  11199. mlsys/tasks/sys-all-to-all-for-moe-dispatch/starter.py +4 -0
  11200. mlsys/tasks/sys-all-to-all-for-moe-dispatch/task.md +88 -0
  11201. mlsys/tasks/sys-append-and-read-incremental-decode/check.py +63 -0
  11202. mlsys/tasks/sys-append-and-read-incremental-decode/gen_fixtures.py +1 -0
  11203. mlsys/tasks/sys-append-and-read-incremental-decode/meta.json +22 -0
  11204. mlsys/tasks/sys-append-and-read-incremental-decode/solution_ref.py +49 -0
  11205. mlsys/tasks/sys-append-and-read-incremental-decode/starter.py +7 -0
  11206. mlsys/tasks/sys-append-and-read-incremental-decode/task.md +61 -0
  11207. mlsys/tasks/sys-apply-causal-mask-to-dense-scores/check.py +66 -0
  11208. mlsys/tasks/sys-apply-causal-mask-to-dense-scores/gen_fixtures.py +1 -0
  11209. mlsys/tasks/sys-apply-causal-mask-to-dense-scores/meta.json +22 -0
  11210. mlsys/tasks/sys-apply-causal-mask-to-dense-scores/solution_ref.py +10 -0
  11211. mlsys/tasks/sys-apply-causal-mask-to-dense-scores/starter.py +5 -0
  11212. mlsys/tasks/sys-apply-causal-mask-to-dense-scores/task.md +58 -0
  11213. mlsys/tasks/sys-arithmetic-intensity-of-a-gemm/check.py +28 -0
  11214. mlsys/tasks/sys-arithmetic-intensity-of-a-gemm/gen_fixtures.py +1 -0
  11215. mlsys/tasks/sys-arithmetic-intensity-of-a-gemm/meta.json +22 -0
  11216. mlsys/tasks/sys-arithmetic-intensity-of-a-gemm/solution_ref.py +10 -0
  11217. mlsys/tasks/sys-arithmetic-intensity-of-a-gemm/starter.py +4 -0
  11218. mlsys/tasks/sys-arithmetic-intensity-of-a-gemm/task.md +42 -0
  11219. mlsys/tasks/sys-asymmetric-zero-point-round-trip/check.py +40 -0
  11220. mlsys/tasks/sys-asymmetric-zero-point-round-trip/gen_fixtures.py +2 -0
  11221. mlsys/tasks/sys-asymmetric-zero-point-round-trip/meta.json +27 -0
  11222. mlsys/tasks/sys-asymmetric-zero-point-round-trip/solution_ref.py +18 -0
  11223. mlsys/tasks/sys-asymmetric-zero-point-round-trip/starter.py +11 -0
  11224. mlsys/tasks/sys-asymmetric-zero-point-round-trip/task.md +69 -0
  11225. mlsys/tasks/sys-attainable-performance-from-roofline/check.py +19 -0
  11226. mlsys/tasks/sys-attainable-performance-from-roofline/gen_fixtures.py +1 -0
  11227. mlsys/tasks/sys-attainable-performance-from-roofline/meta.json +22 -0
  11228. mlsys/tasks/sys-attainable-performance-from-roofline/solution_ref.py +8 -0
  11229. mlsys/tasks/sys-attainable-performance-from-roofline/starter.py +4 -0
  11230. mlsys/tasks/sys-attainable-performance-from-roofline/task.md +48 -0
  11231. mlsys/tasks/sys-awq-salient-channel-scaling-round-trip/check.py +35 -0
  11232. mlsys/tasks/sys-awq-salient-channel-scaling-round-trip/gen_fixtures.py +1 -0
  11233. mlsys/tasks/sys-awq-salient-channel-scaling-round-trip/meta.json +22 -0
  11234. mlsys/tasks/sys-awq-salient-channel-scaling-round-trip/solution_ref.py +15 -0
  11235. mlsys/tasks/sys-awq-salient-channel-scaling-round-trip/starter.py +4 -0
  11236. mlsys/tasks/sys-awq-salient-channel-scaling-round-trip/task.md +64 -0
  11237. mlsys/tasks/sys-backward-matches-autograd-under-bf16-emulated-rounding/check.py +61 -0
  11238. mlsys/tasks/sys-backward-matches-autograd-under-bf16-emulated-rounding/gen_fixtures.py +1 -0
  11239. mlsys/tasks/sys-backward-matches-autograd-under-bf16-emulated-rounding/meta.json +22 -0
  11240. mlsys/tasks/sys-backward-matches-autograd-under-bf16-emulated-rounding/solution_ref.py +38 -0
  11241. mlsys/tasks/sys-backward-matches-autograd-under-bf16-emulated-rounding/starter.py +7 -0
  11242. mlsys/tasks/sys-backward-matches-autograd-under-bf16-emulated-rounding/task.md +67 -0
  11243. mlsys/tasks/sys-batch-size-maximizing-throughput-under-p99/check.py +45 -0
  11244. mlsys/tasks/sys-batch-size-maximizing-throughput-under-p99/gen_fixtures.py +1 -0
  11245. mlsys/tasks/sys-batch-size-maximizing-throughput-under-p99/meta.json +22 -0
  11246. mlsys/tasks/sys-batch-size-maximizing-throughput-under-p99/solution_ref.py +19 -0
  11247. mlsys/tasks/sys-batch-size-maximizing-throughput-under-p99/starter.py +2 -0
  11248. mlsys/tasks/sys-batch-size-maximizing-throughput-under-p99/task.md +77 -0
  11249. mlsys/tasks/sys-bf16-matmul-with-fp32-accumulation-error-bound/check.py +67 -0
  11250. mlsys/tasks/sys-bf16-matmul-with-fp32-accumulation-error-bound/gen_fixtures.py +1 -0
  11251. mlsys/tasks/sys-bf16-matmul-with-fp32-accumulation-error-bound/meta.json +22 -0
  11252. mlsys/tasks/sys-bf16-matmul-with-fp32-accumulation-error-bound/solution_ref.py +14 -0
  11253. mlsys/tasks/sys-bf16-matmul-with-fp32-accumulation-error-bound/starter.py +7 -0
  11254. mlsys/tasks/sys-bf16-matmul-with-fp32-accumulation-error-bound/task.md +77 -0
  11255. mlsys/tasks/sys-block-count-and-wasted-slot-arithmetic/check.py +26 -0
  11256. mlsys/tasks/sys-block-count-and-wasted-slot-arithmetic/gen_fixtures.py +1 -0
  11257. mlsys/tasks/sys-block-count-and-wasted-slot-arithmetic/meta.json +22 -0
  11258. mlsys/tasks/sys-block-count-and-wasted-slot-arithmetic/solution_ref.py +9 -0
  11259. mlsys/tasks/sys-block-count-and-wasted-slot-arithmetic/starter.py +2 -0
  11260. mlsys/tasks/sys-block-count-and-wasted-slot-arithmetic/task.md +31 -0
  11261. mlsys/tasks/sys-block-parametrized-online-softmax-under-bf16-emulated-rounding/check.py +64 -0
  11262. mlsys/tasks/sys-block-parametrized-online-softmax-under-bf16-emulated-rounding/gen_fixtures.py +1 -0
  11263. mlsys/tasks/sys-block-parametrized-online-softmax-under-bf16-emulated-rounding/meta.json +22 -0
  11264. mlsys/tasks/sys-block-parametrized-online-softmax-under-bf16-emulated-rounding/solution_ref.py +39 -0
  11265. mlsys/tasks/sys-block-parametrized-online-softmax-under-bf16-emulated-rounding/starter.py +4 -0
  11266. mlsys/tasks/sys-block-parametrized-online-softmax-under-bf16-emulated-rounding/task.md +77 -0
  11267. mlsys/tasks/sys-block-pointer-indexing-with-boundary-mask/check.py +41 -0
  11268. mlsys/tasks/sys-block-pointer-indexing-with-boundary-mask/gen_fixtures.py +1 -0
  11269. mlsys/tasks/sys-block-pointer-indexing-with-boundary-mask/meta.json +22 -0
  11270. mlsys/tasks/sys-block-pointer-indexing-with-boundary-mask/solution_ref.py +17 -0
  11271. mlsys/tasks/sys-block-pointer-indexing-with-boundary-mask/starter.py +4 -0
  11272. mlsys/tasks/sys-block-pointer-indexing-with-boundary-mask/task.md +58 -0
  11273. mlsys/tasks/sys-block-size-choice-minimizing-modeled-hbm/check.py +43 -0
  11274. mlsys/tasks/sys-block-size-choice-minimizing-modeled-hbm/gen_fixtures.py +1 -0
  11275. mlsys/tasks/sys-block-size-choice-minimizing-modeled-hbm/meta.json +22 -0
  11276. mlsys/tasks/sys-block-size-choice-minimizing-modeled-hbm/solution_ref.py +17 -0
  11277. mlsys/tasks/sys-block-size-choice-minimizing-modeled-hbm/starter.py +2 -0
  11278. mlsys/tasks/sys-block-size-choice-minimizing-modeled-hbm/task.md +60 -0
  11279. mlsys/tasks/sys-block-sparse-equals-dense-on-structurally-zero-inputs/check.py +74 -0
  11280. mlsys/tasks/sys-block-sparse-equals-dense-on-structurally-zero-inputs/gen_fixtures.py +1 -0
  11281. mlsys/tasks/sys-block-sparse-equals-dense-on-structurally-zero-inputs/meta.json +27 -0
  11282. mlsys/tasks/sys-block-sparse-equals-dense-on-structurally-zero-inputs/solution_ref.py +32 -0
  11283. mlsys/tasks/sys-block-sparse-equals-dense-on-structurally-zero-inputs/starter.py +4 -0
  11284. mlsys/tasks/sys-block-sparse-equals-dense-on-structurally-zero-inputs/task.md +94 -0
  11285. mlsys/tasks/sys-block-table-append-gather-attention/check.py +110 -0
  11286. mlsys/tasks/sys-block-table-append-gather-attention/gen_fixtures.py +1 -0
  11287. mlsys/tasks/sys-block-table-append-gather-attention/meta.json +28 -0
  11288. mlsys/tasks/sys-block-table-append-gather-attention/solution_ref.py +80 -0
  11289. mlsys/tasks/sys-block-table-append-gather-attention/starter.py +52 -0
  11290. mlsys/tasks/sys-block-table-append-gather-attention/task.md +95 -0
  11291. mlsys/tasks/sys-bucket-grads-to-maximize-overlap/check.py +90 -0
  11292. mlsys/tasks/sys-bucket-grads-to-maximize-overlap/gen_fixtures.py +1 -0
  11293. mlsys/tasks/sys-bucket-grads-to-maximize-overlap/meta.json +22 -0
  11294. mlsys/tasks/sys-bucket-grads-to-maximize-overlap/solution_ref.py +48 -0
  11295. mlsys/tasks/sys-bucket-grads-to-maximize-overlap/starter.py +2 -0
  11296. mlsys/tasks/sys-bucket-grads-to-maximize-overlap/task.md +74 -0
  11297. mlsys/tasks/sys-build-a-minimal-op-dag-tracer/check.py +76 -0
  11298. mlsys/tasks/sys-build-a-minimal-op-dag-tracer/gen_fixtures.py +1 -0
  11299. mlsys/tasks/sys-build-a-minimal-op-dag-tracer/meta.json +22 -0
  11300. mlsys/tasks/sys-build-a-minimal-op-dag-tracer/solution_ref.py +45 -0
  11301. mlsys/tasks/sys-build-a-minimal-op-dag-tracer/starter.py +2 -0
  11302. mlsys/tasks/sys-build-a-minimal-op-dag-tracer/task.md +77 -0
  11303. mlsys/tasks/sys-capacity-factor-token-dropping/check.py +45 -0
  11304. mlsys/tasks/sys-capacity-factor-token-dropping/gen_fixtures.py +1 -0
  11305. mlsys/tasks/sys-capacity-factor-token-dropping/meta.json +22 -0
  11306. mlsys/tasks/sys-capacity-factor-token-dropping/solution_ref.py +13 -0
  11307. mlsys/tasks/sys-capacity-factor-token-dropping/starter.py +5 -0
  11308. mlsys/tasks/sys-capacity-factor-token-dropping/task.md +75 -0
  11309. mlsys/tasks/sys-causal-flashattention-forward-with-kv-early-exit/check.py +64 -0
  11310. mlsys/tasks/sys-causal-flashattention-forward-with-kv-early-exit/gen_fixtures.py +1 -0
  11311. mlsys/tasks/sys-causal-flashattention-forward-with-kv-early-exit/meta.json +27 -0
  11312. mlsys/tasks/sys-causal-flashattention-forward-with-kv-early-exit/solution_ref.py +50 -0
  11313. mlsys/tasks/sys-causal-flashattention-forward-with-kv-early-exit/starter.py +7 -0
  11314. mlsys/tasks/sys-causal-flashattention-forward-with-kv-early-exit/task.md +83 -0
  11315. mlsys/tasks/sys-causal-folded-into-tiling-with-early-exit/check.py +70 -0
  11316. mlsys/tasks/sys-causal-folded-into-tiling-with-early-exit/gen_fixtures.py +1 -0
  11317. mlsys/tasks/sys-causal-folded-into-tiling-with-early-exit/meta.json +27 -0
  11318. mlsys/tasks/sys-causal-folded-into-tiling-with-early-exit/solution_ref.py +36 -0
  11319. mlsys/tasks/sys-causal-folded-into-tiling-with-early-exit/starter.py +11 -0
  11320. mlsys/tasks/sys-causal-folded-into-tiling-with-early-exit/task.md +81 -0
  11321. mlsys/tasks/sys-chunk-size-selection-to-bound-decode-stall/check.py +46 -0
  11322. mlsys/tasks/sys-chunk-size-selection-to-bound-decode-stall/gen_fixtures.py +1 -0
  11323. mlsys/tasks/sys-chunk-size-selection-to-bound-decode-stall/meta.json +22 -0
  11324. mlsys/tasks/sys-chunk-size-selection-to-bound-decode-stall/solution_ref.py +15 -0
  11325. mlsys/tasks/sys-chunk-size-selection-to-bound-decode-stall/starter.py +2 -0
  11326. mlsys/tasks/sys-chunk-size-selection-to-bound-decode-stall/task.md +80 -0
  11327. mlsys/tasks/sys-chunked-prefill-reproduces-kv-tokens/check.py +68 -0
  11328. mlsys/tasks/sys-chunked-prefill-reproduces-kv-tokens/gen_fixtures.py +1 -0
  11329. mlsys/tasks/sys-chunked-prefill-reproduces-kv-tokens/meta.json +22 -0
  11330. mlsys/tasks/sys-chunked-prefill-reproduces-kv-tokens/solution_ref.py +38 -0
  11331. mlsys/tasks/sys-chunked-prefill-reproduces-kv-tokens/starter.py +10 -0
  11332. mlsys/tasks/sys-chunked-prefill-reproduces-kv-tokens/task.md +56 -0
  11333. mlsys/tasks/sys-classify-fusable-op-pairs/check.py +63 -0
  11334. mlsys/tasks/sys-classify-fusable-op-pairs/gen_fixtures.py +2 -0
  11335. mlsys/tasks/sys-classify-fusable-op-pairs/meta.json +22 -0
  11336. mlsys/tasks/sys-classify-fusable-op-pairs/solution_ref.py +41 -0
  11337. mlsys/tasks/sys-classify-fusable-op-pairs/starter.py +9 -0
  11338. mlsys/tasks/sys-classify-fusable-op-pairs/task.md +81 -0
  11339. mlsys/tasks/sys-classify-graph-breaks/check.py +45 -0
  11340. mlsys/tasks/sys-classify-graph-breaks/gen_fixtures.py +1 -0
  11341. mlsys/tasks/sys-classify-graph-breaks/meta.json +22 -0
  11342. mlsys/tasks/sys-classify-graph-breaks/solution_ref.py +34 -0
  11343. mlsys/tasks/sys-classify-graph-breaks/starter.py +4 -0
  11344. mlsys/tasks/sys-classify-graph-breaks/task.md +34 -0
  11345. mlsys/tasks/sys-classify-overlappable-ops-from-dag/check.py +68 -0
  11346. mlsys/tasks/sys-classify-overlappable-ops-from-dag/gen_fixtures.py +1 -0
  11347. mlsys/tasks/sys-classify-overlappable-ops-from-dag/meta.json +22 -0
  11348. mlsys/tasks/sys-classify-overlappable-ops-from-dag/solution_ref.py +32 -0
  11349. mlsys/tasks/sys-classify-overlappable-ops-from-dag/starter.py +7 -0
  11350. mlsys/tasks/sys-classify-overlappable-ops-from-dag/task.md +70 -0
  11351. mlsys/tasks/sys-classify-roofline-region-of-a-phase/check.py +60 -0
  11352. mlsys/tasks/sys-classify-roofline-region-of-a-phase/gen_fixtures.py +1 -0
  11353. mlsys/tasks/sys-classify-roofline-region-of-a-phase/meta.json +22 -0
  11354. mlsys/tasks/sys-classify-roofline-region-of-a-phase/solution_ref.py +17 -0
  11355. mlsys/tasks/sys-classify-roofline-region-of-a-phase/starter.py +2 -0
  11356. mlsys/tasks/sys-classify-roofline-region-of-a-phase/task.md +94 -0
  11357. mlsys/tasks/sys-column-row-parallel-mlp-equivalence/check.py +52 -0
  11358. mlsys/tasks/sys-column-row-parallel-mlp-equivalence/gen_fixtures.py +1 -0
  11359. mlsys/tasks/sys-column-row-parallel-mlp-equivalence/meta.json +22 -0
  11360. mlsys/tasks/sys-column-row-parallel-mlp-equivalence/solution_ref.py +20 -0
  11361. mlsys/tasks/sys-column-row-parallel-mlp-equivalence/starter.py +14 -0
  11362. mlsys/tasks/sys-column-row-parallel-mlp-equivalence/task.md +85 -0
  11363. mlsys/tasks/sys-compensated-kahan-summation-in-low-precision/check.py +31 -0
  11364. mlsys/tasks/sys-compensated-kahan-summation-in-low-precision/gen_fixtures.py +1 -0
  11365. mlsys/tasks/sys-compensated-kahan-summation-in-low-precision/meta.json +22 -0
  11366. mlsys/tasks/sys-compensated-kahan-summation-in-low-precision/solution_ref.py +10 -0
  11367. mlsys/tasks/sys-compensated-kahan-summation-in-low-precision/starter.py +7 -0
  11368. mlsys/tasks/sys-compensated-kahan-summation-in-low-precision/task.md +70 -0
  11369. mlsys/tasks/sys-compute-bound-vs-memory-bound-classification/check.py +28 -0
  11370. mlsys/tasks/sys-compute-bound-vs-memory-bound-classification/gen_fixtures.py +1 -0
  11371. mlsys/tasks/sys-compute-bound-vs-memory-bound-classification/meta.json +22 -0
  11372. mlsys/tasks/sys-compute-bound-vs-memory-bound-classification/solution_ref.py +5 -0
  11373. mlsys/tasks/sys-compute-bound-vs-memory-bound-classification/starter.py +4 -0
  11374. mlsys/tasks/sys-compute-bound-vs-memory-bound-classification/task.md +51 -0
  11375. mlsys/tasks/sys-constant-fold-a-traced-graph/check.py +150 -0
  11376. mlsys/tasks/sys-constant-fold-a-traced-graph/gen_fixtures.py +1 -0
  11377. mlsys/tasks/sys-constant-fold-a-traced-graph/meta.json +22 -0
  11378. mlsys/tasks/sys-constant-fold-a-traced-graph/solution_ref.py +53 -0
  11379. mlsys/tasks/sys-constant-fold-a-traced-graph/starter.py +8 -0
  11380. mlsys/tasks/sys-constant-fold-a-traced-graph/task.md +88 -0
  11381. mlsys/tasks/sys-contiguous-vs-strided-decode-access-count/check.py +53 -0
  11382. mlsys/tasks/sys-contiguous-vs-strided-decode-access-count/gen_fixtures.py +1 -0
  11383. mlsys/tasks/sys-contiguous-vs-strided-decode-access-count/meta.json +22 -0
  11384. mlsys/tasks/sys-contiguous-vs-strided-decode-access-count/solution_ref.py +24 -0
  11385. mlsys/tasks/sys-contiguous-vs-strided-decode-access-count/starter.py +4 -0
  11386. mlsys/tasks/sys-contiguous-vs-strided-decode-access-count/task.md +68 -0
  11387. mlsys/tasks/sys-copy-on-write-prefix-sharing/check.py +105 -0
  11388. mlsys/tasks/sys-copy-on-write-prefix-sharing/gen_fixtures.py +1 -0
  11389. mlsys/tasks/sys-copy-on-write-prefix-sharing/meta.json +27 -0
  11390. mlsys/tasks/sys-copy-on-write-prefix-sharing/solution_ref.py +79 -0
  11391. mlsys/tasks/sys-copy-on-write-prefix-sharing/starter.py +27 -0
  11392. mlsys/tasks/sys-copy-on-write-prefix-sharing/task.md +99 -0
  11393. mlsys/tasks/sys-cost-model-schedule-ranking/check.py +65 -0
  11394. mlsys/tasks/sys-cost-model-schedule-ranking/gen_fixtures.py +1 -0
  11395. mlsys/tasks/sys-cost-model-schedule-ranking/meta.json +22 -0
  11396. mlsys/tasks/sys-cost-model-schedule-ranking/solution_ref.py +22 -0
  11397. mlsys/tasks/sys-cost-model-schedule-ranking/starter.py +2 -0
  11398. mlsys/tasks/sys-cost-model-schedule-ranking/task.md +66 -0
  11399. mlsys/tasks/sys-count-hbm-round-trips-of-matmul-bias-act/check.py +45 -0
  11400. mlsys/tasks/sys-count-hbm-round-trips-of-matmul-bias-act/gen_fixtures.py +1 -0
  11401. mlsys/tasks/sys-count-hbm-round-trips-of-matmul-bias-act/meta.json +22 -0
  11402. mlsys/tasks/sys-count-hbm-round-trips-of-matmul-bias-act/solution_ref.py +24 -0
  11403. mlsys/tasks/sys-count-hbm-round-trips-of-matmul-bias-act/starter.py +3 -0
  11404. mlsys/tasks/sys-count-hbm-round-trips-of-matmul-bias-act/task.md +64 -0
  11405. mlsys/tasks/sys-data-parallel-grad-averaging-equals-big-batch/check.py +30 -0
  11406. mlsys/tasks/sys-data-parallel-grad-averaging-equals-big-batch/gen_fixtures.py +1 -0
  11407. mlsys/tasks/sys-data-parallel-grad-averaging-equals-big-batch/meta.json +22 -0
  11408. mlsys/tasks/sys-data-parallel-grad-averaging-equals-big-batch/solution_ref.py +16 -0
  11409. mlsys/tasks/sys-data-parallel-grad-averaging-equals-big-batch/starter.py +4 -0
  11410. mlsys/tasks/sys-data-parallel-grad-averaging-equals-big-batch/task.md +65 -0
  11411. mlsys/tasks/sys-dead-code-elimination-on-fx-like-graph/check.py +74 -0
  11412. mlsys/tasks/sys-dead-code-elimination-on-fx-like-graph/gen_fixtures.py +1 -0
  11413. mlsys/tasks/sys-dead-code-elimination-on-fx-like-graph/meta.json +22 -0
  11414. mlsys/tasks/sys-dead-code-elimination-on-fx-like-graph/solution_ref.py +17 -0
  11415. mlsys/tasks/sys-dead-code-elimination-on-fx-like-graph/starter.py +2 -0
  11416. mlsys/tasks/sys-dead-code-elimination-on-fx-like-graph/task.md +64 -0
  11417. mlsys/tasks/sys-derive-and-evaluate-the-m-l-o-merge-operator/check.py +54 -0
  11418. mlsys/tasks/sys-derive-and-evaluate-the-m-l-o-merge-operator/gen_fixtures.py +1 -0
  11419. mlsys/tasks/sys-derive-and-evaluate-the-m-l-o-merge-operator/meta.json +22 -0
  11420. mlsys/tasks/sys-derive-and-evaluate-the-m-l-o-merge-operator/solution_ref.py +15 -0
  11421. mlsys/tasks/sys-derive-and-evaluate-the-m-l-o-merge-operator/starter.py +4 -0
  11422. mlsys/tasks/sys-derive-and-evaluate-the-m-l-o-merge-operator/task.md +90 -0
  11423. mlsys/tasks/sys-derive-decode-arithmetic-intensity-vs-group-factor/check.py +31 -0
  11424. mlsys/tasks/sys-derive-decode-arithmetic-intensity-vs-group-factor/gen_fixtures.py +1 -0
  11425. mlsys/tasks/sys-derive-decode-arithmetic-intensity-vs-group-factor/meta.json +22 -0
  11426. mlsys/tasks/sys-derive-decode-arithmetic-intensity-vs-group-factor/solution_ref.py +6 -0
  11427. mlsys/tasks/sys-derive-decode-arithmetic-intensity-vs-group-factor/starter.py +2 -0
  11428. mlsys/tasks/sys-derive-decode-arithmetic-intensity-vs-group-factor/task.md +58 -0
  11429. mlsys/tasks/sys-derive-ds-p-dp-d-i/check.py +38 -0
  11430. mlsys/tasks/sys-derive-ds-p-dp-d-i/gen_fixtures.py +1 -0
  11431. mlsys/tasks/sys-derive-ds-p-dp-d-i/meta.json +22 -0
  11432. mlsys/tasks/sys-derive-ds-p-dp-d-i/solution_ref.py +8 -0
  11433. mlsys/tasks/sys-derive-ds-p-dp-d-i/starter.py +4 -0
  11434. mlsys/tasks/sys-derive-ds-p-dp-d-i/task.md +88 -0
  11435. mlsys/tasks/sys-disaggregated-prefill-decode-kv-handoff/check.py +65 -0
  11436. mlsys/tasks/sys-disaggregated-prefill-decode-kv-handoff/gen_fixtures.py +1 -0
  11437. mlsys/tasks/sys-disaggregated-prefill-decode-kv-handoff/meta.json +20 -0
  11438. mlsys/tasks/sys-disaggregated-prefill-decode-kv-handoff/solution_ref.py +13 -0
  11439. mlsys/tasks/sys-disaggregated-prefill-decode-kv-handoff/starter.py +4 -0
  11440. mlsys/tasks/sys-disaggregated-prefill-decode-kv-handoff/task.md +92 -0
  11441. mlsys/tasks/sys-dispatch-combine-round-trip/check.py +45 -0
  11442. mlsys/tasks/sys-dispatch-combine-round-trip/gen_fixtures.py +2 -0
  11443. mlsys/tasks/sys-dispatch-combine-round-trip/meta.json +22 -0
  11444. mlsys/tasks/sys-dispatch-combine-round-trip/solution_ref.py +37 -0
  11445. mlsys/tasks/sys-dispatch-combine-round-trip/starter.py +17 -0
  11446. mlsys/tasks/sys-dispatch-combine-round-trip/task.md +81 -0
  11447. mlsys/tasks/sys-emit-and-verify-logsumexp-for-backward/check.py +37 -0
  11448. mlsys/tasks/sys-emit-and-verify-logsumexp-for-backward/gen_fixtures.py +1 -0
  11449. mlsys/tasks/sys-emit-and-verify-logsumexp-for-backward/meta.json +22 -0
  11450. mlsys/tasks/sys-emit-and-verify-logsumexp-for-backward/solution_ref.py +7 -0
  11451. mlsys/tasks/sys-emit-and-verify-logsumexp-for-backward/starter.py +4 -0
  11452. mlsys/tasks/sys-emit-and-verify-logsumexp-for-backward/task.md +63 -0
  11453. mlsys/tasks/sys-emulated-triton-softmax-kernel/check.py +37 -0
  11454. mlsys/tasks/sys-emulated-triton-softmax-kernel/gen_fixtures.py +1 -0
  11455. mlsys/tasks/sys-emulated-triton-softmax-kernel/meta.json +22 -0
  11456. mlsys/tasks/sys-emulated-triton-softmax-kernel/solution_ref.py +8 -0
  11457. mlsys/tasks/sys-emulated-triton-softmax-kernel/starter.py +4 -0
  11458. mlsys/tasks/sys-emulated-triton-softmax-kernel/task.md +71 -0
  11459. mlsys/tasks/sys-emulated-triton-tiled-matmul/check.py +30 -0
  11460. mlsys/tasks/sys-emulated-triton-tiled-matmul/gen_fixtures.py +1 -0
  11461. mlsys/tasks/sys-emulated-triton-tiled-matmul/meta.json +22 -0
  11462. mlsys/tasks/sys-emulated-triton-tiled-matmul/solution_ref.py +29 -0
  11463. mlsys/tasks/sys-emulated-triton-tiled-matmul/starter.py +4 -0
  11464. mlsys/tasks/sys-emulated-triton-tiled-matmul/task.md +67 -0
  11465. mlsys/tasks/sys-emulated-triton-vector-add-with-masking/check.py +52 -0
  11466. mlsys/tasks/sys-emulated-triton-vector-add-with-masking/gen_fixtures.py +1 -0
  11467. mlsys/tasks/sys-emulated-triton-vector-add-with-masking/meta.json +22 -0
  11468. mlsys/tasks/sys-emulated-triton-vector-add-with-masking/solution_ref.py +34 -0
  11469. mlsys/tasks/sys-emulated-triton-vector-add-with-masking/starter.py +7 -0
  11470. mlsys/tasks/sys-emulated-triton-vector-add-with-masking/task.md +78 -0
  11471. mlsys/tasks/sys-expected-accepted-length-vs-tree-size/check.py +44 -0
  11472. mlsys/tasks/sys-expected-accepted-length-vs-tree-size/gen_fixtures.py +1 -0
  11473. mlsys/tasks/sys-expected-accepted-length-vs-tree-size/meta.json +22 -0
  11474. mlsys/tasks/sys-expected-accepted-length-vs-tree-size/solution_ref.py +10 -0
  11475. mlsys/tasks/sys-expected-accepted-length-vs-tree-size/starter.py +2 -0
  11476. mlsys/tasks/sys-expected-accepted-length-vs-tree-size/task.md +64 -0
  11477. mlsys/tasks/sys-expected-tokens-per-step/check.py +46 -0
  11478. mlsys/tasks/sys-expected-tokens-per-step/gen_fixtures.py +1 -0
  11479. mlsys/tasks/sys-expected-tokens-per-step/meta.json +22 -0
  11480. mlsys/tasks/sys-expected-tokens-per-step/solution_ref.py +8 -0
  11481. mlsys/tasks/sys-expected-tokens-per-step/starter.py +13 -0
  11482. mlsys/tasks/sys-expected-tokens-per-step/task.md +74 -0
  11483. mlsys/tasks/sys-expert-choice-vs-token-choice-routing/check.py +81 -0
  11484. mlsys/tasks/sys-expert-choice-vs-token-choice-routing/gen_fixtures.py +1 -0
  11485. mlsys/tasks/sys-expert-choice-vs-token-choice-routing/meta.json +22 -0
  11486. mlsys/tasks/sys-expert-choice-vs-token-choice-routing/solution_ref.py +27 -0
  11487. mlsys/tasks/sys-expert-choice-vs-token-choice-routing/starter.py +4 -0
  11488. mlsys/tasks/sys-expert-choice-vs-token-choice-routing/task.md +86 -0
  11489. mlsys/tasks/sys-expert-parallel-all-to-all-dispatch/check.py +61 -0
  11490. mlsys/tasks/sys-expert-parallel-all-to-all-dispatch/gen_fixtures.py +1 -0
  11491. mlsys/tasks/sys-expert-parallel-all-to-all-dispatch/meta.json +27 -0
  11492. mlsys/tasks/sys-expert-parallel-all-to-all-dispatch/solution_ref.py +44 -0
  11493. mlsys/tasks/sys-expert-parallel-all-to-all-dispatch/starter.py +11 -0
  11494. mlsys/tasks/sys-expert-parallel-all-to-all-dispatch/task.md +102 -0
  11495. mlsys/tasks/sys-feasible-batch-sizes-under-ttft-itl-sla/check.py +31 -0
  11496. mlsys/tasks/sys-feasible-batch-sizes-under-ttft-itl-sla/gen_fixtures.py +1 -0
  11497. mlsys/tasks/sys-feasible-batch-sizes-under-ttft-itl-sla/meta.json +22 -0
  11498. mlsys/tasks/sys-feasible-batch-sizes-under-ttft-itl-sla/solution_ref.py +13 -0
  11499. mlsys/tasks/sys-feasible-batch-sizes-under-ttft-itl-sla/starter.py +2 -0
  11500. mlsys/tasks/sys-feasible-batch-sizes-under-ttft-itl-sla/task.md +81 -0
  11501. mlsys/tasks/sys-find-the-batch-size-knee/check.py +34 -0
  11502. mlsys/tasks/sys-find-the-batch-size-knee/gen_fixtures.py +1 -0
  11503. mlsys/tasks/sys-find-the-batch-size-knee/meta.json +22 -0
  11504. mlsys/tasks/sys-find-the-batch-size-knee/solution_ref.py +14 -0
  11505. mlsys/tasks/sys-find-the-batch-size-knee/starter.py +4 -0
  11506. mlsys/tasks/sys-find-the-batch-size-knee/task.md +49 -0
  11507. mlsys/tasks/sys-find-the-dropped-d-i-correction/check.py +83 -0
  11508. mlsys/tasks/sys-find-the-dropped-d-i-correction/gen_fixtures.py +2 -0
  11509. mlsys/tasks/sys-find-the-dropped-d-i-correction/meta.json +22 -0
  11510. mlsys/tasks/sys-find-the-dropped-d-i-correction/solution_ref.py +30 -0
  11511. mlsys/tasks/sys-find-the-dropped-d-i-correction/starter.py +32 -0
  11512. mlsys/tasks/sys-find-the-dropped-d-i-correction/task.md +87 -0
  11513. mlsys/tasks/sys-fix-an-over-loose-guard/check.py +100 -0
  11514. mlsys/tasks/sys-fix-an-over-loose-guard/gen_fixtures.py +2 -0
  11515. mlsys/tasks/sys-fix-an-over-loose-guard/meta.json +22 -0
  11516. mlsys/tasks/sys-fix-an-over-loose-guard/solution_ref.py +14 -0
  11517. mlsys/tasks/sys-fix-an-over-loose-guard/starter.py +26 -0
  11518. mlsys/tasks/sys-fix-an-over-loose-guard/task.md +90 -0
  11519. mlsys/tasks/sys-fix-catastrophic-fp16-accumulation/check.py +41 -0
  11520. mlsys/tasks/sys-fix-catastrophic-fp16-accumulation/gen_fixtures.py +1 -0
  11521. mlsys/tasks/sys-fix-catastrophic-fp16-accumulation/meta.json +22 -0
  11522. mlsys/tasks/sys-fix-catastrophic-fp16-accumulation/solution_ref.py +5 -0
  11523. mlsys/tasks/sys-fix-catastrophic-fp16-accumulation/starter.py +6 -0
  11524. mlsys/tasks/sys-fix-catastrophic-fp16-accumulation/task.md +70 -0
  11525. mlsys/tasks/sys-fix-cross-branch-leakage-in-tree-mask/check.py +41 -0
  11526. mlsys/tasks/sys-fix-cross-branch-leakage-in-tree-mask/gen_fixtures.py +1 -0
  11527. mlsys/tasks/sys-fix-cross-branch-leakage-in-tree-mask/meta.json +22 -0
  11528. mlsys/tasks/sys-fix-cross-branch-leakage-in-tree-mask/solution_ref.py +14 -0
  11529. mlsys/tasks/sys-fix-cross-branch-leakage-in-tree-mask/starter.py +13 -0
  11530. mlsys/tasks/sys-fix-cross-branch-leakage-in-tree-mask/task.md +50 -0
  11531. mlsys/tasks/sys-fix-double-applied-rope-on-cache-reuse/check.py +63 -0
  11532. mlsys/tasks/sys-fix-double-applied-rope-on-cache-reuse/gen_fixtures.py +1 -0
  11533. mlsys/tasks/sys-fix-double-applied-rope-on-cache-reuse/meta.json +22 -0
  11534. mlsys/tasks/sys-fix-double-applied-rope-on-cache-reuse/solution_ref.py +39 -0
  11535. mlsys/tasks/sys-fix-double-applied-rope-on-cache-reuse/starter.py +55 -0
  11536. mlsys/tasks/sys-fix-double-applied-rope-on-cache-reuse/task.md +93 -0
  11537. mlsys/tasks/sys-fix-dropped-rng-state-in-checkpoint-region/check.py +74 -0
  11538. mlsys/tasks/sys-fix-dropped-rng-state-in-checkpoint-region/gen_fixtures.py +1 -0
  11539. mlsys/tasks/sys-fix-dropped-rng-state-in-checkpoint-region/meta.json +22 -0
  11540. mlsys/tasks/sys-fix-dropped-rng-state-in-checkpoint-region/solution_ref.py +40 -0
  11541. mlsys/tasks/sys-fix-dropped-rng-state-in-checkpoint-region/starter.py +37 -0
  11542. mlsys/tasks/sys-fix-dropped-rng-state-in-checkpoint-region/task.md +95 -0
  11543. mlsys/tasks/sys-fix-fused-kernel-broadcasting-bug/check.py +42 -0
  11544. mlsys/tasks/sys-fix-fused-kernel-broadcasting-bug/gen_fixtures.py +1 -0
  11545. mlsys/tasks/sys-fix-fused-kernel-broadcasting-bug/meta.json +22 -0
  11546. mlsys/tasks/sys-fix-fused-kernel-broadcasting-bug/solution_ref.py +8 -0
  11547. mlsys/tasks/sys-fix-fused-kernel-broadcasting-bug/starter.py +15 -0
  11548. mlsys/tasks/sys-fix-fused-kernel-broadcasting-bug/task.md +64 -0
  11549. mlsys/tasks/sys-fix-fusion-that-changes-reduction-order/check.py +52 -0
  11550. mlsys/tasks/sys-fix-fusion-that-changes-reduction-order/gen_fixtures.py +1 -0
  11551. mlsys/tasks/sys-fix-fusion-that-changes-reduction-order/meta.json +22 -0
  11552. mlsys/tasks/sys-fix-fusion-that-changes-reduction-order/solution_ref.py +47 -0
  11553. mlsys/tasks/sys-fix-fusion-that-changes-reduction-order/starter.py +32 -0
  11554. mlsys/tasks/sys-fix-fusion-that-changes-reduction-order/task.md +95 -0
  11555. mlsys/tasks/sys-fix-missing-boundary-mask/check.py +38 -0
  11556. mlsys/tasks/sys-fix-missing-boundary-mask/gen_fixtures.py +1 -0
  11557. mlsys/tasks/sys-fix-missing-boundary-mask/meta.json +22 -0
  11558. mlsys/tasks/sys-fix-missing-boundary-mask/solution_ref.py +15 -0
  11559. mlsys/tasks/sys-fix-missing-boundary-mask/starter.py +24 -0
  11560. mlsys/tasks/sys-fix-missing-boundary-mask/task.md +74 -0
  11561. mlsys/tasks/sys-fix-missing-combine-weights/check.py +56 -0
  11562. mlsys/tasks/sys-fix-missing-combine-weights/gen_fixtures.py +1 -0
  11563. mlsys/tasks/sys-fix-missing-combine-weights/meta.json +22 -0
  11564. mlsys/tasks/sys-fix-missing-combine-weights/solution_ref.py +15 -0
  11565. mlsys/tasks/sys-fix-missing-combine-weights/starter.py +16 -0
  11566. mlsys/tasks/sys-fix-missing-combine-weights/task.md +70 -0
  11567. mlsys/tasks/sys-fix-missing-cross-rank-rescale-in-ring-merge/check.py +61 -0
  11568. mlsys/tasks/sys-fix-missing-cross-rank-rescale-in-ring-merge/gen_fixtures.py +1 -0
  11569. mlsys/tasks/sys-fix-missing-cross-rank-rescale-in-ring-merge/meta.json +22 -0
  11570. mlsys/tasks/sys-fix-missing-cross-rank-rescale-in-ring-merge/solution_ref.py +18 -0
  11571. mlsys/tasks/sys-fix-missing-cross-rank-rescale-in-ring-merge/starter.py +17 -0
  11572. mlsys/tasks/sys-fix-missing-cross-rank-rescale-in-ring-merge/task.md +90 -0
  11573. mlsys/tasks/sys-fix-missing-divide-by-n-in-all-reduce/check.py +22 -0
  11574. mlsys/tasks/sys-fix-missing-divide-by-n-in-all-reduce/gen_fixtures.py +1 -0
  11575. mlsys/tasks/sys-fix-missing-divide-by-n-in-all-reduce/meta.json +22 -0
  11576. mlsys/tasks/sys-fix-missing-divide-by-n-in-all-reduce/solution_ref.py +13 -0
  11577. mlsys/tasks/sys-fix-missing-divide-by-n-in-all-reduce/starter.py +13 -0
  11578. mlsys/tasks/sys-fix-missing-divide-by-n-in-all-reduce/task.md +52 -0
  11579. mlsys/tasks/sys-fix-overlap-that-violates-a-dependency/check.py +74 -0
  11580. mlsys/tasks/sys-fix-overlap-that-violates-a-dependency/gen_fixtures.py +1 -0
  11581. mlsys/tasks/sys-fix-overlap-that-violates-a-dependency/meta.json +22 -0
  11582. mlsys/tasks/sys-fix-overlap-that-violates-a-dependency/solution_ref.py +16 -0
  11583. mlsys/tasks/sys-fix-overlap-that-violates-a-dependency/starter.py +14 -0
  11584. mlsys/tasks/sys-fix-overlap-that-violates-a-dependency/task.md +55 -0
  11585. mlsys/tasks/sys-fix-pipeline-schedule-deadlock-ordering/check.py +56 -0
  11586. mlsys/tasks/sys-fix-pipeline-schedule-deadlock-ordering/gen_fixtures.py +1 -0
  11587. mlsys/tasks/sys-fix-pipeline-schedule-deadlock-ordering/meta.json +22 -0
  11588. mlsys/tasks/sys-fix-pipeline-schedule-deadlock-ordering/solution_ref.py +33 -0
  11589. mlsys/tasks/sys-fix-pipeline-schedule-deadlock-ordering/starter.py +38 -0
  11590. mlsys/tasks/sys-fix-pipeline-schedule-deadlock-ordering/task.md +68 -0
  11591. mlsys/tasks/sys-fix-post-softmax-masking-ordering-bug/check.py +30 -0
  11592. mlsys/tasks/sys-fix-post-softmax-masking-ordering-bug/gen_fixtures.py +1 -0
  11593. mlsys/tasks/sys-fix-post-softmax-masking-ordering-bug/meta.json +22 -0
  11594. mlsys/tasks/sys-fix-post-softmax-masking-ordering-bug/solution_ref.py +12 -0
  11595. mlsys/tasks/sys-fix-post-softmax-masking-ordering-bug/starter.py +14 -0
  11596. mlsys/tasks/sys-fix-post-softmax-masking-ordering-bug/task.md +39 -0
  11597. mlsys/tasks/sys-fix-reduce-scatter-chunk-offset-off-by-one/check.py +57 -0
  11598. mlsys/tasks/sys-fix-reduce-scatter-chunk-offset-off-by-one/gen_fixtures.py +1 -0
  11599. mlsys/tasks/sys-fix-reduce-scatter-chunk-offset-off-by-one/meta.json +22 -0
  11600. mlsys/tasks/sys-fix-reduce-scatter-chunk-offset-off-by-one/solution_ref.py +15 -0
  11601. mlsys/tasks/sys-fix-reduce-scatter-chunk-offset-off-by-one/starter.py +16 -0
  11602. mlsys/tasks/sys-fix-reduce-scatter-chunk-offset-off-by-one/task.md +68 -0
  11603. mlsys/tasks/sys-fix-ref-count-use-after-free-on-shared-prefix/check.py +100 -0
  11604. mlsys/tasks/sys-fix-ref-count-use-after-free-on-shared-prefix/gen_fixtures.py +1 -0
  11605. mlsys/tasks/sys-fix-ref-count-use-after-free-on-shared-prefix/meta.json +24 -0
  11606. mlsys/tasks/sys-fix-ref-count-use-after-free-on-shared-prefix/solution_ref.py +65 -0
  11607. mlsys/tasks/sys-fix-ref-count-use-after-free-on-shared-prefix/starter.py +46 -0
  11608. mlsys/tasks/sys-fix-ref-count-use-after-free-on-shared-prefix/task.md +48 -0
  11609. mlsys/tasks/sys-fix-row-parallel-missing-all-reduce/check.py +52 -0
  11610. mlsys/tasks/sys-fix-row-parallel-missing-all-reduce/gen_fixtures.py +1 -0
  11611. mlsys/tasks/sys-fix-row-parallel-missing-all-reduce/meta.json +22 -0
  11612. mlsys/tasks/sys-fix-row-parallel-missing-all-reduce/solution_ref.py +10 -0
  11613. mlsys/tasks/sys-fix-row-parallel-missing-all-reduce/starter.py +9 -0
  11614. mlsys/tasks/sys-fix-row-parallel-missing-all-reduce/task.md +99 -0
  11615. mlsys/tasks/sys-fix-the-missing-accumulator-rescale/check.py +22 -0
  11616. mlsys/tasks/sys-fix-the-missing-accumulator-rescale/gen_fixtures.py +1 -0
  11617. mlsys/tasks/sys-fix-the-missing-accumulator-rescale/meta.json +22 -0
  11618. mlsys/tasks/sys-fix-the-missing-accumulator-rescale/solution_ref.py +38 -0
  11619. mlsys/tasks/sys-fix-the-missing-accumulator-rescale/starter.py +6 -0
  11620. mlsys/tasks/sys-fix-the-missing-accumulator-rescale/task.md +65 -0
  11621. mlsys/tasks/sys-fix-wrong-kv-head-interleave-repeat-vs-tile/check.py +28 -0
  11622. mlsys/tasks/sys-fix-wrong-kv-head-interleave-repeat-vs-tile/gen_fixtures.py +1 -0
  11623. mlsys/tasks/sys-fix-wrong-kv-head-interleave-repeat-vs-tile/meta.json +22 -0
  11624. mlsys/tasks/sys-fix-wrong-kv-head-interleave-repeat-vs-tile/solution_ref.py +6 -0
  11625. mlsys/tasks/sys-fix-wrong-kv-head-interleave-repeat-vs-tile/starter.py +8 -0
  11626. mlsys/tasks/sys-fix-wrong-kv-head-interleave-repeat-vs-tile/task.md +67 -0
  11627. mlsys/tasks/sys-fix-wrong-residual-on-rejection/check.py +64 -0
  11628. mlsys/tasks/sys-fix-wrong-residual-on-rejection/gen_fixtures.py +2 -0
  11629. mlsys/tasks/sys-fix-wrong-residual-on-rejection/meta.json +22 -0
  11630. mlsys/tasks/sys-fix-wrong-residual-on-rejection/solution_ref.py +12 -0
  11631. mlsys/tasks/sys-fix-wrong-residual-on-rejection/starter.py +13 -0
  11632. mlsys/tasks/sys-fix-wrong-residual-on-rejection/task.md +81 -0
  11633. mlsys/tasks/sys-fix-wrong-scale-axis-in-quant-matmul/check.py +31 -0
  11634. mlsys/tasks/sys-fix-wrong-scale-axis-in-quant-matmul/gen_fixtures.py +1 -0
  11635. mlsys/tasks/sys-fix-wrong-scale-axis-in-quant-matmul/meta.json +22 -0
  11636. mlsys/tasks/sys-fix-wrong-scale-axis-in-quant-matmul/solution_ref.py +14 -0
  11637. mlsys/tasks/sys-fix-wrong-scale-axis-in-quant-matmul/starter.py +14 -0
  11638. mlsys/tasks/sys-fix-wrong-scale-axis-in-quant-matmul/task.md +54 -0
  11639. mlsys/tasks/sys-fix-zero-2-reduce-scatter-wrong-owner/check.py +52 -0
  11640. mlsys/tasks/sys-fix-zero-2-reduce-scatter-wrong-owner/gen_fixtures.py +1 -0
  11641. mlsys/tasks/sys-fix-zero-2-reduce-scatter-wrong-owner/meta.json +22 -0
  11642. mlsys/tasks/sys-fix-zero-2-reduce-scatter-wrong-owner/solution_ref.py +10 -0
  11643. mlsys/tasks/sys-fix-zero-2-reduce-scatter-wrong-owner/starter.py +9 -0
  11644. mlsys/tasks/sys-fix-zero-2-reduce-scatter-wrong-owner/task.md +56 -0
  11645. mlsys/tasks/sys-fp16-vs-bf16-overflow-underflow-classification/check.py +76 -0
  11646. mlsys/tasks/sys-fp16-vs-bf16-overflow-underflow-classification/gen_fixtures.py +1 -0
  11647. mlsys/tasks/sys-fp16-vs-bf16-overflow-underflow-classification/meta.json +22 -0
  11648. mlsys/tasks/sys-fp16-vs-bf16-overflow-underflow-classification/solution_ref.py +37 -0
  11649. mlsys/tasks/sys-fp16-vs-bf16-overflow-underflow-classification/starter.py +12 -0
  11650. mlsys/tasks/sys-fp16-vs-bf16-overflow-underflow-classification/task.md +68 -0
  11651. mlsys/tasks/sys-fp32-master-weight-update-equivalence/check.py +45 -0
  11652. mlsys/tasks/sys-fp32-master-weight-update-equivalence/gen_fixtures.py +1 -0
  11653. mlsys/tasks/sys-fp32-master-weight-update-equivalence/meta.json +22 -0
  11654. mlsys/tasks/sys-fp32-master-weight-update-equivalence/solution_ref.py +8 -0
  11655. mlsys/tasks/sys-fp32-master-weight-update-equivalence/starter.py +4 -0
  11656. mlsys/tasks/sys-fp32-master-weight-update-equivalence/task.md +79 -0
  11657. mlsys/tasks/sys-fp8-e4m3-e5m2-round-trip/check.py +37 -0
  11658. mlsys/tasks/sys-fp8-e4m3-e5m2-round-trip/gen_fixtures.py +1 -0
  11659. mlsys/tasks/sys-fp8-e4m3-e5m2-round-trip/meta.json +22 -0
  11660. mlsys/tasks/sys-fp8-e4m3-e5m2-round-trip/solution_ref.py +10 -0
  11661. mlsys/tasks/sys-fp8-e4m3-e5m2-round-trip/starter.py +10 -0
  11662. mlsys/tasks/sys-fp8-e4m3-e5m2-round-trip/task.md +77 -0
  11663. mlsys/tasks/sys-fraction-of-skippable-kv-tiles-per-mask/check.py +74 -0
  11664. mlsys/tasks/sys-fraction-of-skippable-kv-tiles-per-mask/gen_fixtures.py +1 -0
  11665. mlsys/tasks/sys-fraction-of-skippable-kv-tiles-per-mask/meta.json +22 -0
  11666. mlsys/tasks/sys-fraction-of-skippable-kv-tiles-per-mask/solution_ref.py +18 -0
  11667. mlsys/tasks/sys-fraction-of-skippable-kv-tiles-per-mask/starter.py +13 -0
  11668. mlsys/tasks/sys-fraction-of-skippable-kv-tiles-per-mask/task.md +85 -0
  11669. mlsys/tasks/sys-fragmentation-waste-fraction-paged-vs-preallocated/check.py +35 -0
  11670. mlsys/tasks/sys-fragmentation-waste-fraction-paged-vs-preallocated/gen_fixtures.py +1 -0
  11671. mlsys/tasks/sys-fragmentation-waste-fraction-paged-vs-preallocated/meta.json +22 -0
  11672. mlsys/tasks/sys-fragmentation-waste-fraction-paged-vs-preallocated/solution_ref.py +13 -0
  11673. mlsys/tasks/sys-fragmentation-waste-fraction-paged-vs-preallocated/starter.py +2 -0
  11674. mlsys/tasks/sys-fragmentation-waste-fraction-paged-vs-preallocated/task.md +75 -0
  11675. mlsys/tasks/sys-full-allocator-under-adversarial-mixed-batch/check.py +115 -0
  11676. mlsys/tasks/sys-full-allocator-under-adversarial-mixed-batch/gen_fixtures.py +1 -0
  11677. mlsys/tasks/sys-full-allocator-under-adversarial-mixed-batch/meta.json +22 -0
  11678. mlsys/tasks/sys-full-allocator-under-adversarial-mixed-batch/solution_ref.py +54 -0
  11679. mlsys/tasks/sys-full-allocator-under-adversarial-mixed-batch/starter.py +2 -0
  11680. mlsys/tasks/sys-full-allocator-under-adversarial-mixed-batch/task.md +89 -0
  11681. mlsys/tasks/sys-full-double-tiled-flashattention-forward/check.py +92 -0
  11682. mlsys/tasks/sys-full-double-tiled-flashattention-forward/gen_fixtures.py +1 -0
  11683. mlsys/tasks/sys-full-double-tiled-flashattention-forward/meta.json +32 -0
  11684. mlsys/tasks/sys-full-double-tiled-flashattention-forward/solution_ref.py +43 -0
  11685. mlsys/tasks/sys-full-double-tiled-flashattention-forward/starter.py +4 -0
  11686. mlsys/tasks/sys-full-double-tiled-flashattention-forward/task.md +97 -0
  11687. mlsys/tasks/sys-full-tiled-dq-dk-dv-backward/check.py +50 -0
  11688. mlsys/tasks/sys-full-tiled-dq-dk-dv-backward/gen_fixtures.py +1 -0
  11689. mlsys/tasks/sys-full-tiled-dq-dk-dv-backward/meta.json +22 -0
  11690. mlsys/tasks/sys-full-tiled-dq-dk-dv-backward/solution_ref.py +41 -0
  11691. mlsys/tasks/sys-full-tiled-dq-dk-dv-backward/starter.py +4 -0
  11692. mlsys/tasks/sys-full-tiled-dq-dk-dv-backward/task.md +103 -0
  11693. mlsys/tasks/sys-fuse-bias-gelu-single-pass/check.py +35 -0
  11694. mlsys/tasks/sys-fuse-bias-gelu-single-pass/gen_fixtures.py +1 -0
  11695. mlsys/tasks/sys-fuse-bias-gelu-single-pass/meta.json +27 -0
  11696. mlsys/tasks/sys-fuse-bias-gelu-single-pass/solution_ref.py +6 -0
  11697. mlsys/tasks/sys-fuse-bias-gelu-single-pass/starter.py +4 -0
  11698. mlsys/tasks/sys-fuse-bias-gelu-single-pass/task.md +43 -0
  11699. mlsys/tasks/sys-fuse-layernorm-via-welford-single-pass/check.py +56 -0
  11700. mlsys/tasks/sys-fuse-layernorm-via-welford-single-pass/gen_fixtures.py +2 -0
  11701. mlsys/tasks/sys-fuse-layernorm-via-welford-single-pass/meta.json +27 -0
  11702. mlsys/tasks/sys-fuse-layernorm-via-welford-single-pass/solution_ref.py +33 -0
  11703. mlsys/tasks/sys-fuse-layernorm-via-welford-single-pass/starter.py +15 -0
  11704. mlsys/tasks/sys-fuse-layernorm-via-welford-single-pass/task.md +99 -0
  11705. mlsys/tasks/sys-general-gqa-broadcast/check.py +57 -0
  11706. mlsys/tasks/sys-general-gqa-broadcast/gen_fixtures.py +2 -0
  11707. mlsys/tasks/sys-general-gqa-broadcast/meta.json +22 -0
  11708. mlsys/tasks/sys-general-gqa-broadcast/solution_ref.py +27 -0
  11709. mlsys/tasks/sys-general-gqa-broadcast/starter.py +13 -0
  11710. mlsys/tasks/sys-general-gqa-broadcast/task.md +75 -0
  11711. mlsys/tasks/sys-generate-recompile-guards/check.py +37 -0
  11712. mlsys/tasks/sys-generate-recompile-guards/gen_fixtures.py +1 -0
  11713. mlsys/tasks/sys-generate-recompile-guards/meta.json +22 -0
  11714. mlsys/tasks/sys-generate-recompile-guards/solution_ref.py +19 -0
  11715. mlsys/tasks/sys-generate-recompile-guards/starter.py +16 -0
  11716. mlsys/tasks/sys-generate-recompile-guards/task.md +35 -0
  11717. mlsys/tasks/sys-goodput-under-latency-slo/check.py +67 -0
  11718. mlsys/tasks/sys-goodput-under-latency-slo/gen_fixtures.py +1 -0
  11719. mlsys/tasks/sys-goodput-under-latency-slo/meta.json +22 -0
  11720. mlsys/tasks/sys-goodput-under-latency-slo/solution_ref.py +14 -0
  11721. mlsys/tasks/sys-goodput-under-latency-slo/starter.py +14 -0
  11722. mlsys/tasks/sys-goodput-under-latency-slo/task.md +68 -0
  11723. mlsys/tasks/sys-gpipe-bubble-fraction-formula/check.py +32 -0
  11724. mlsys/tasks/sys-gpipe-bubble-fraction-formula/gen_fixtures.py +1 -0
  11725. mlsys/tasks/sys-gpipe-bubble-fraction-formula/meta.json +22 -0
  11726. mlsys/tasks/sys-gpipe-bubble-fraction-formula/solution_ref.py +10 -0
  11727. mlsys/tasks/sys-gpipe-bubble-fraction-formula/starter.py +9 -0
  11728. mlsys/tasks/sys-gpipe-bubble-fraction-formula/task.md +61 -0
  11729. mlsys/tasks/sys-gpipe-vs-1f1b-peak-activation-memory/check.py +40 -0
  11730. mlsys/tasks/sys-gpipe-vs-1f1b-peak-activation-memory/gen_fixtures.py +1 -0
  11731. mlsys/tasks/sys-gpipe-vs-1f1b-peak-activation-memory/meta.json +22 -0
  11732. mlsys/tasks/sys-gpipe-vs-1f1b-peak-activation-memory/solution_ref.py +7 -0
  11733. mlsys/tasks/sys-gpipe-vs-1f1b-peak-activation-memory/starter.py +2 -0
  11734. mlsys/tasks/sys-gpipe-vs-1f1b-peak-activation-memory/task.md +58 -0
  11735. mlsys/tasks/sys-gradient-accumulation-equals-larger-batch/check.py +46 -0
  11736. mlsys/tasks/sys-gradient-accumulation-equals-larger-batch/gen_fixtures.py +1 -0
  11737. mlsys/tasks/sys-gradient-accumulation-equals-larger-batch/meta.json +22 -0
  11738. mlsys/tasks/sys-gradient-accumulation-equals-larger-batch/solution_ref.py +16 -0
  11739. mlsys/tasks/sys-gradient-accumulation-equals-larger-batch/starter.py +13 -0
  11740. mlsys/tasks/sys-gradient-accumulation-equals-larger-batch/task.md +64 -0
  11741. mlsys/tasks/sys-greedy-speculative-argmax-equivalence/check.py +42 -0
  11742. mlsys/tasks/sys-greedy-speculative-argmax-equivalence/gen_fixtures.py +1 -0
  11743. mlsys/tasks/sys-greedy-speculative-argmax-equivalence/meta.json +22 -0
  11744. mlsys/tasks/sys-greedy-speculative-argmax-equivalence/solution_ref.py +11 -0
  11745. mlsys/tasks/sys-greedy-speculative-argmax-equivalence/starter.py +4 -0
  11746. mlsys/tasks/sys-greedy-speculative-argmax-equivalence/task.md +55 -0
  11747. mlsys/tasks/sys-grid-block-coverage-of-n/check.py +33 -0
  11748. mlsys/tasks/sys-grid-block-coverage-of-n/gen_fixtures.py +1 -0
  11749. mlsys/tasks/sys-grid-block-coverage-of-n/meta.json +22 -0
  11750. mlsys/tasks/sys-grid-block-coverage-of-n/solution_ref.py +10 -0
  11751. mlsys/tasks/sys-grid-block-coverage-of-n/starter.py +4 -0
  11752. mlsys/tasks/sys-grid-block-coverage-of-n/task.md +42 -0
  11753. mlsys/tasks/sys-group-wise-quant-packing/check.py +39 -0
  11754. mlsys/tasks/sys-group-wise-quant-packing/gen_fixtures.py +1 -0
  11755. mlsys/tasks/sys-group-wise-quant-packing/meta.json +22 -0
  11756. mlsys/tasks/sys-group-wise-quant-packing/solution_ref.py +18 -0
  11757. mlsys/tasks/sys-group-wise-quant-packing/starter.py +5 -0
  11758. mlsys/tasks/sys-group-wise-quant-packing/task.md +69 -0
  11759. mlsys/tasks/sys-identify-all-reduce-f-g-placement/check.py +66 -0
  11760. mlsys/tasks/sys-identify-all-reduce-f-g-placement/gen_fixtures.py +1 -0
  11761. mlsys/tasks/sys-identify-all-reduce-f-g-placement/meta.json +22 -0
  11762. mlsys/tasks/sys-identify-all-reduce-f-g-placement/solution_ref.py +49 -0
  11763. mlsys/tasks/sys-identify-all-reduce-f-g-placement/starter.py +11 -0
  11764. mlsys/tasks/sys-identify-all-reduce-f-g-placement/task.md +94 -0
  11765. mlsys/tasks/sys-ieee-fp16-bf16-encode-decode/check.py +31 -0
  11766. mlsys/tasks/sys-ieee-fp16-bf16-encode-decode/gen_fixtures.py +1 -0
  11767. mlsys/tasks/sys-ieee-fp16-bf16-encode-decode/meta.json +27 -0
  11768. mlsys/tasks/sys-ieee-fp16-bf16-encode-decode/solution_ref.py +8 -0
  11769. mlsys/tasks/sys-ieee-fp16-bf16-encode-decode/starter.py +4 -0
  11770. mlsys/tasks/sys-ieee-fp16-bf16-encode-decode/task.md +70 -0
  11771. mlsys/tasks/sys-int4-pack-unpack-two-per-byte/check.py +42 -0
  11772. mlsys/tasks/sys-int4-pack-unpack-two-per-byte/gen_fixtures.py +1 -0
  11773. mlsys/tasks/sys-int4-pack-unpack-two-per-byte/meta.json +28 -0
  11774. mlsys/tasks/sys-int4-pack-unpack-two-per-byte/solution_ref.py +21 -0
  11775. mlsys/tasks/sys-int4-pack-unpack-two-per-byte/starter.py +7 -0
  11776. mlsys/tasks/sys-int4-pack-unpack-two-per-byte/task.md +63 -0
  11777. mlsys/tasks/sys-int8-quantized-matmul-error/check.py +41 -0
  11778. mlsys/tasks/sys-int8-quantized-matmul-error/gen_fixtures.py +1 -0
  11779. mlsys/tasks/sys-int8-quantized-matmul-error/meta.json +22 -0
  11780. mlsys/tasks/sys-int8-quantized-matmul-error/solution_ref.py +15 -0
  11781. mlsys/tasks/sys-int8-quantized-matmul-error/starter.py +6 -0
  11782. mlsys/tasks/sys-int8-quantized-matmul-error/task.md +71 -0
  11783. mlsys/tasks/sys-interleaved-1f1b-bubble-reduction/check.py +30 -0
  11784. mlsys/tasks/sys-interleaved-1f1b-bubble-reduction/gen_fixtures.py +1 -0
  11785. mlsys/tasks/sys-interleaved-1f1b-bubble-reduction/meta.json +22 -0
  11786. mlsys/tasks/sys-interleaved-1f1b-bubble-reduction/solution_ref.py +4 -0
  11787. mlsys/tasks/sys-interleaved-1f1b-bubble-reduction/starter.py +2 -0
  11788. mlsys/tasks/sys-interleaved-1f1b-bubble-reduction/task.md +66 -0
  11789. mlsys/tasks/sys-join-on-finish-continuous-batching/check.py +65 -0
  11790. mlsys/tasks/sys-join-on-finish-continuous-batching/gen_fixtures.py +1 -0
  11791. mlsys/tasks/sys-join-on-finish-continuous-batching/meta.json +22 -0
  11792. mlsys/tasks/sys-join-on-finish-continuous-batching/solution_ref.py +31 -0
  11793. mlsys/tasks/sys-join-on-finish-continuous-batching/starter.py +3 -0
  11794. mlsys/tasks/sys-join-on-finish-continuous-batching/task.md +73 -0
  11795. mlsys/tasks/sys-kv-budget-admission-control/check.py +75 -0
  11796. mlsys/tasks/sys-kv-budget-admission-control/gen_fixtures.py +1 -0
  11797. mlsys/tasks/sys-kv-budget-admission-control/meta.json +22 -0
  11798. mlsys/tasks/sys-kv-budget-admission-control/solution_ref.py +23 -0
  11799. mlsys/tasks/sys-kv-budget-admission-control/starter.py +2 -0
  11800. mlsys/tasks/sys-kv-budget-admission-control/task.md +66 -0
  11801. mlsys/tasks/sys-kv-byte-accounting-for-full-config/check.py +33 -0
  11802. mlsys/tasks/sys-kv-byte-accounting-for-full-config/gen_fixtures.py +1 -0
  11803. mlsys/tasks/sys-kv-byte-accounting-for-full-config/meta.json +22 -0
  11804. mlsys/tasks/sys-kv-byte-accounting-for-full-config/solution_ref.py +35 -0
  11805. mlsys/tasks/sys-kv-byte-accounting-for-full-config/starter.py +4 -0
  11806. mlsys/tasks/sys-kv-byte-accounting-for-full-config/task.md +45 -0
  11807. mlsys/tasks/sys-kv-cache-byte-size-formula/check.py +48 -0
  11808. mlsys/tasks/sys-kv-cache-byte-size-formula/gen_fixtures.py +2 -0
  11809. mlsys/tasks/sys-kv-cache-byte-size-formula/meta.json +27 -0
  11810. mlsys/tasks/sys-kv-cache-byte-size-formula/solution_ref.py +10 -0
  11811. mlsys/tasks/sys-kv-cache-byte-size-formula/starter.py +11 -0
  11812. mlsys/tasks/sys-kv-cache-byte-size-formula/task.md +75 -0
  11813. mlsys/tasks/sys-kv-cache-int8-quant-kl/check.py +45 -0
  11814. mlsys/tasks/sys-kv-cache-int8-quant-kl/gen_fixtures.py +1 -0
  11815. mlsys/tasks/sys-kv-cache-int8-quant-kl/meta.json +27 -0
  11816. mlsys/tasks/sys-kv-cache-int8-quant-kl/solution_ref.py +61 -0
  11817. mlsys/tasks/sys-kv-cache-int8-quant-kl/starter.py +28 -0
  11818. mlsys/tasks/sys-kv-cache-int8-quant-kl/task.md +89 -0
  11819. mlsys/tasks/sys-kv-cache-serialize-deserialize-round-trip/check.py +105 -0
  11820. mlsys/tasks/sys-kv-cache-serialize-deserialize-round-trip/gen_fixtures.py +1 -0
  11821. mlsys/tasks/sys-kv-cache-serialize-deserialize-round-trip/meta.json +23 -0
  11822. mlsys/tasks/sys-kv-cache-serialize-deserialize-round-trip/solution_ref.py +43 -0
  11823. mlsys/tasks/sys-kv-cache-serialize-deserialize-round-trip/starter.py +14 -0
  11824. mlsys/tasks/sys-kv-cache-serialize-deserialize-round-trip/task.md +73 -0
  11825. mlsys/tasks/sys-layout-assignment-access-count/check.py +64 -0
  11826. mlsys/tasks/sys-layout-assignment-access-count/gen_fixtures.py +1 -0
  11827. mlsys/tasks/sys-layout-assignment-access-count/meta.json +22 -0
  11828. mlsys/tasks/sys-layout-assignment-access-count/solution_ref.py +14 -0
  11829. mlsys/tasks/sys-layout-assignment-access-count/starter.py +3 -0
  11830. mlsys/tasks/sys-layout-assignment-access-count/task.md +73 -0
  11831. mlsys/tasks/sys-little-s-law-throughput-identity/check.py +19 -0
  11832. mlsys/tasks/sys-little-s-law-throughput-identity/gen_fixtures.py +1 -0
  11833. mlsys/tasks/sys-little-s-law-throughput-identity/meta.json +22 -0
  11834. mlsys/tasks/sys-little-s-law-throughput-identity/solution_ref.py +18 -0
  11835. mlsys/tasks/sys-little-s-law-throughput-identity/starter.py +4 -0
  11836. mlsys/tasks/sys-little-s-law-throughput-identity/task.md +46 -0
  11837. mlsys/tasks/sys-load-balancing-auxiliary-loss/check.py +45 -0
  11838. mlsys/tasks/sys-load-balancing-auxiliary-loss/gen_fixtures.py +1 -0
  11839. mlsys/tasks/sys-load-balancing-auxiliary-loss/meta.json +22 -0
  11840. mlsys/tasks/sys-load-balancing-auxiliary-loss/solution_ref.py +11 -0
  11841. mlsys/tasks/sys-load-balancing-auxiliary-loss/starter.py +4 -0
  11842. mlsys/tasks/sys-load-balancing-auxiliary-loss/task.md +78 -0
  11843. mlsys/tasks/sys-lookahead-n-gram-pool-update-verify/check.py +80 -0
  11844. mlsys/tasks/sys-lookahead-n-gram-pool-update-verify/gen_fixtures.py +1 -0
  11845. mlsys/tasks/sys-lookahead-n-gram-pool-update-verify/meta.json +22 -0
  11846. mlsys/tasks/sys-lookahead-n-gram-pool-update-verify/solution_ref.py +49 -0
  11847. mlsys/tasks/sys-lookahead-n-gram-pool-update-verify/starter.py +2 -0
  11848. mlsys/tasks/sys-lookahead-n-gram-pool-update-verify/task.md +58 -0
  11849. mlsys/tasks/sys-loop-fusion-reorder-equivalence/check.py +45 -0
  11850. mlsys/tasks/sys-loop-fusion-reorder-equivalence/gen_fixtures.py +1 -0
  11851. mlsys/tasks/sys-loop-fusion-reorder-equivalence/meta.json +22 -0
  11852. mlsys/tasks/sys-loop-fusion-reorder-equivalence/solution_ref.py +22 -0
  11853. mlsys/tasks/sys-loop-fusion-reorder-equivalence/starter.py +12 -0
  11854. mlsys/tasks/sys-loop-fusion-reorder-equivalence/task.md +66 -0
  11855. mlsys/tasks/sys-loop-tiling-preserves-result/check.py +33 -0
  11856. mlsys/tasks/sys-loop-tiling-preserves-result/gen_fixtures.py +1 -0
  11857. mlsys/tasks/sys-loop-tiling-preserves-result/meta.json +22 -0
  11858. mlsys/tasks/sys-loop-tiling-preserves-result/solution_ref.py +22 -0
  11859. mlsys/tasks/sys-loop-tiling-preserves-result/starter.py +6 -0
  11860. mlsys/tasks/sys-loop-tiling-preserves-result/task.md +70 -0
  11861. mlsys/tasks/sys-loss-scaling-inf-nan-handling/check.py +78 -0
  11862. mlsys/tasks/sys-loss-scaling-inf-nan-handling/gen_fixtures.py +1 -0
  11863. mlsys/tasks/sys-loss-scaling-inf-nan-handling/meta.json +22 -0
  11864. mlsys/tasks/sys-loss-scaling-inf-nan-handling/solution_ref.py +11 -0
  11865. mlsys/tasks/sys-loss-scaling-inf-nan-handling/starter.py +15 -0
  11866. mlsys/tasks/sys-loss-scaling-inf-nan-handling/task.md +75 -0
  11867. mlsys/tasks/sys-medusa-multi-head-candidate-verification/check.py +66 -0
  11868. mlsys/tasks/sys-medusa-multi-head-candidate-verification/gen_fixtures.py +1 -0
  11869. mlsys/tasks/sys-medusa-multi-head-candidate-verification/meta.json +22 -0
  11870. mlsys/tasks/sys-medusa-multi-head-candidate-verification/solution_ref.py +24 -0
  11871. mlsys/tasks/sys-medusa-multi-head-candidate-verification/starter.py +2 -0
  11872. mlsys/tasks/sys-medusa-multi-head-candidate-verification/task.md +80 -0
  11873. mlsys/tasks/sys-megatron-attention-head-sharding/check.py +45 -0
  11874. mlsys/tasks/sys-megatron-attention-head-sharding/gen_fixtures.py +1 -0
  11875. mlsys/tasks/sys-megatron-attention-head-sharding/meta.json +22 -0
  11876. mlsys/tasks/sys-megatron-attention-head-sharding/solution_ref.py +28 -0
  11877. mlsys/tasks/sys-megatron-attention-head-sharding/starter.py +6 -0
  11878. mlsys/tasks/sys-megatron-attention-head-sharding/task.md +89 -0
  11879. mlsys/tasks/sys-mha-gqa-head-pooling-conversion/check.py +62 -0
  11880. mlsys/tasks/sys-mha-gqa-head-pooling-conversion/gen_fixtures.py +2 -0
  11881. mlsys/tasks/sys-mha-gqa-head-pooling-conversion/meta.json +22 -0
  11882. mlsys/tasks/sys-mha-gqa-head-pooling-conversion/solution_ref.py +24 -0
  11883. mlsys/tasks/sys-mha-gqa-head-pooling-conversion/starter.py +17 -0
  11884. mlsys/tasks/sys-mha-gqa-head-pooling-conversion/task.md +76 -0
  11885. mlsys/tasks/sys-model-activation-memory-with-without-checkpointing/check.py +29 -0
  11886. mlsys/tasks/sys-model-activation-memory-with-without-checkpointing/gen_fixtures.py +1 -0
  11887. mlsys/tasks/sys-model-activation-memory-with-without-checkpointing/meta.json +22 -0
  11888. mlsys/tasks/sys-model-activation-memory-with-without-checkpointing/solution_ref.py +23 -0
  11889. mlsys/tasks/sys-model-activation-memory-with-without-checkpointing/starter.py +2 -0
  11890. mlsys/tasks/sys-model-activation-memory-with-without-checkpointing/task.md +34 -0
  11891. mlsys/tasks/sys-model-all-to-all-comm-volume-for-ep/check.py +33 -0
  11892. mlsys/tasks/sys-model-all-to-all-comm-volume-for-ep/gen_fixtures.py +1 -0
  11893. mlsys/tasks/sys-model-all-to-all-comm-volume-for-ep/meta.json +22 -0
  11894. mlsys/tasks/sys-model-all-to-all-comm-volume-for-ep/solution_ref.py +3 -0
  11895. mlsys/tasks/sys-model-all-to-all-comm-volume-for-ep/starter.py +2 -0
  11896. mlsys/tasks/sys-model-all-to-all-comm-volume-for-ep/task.md +53 -0
  11897. mlsys/tasks/sys-model-alpha-beta-cost-per-collective/check.py +79 -0
  11898. mlsys/tasks/sys-model-alpha-beta-cost-per-collective/gen_fixtures.py +1 -0
  11899. mlsys/tasks/sys-model-alpha-beta-cost-per-collective/meta.json +22 -0
  11900. mlsys/tasks/sys-model-alpha-beta-cost-per-collective/solution_ref.py +38 -0
  11901. mlsys/tasks/sys-model-alpha-beta-cost-per-collective/starter.py +9 -0
  11902. mlsys/tasks/sys-model-alpha-beta-cost-per-collective/task.md +83 -0
  11903. mlsys/tasks/sys-model-hbm-traffic-ratio-vs-naive/check.py +51 -0
  11904. mlsys/tasks/sys-model-hbm-traffic-ratio-vs-naive/gen_fixtures.py +1 -0
  11905. mlsys/tasks/sys-model-hbm-traffic-ratio-vs-naive/meta.json +27 -0
  11906. mlsys/tasks/sys-model-hbm-traffic-ratio-vs-naive/solution_ref.py +49 -0
  11907. mlsys/tasks/sys-model-hbm-traffic-ratio-vs-naive/starter.py +13 -0
  11908. mlsys/tasks/sys-model-hbm-traffic-ratio-vs-naive/task.md +75 -0
  11909. mlsys/tasks/sys-model-ring-attention-comm-volume/check.py +28 -0
  11910. mlsys/tasks/sys-model-ring-attention-comm-volume/gen_fixtures.py +1 -0
  11911. mlsys/tasks/sys-model-ring-attention-comm-volume/meta.json +22 -0
  11912. mlsys/tasks/sys-model-ring-attention-comm-volume/solution_ref.py +4 -0
  11913. mlsys/tasks/sys-model-ring-attention-comm-volume/starter.py +2 -0
  11914. mlsys/tasks/sys-model-ring-attention-comm-volume/task.md +82 -0
  11915. mlsys/tasks/sys-model-speedup-from-acceptance-draft-cost/check.py +37 -0
  11916. mlsys/tasks/sys-model-speedup-from-acceptance-draft-cost/gen_fixtures.py +1 -0
  11917. mlsys/tasks/sys-model-speedup-from-acceptance-draft-cost/meta.json +22 -0
  11918. mlsys/tasks/sys-model-speedup-from-acceptance-draft-cost/solution_ref.py +10 -0
  11919. mlsys/tasks/sys-model-speedup-from-acceptance-draft-cost/starter.py +17 -0
  11920. mlsys/tasks/sys-model-speedup-from-acceptance-draft-cost/task.md +74 -0
  11921. mlsys/tasks/sys-model-tp-comm-volume-per-layer/check.py +31 -0
  11922. mlsys/tasks/sys-model-tp-comm-volume-per-layer/gen_fixtures.py +1 -0
  11923. mlsys/tasks/sys-model-tp-comm-volume-per-layer/meta.json +22 -0
  11924. mlsys/tasks/sys-model-tp-comm-volume-per-layer/solution_ref.py +2 -0
  11925. mlsys/tasks/sys-model-tp-comm-volume-per-layer/starter.py +2 -0
  11926. mlsys/tasks/sys-model-tp-comm-volume-per-layer/task.md +41 -0
  11927. mlsys/tasks/sys-model-traffic-saved-by-fusion/check.py +52 -0
  11928. mlsys/tasks/sys-model-traffic-saved-by-fusion/gen_fixtures.py +2 -0
  11929. mlsys/tasks/sys-model-traffic-saved-by-fusion/meta.json +27 -0
  11930. mlsys/tasks/sys-model-traffic-saved-by-fusion/solution_ref.py +8 -0
  11931. mlsys/tasks/sys-model-traffic-saved-by-fusion/starter.py +12 -0
  11932. mlsys/tasks/sys-model-traffic-saved-by-fusion/task.md +77 -0
  11933. mlsys/tasks/sys-model-zero-3-comm-vs-dp/check.py +47 -0
  11934. mlsys/tasks/sys-model-zero-3-comm-vs-dp/gen_fixtures.py +1 -0
  11935. mlsys/tasks/sys-model-zero-3-comm-vs-dp/meta.json +22 -0
  11936. mlsys/tasks/sys-model-zero-3-comm-vs-dp/solution_ref.py +9 -0
  11937. mlsys/tasks/sys-model-zero-3-comm-vs-dp/starter.py +2 -0
  11938. mlsys/tasks/sys-model-zero-3-comm-vs-dp/task.md +65 -0
  11939. mlsys/tasks/sys-modified-rejection-sampling-matches-target/check.py +86 -0
  11940. mlsys/tasks/sys-modified-rejection-sampling-matches-target/gen_fixtures.py +2 -0
  11941. mlsys/tasks/sys-modified-rejection-sampling-matches-target/meta.json +22 -0
  11942. mlsys/tasks/sys-modified-rejection-sampling-matches-target/solution_ref.py +46 -0
  11943. mlsys/tasks/sys-modified-rejection-sampling-matches-target/starter.py +18 -0
  11944. mlsys/tasks/sys-modified-rejection-sampling-matches-target/task.md +80 -0
  11945. mlsys/tasks/sys-mqa-single-kv-head-attention/check.py +53 -0
  11946. mlsys/tasks/sys-mqa-single-kv-head-attention/gen_fixtures.py +1 -0
  11947. mlsys/tasks/sys-mqa-single-kv-head-attention/meta.json +22 -0
  11948. mlsys/tasks/sys-mqa-single-kv-head-attention/solution_ref.py +30 -0
  11949. mlsys/tasks/sys-mqa-single-kv-head-attention/starter.py +12 -0
  11950. mlsys/tasks/sys-mqa-single-kv-head-attention/task.md +91 -0
  11951. mlsys/tasks/sys-occupancy-from-resource-limits/check.py +47 -0
  11952. mlsys/tasks/sys-occupancy-from-resource-limits/gen_fixtures.py +1 -0
  11953. mlsys/tasks/sys-occupancy-from-resource-limits/meta.json +22 -0
  11954. mlsys/tasks/sys-occupancy-from-resource-limits/solution_ref.py +27 -0
  11955. mlsys/tasks/sys-occupancy-from-resource-limits/starter.py +11 -0
  11956. mlsys/tasks/sys-occupancy-from-resource-limits/task.md +89 -0
  11957. mlsys/tasks/sys-one-pass-online-softmax-vector/check.py +63 -0
  11958. mlsys/tasks/sys-one-pass-online-softmax-vector/gen_fixtures.py +1 -0
  11959. mlsys/tasks/sys-one-pass-online-softmax-vector/meta.json +27 -0
  11960. mlsys/tasks/sys-one-pass-online-softmax-vector/solution_ref.py +33 -0
  11961. mlsys/tasks/sys-one-pass-online-softmax-vector/starter.py +9 -0
  11962. mlsys/tasks/sys-one-pass-online-softmax-vector/task.md +78 -0
  11963. mlsys/tasks/sys-oom-feasibility-classification/check.py +89 -0
  11964. mlsys/tasks/sys-oom-feasibility-classification/gen_fixtures.py +1 -0
  11965. mlsys/tasks/sys-oom-feasibility-classification/meta.json +22 -0
  11966. mlsys/tasks/sys-oom-feasibility-classification/solution_ref.py +20 -0
  11967. mlsys/tasks/sys-oom-feasibility-classification/starter.py +6 -0
  11968. mlsys/tasks/sys-oom-feasibility-classification/task.md +82 -0
  11969. mlsys/tasks/sys-optimal-sqrt-n-checkpoint-placement/check.py +43 -0
  11970. mlsys/tasks/sys-optimal-sqrt-n-checkpoint-placement/gen_fixtures.py +1 -0
  11971. mlsys/tasks/sys-optimal-sqrt-n-checkpoint-placement/meta.json +22 -0
  11972. mlsys/tasks/sys-optimal-sqrt-n-checkpoint-placement/solution_ref.py +21 -0
  11973. mlsys/tasks/sys-optimal-sqrt-n-checkpoint-placement/starter.py +2 -0
  11974. mlsys/tasks/sys-optimal-sqrt-n-checkpoint-placement/task.md +67 -0
  11975. mlsys/tasks/sys-overlap-vs-serial-time-model/check.py +43 -0
  11976. mlsys/tasks/sys-overlap-vs-serial-time-model/gen_fixtures.py +1 -0
  11977. mlsys/tasks/sys-overlap-vs-serial-time-model/meta.json +27 -0
  11978. mlsys/tasks/sys-overlap-vs-serial-time-model/solution_ref.py +22 -0
  11979. mlsys/tasks/sys-overlap-vs-serial-time-model/starter.py +2 -0
  11980. mlsys/tasks/sys-overlap-vs-serial-time-model/task.md +51 -0
  11981. mlsys/tasks/sys-peak-intermediate-buffer-element-count/check.py +36 -0
  11982. mlsys/tasks/sys-peak-intermediate-buffer-element-count/gen_fixtures.py +1 -0
  11983. mlsys/tasks/sys-peak-intermediate-buffer-element-count/meta.json +22 -0
  11984. mlsys/tasks/sys-peak-intermediate-buffer-element-count/solution_ref.py +28 -0
  11985. mlsys/tasks/sys-peak-intermediate-buffer-element-count/starter.py +4 -0
  11986. mlsys/tasks/sys-peak-intermediate-buffer-element-count/task.md +67 -0
  11987. mlsys/tasks/sys-peak-memory-timeline-reconstruction/check.py +64 -0
  11988. mlsys/tasks/sys-peak-memory-timeline-reconstruction/gen_fixtures.py +1 -0
  11989. mlsys/tasks/sys-peak-memory-timeline-reconstruction/meta.json +22 -0
  11990. mlsys/tasks/sys-peak-memory-timeline-reconstruction/solution_ref.py +16 -0
  11991. mlsys/tasks/sys-peak-memory-timeline-reconstruction/starter.py +2 -0
  11992. mlsys/tasks/sys-peak-memory-timeline-reconstruction/task.md +67 -0
  11993. mlsys/tasks/sys-per-layer-activation-memory-formula/check.py +29 -0
  11994. mlsys/tasks/sys-per-layer-activation-memory-formula/gen_fixtures.py +1 -0
  11995. mlsys/tasks/sys-per-layer-activation-memory-formula/meta.json +22 -0
  11996. mlsys/tasks/sys-per-layer-activation-memory-formula/solution_ref.py +2 -0
  11997. mlsys/tasks/sys-per-layer-activation-memory-formula/starter.py +8 -0
  11998. mlsys/tasks/sys-per-layer-activation-memory-formula/task.md +69 -0
  11999. mlsys/tasks/sys-per-tensor-vs-per-channel-error/check.py +65 -0
  12000. mlsys/tasks/sys-per-tensor-vs-per-channel-error/gen_fixtures.py +1 -0
  12001. mlsys/tasks/sys-per-tensor-vs-per-channel-error/meta.json +32 -0
  12002. mlsys/tasks/sys-per-tensor-vs-per-channel-error/solution_ref.py +15 -0
  12003. mlsys/tasks/sys-per-tensor-vs-per-channel-error/starter.py +4 -0
  12004. mlsys/tasks/sys-per-tensor-vs-per-channel-error/task.md +84 -0
  12005. mlsys/tasks/sys-pick-optimal-collective-by-message-size/check.py +40 -0
  12006. mlsys/tasks/sys-pick-optimal-collective-by-message-size/gen_fixtures.py +1 -0
  12007. mlsys/tasks/sys-pick-optimal-collective-by-message-size/meta.json +22 -0
  12008. mlsys/tasks/sys-pick-optimal-collective-by-message-size/solution_ref.py +16 -0
  12009. mlsys/tasks/sys-pick-optimal-collective-by-message-size/starter.py +2 -0
  12010. mlsys/tasks/sys-pick-optimal-collective-by-message-size/task.md +59 -0
  12011. mlsys/tasks/sys-predict-admitted-preempted-vector-per-step/check.py +102 -0
  12012. mlsys/tasks/sys-predict-admitted-preempted-vector-per-step/gen_fixtures.py +1 -0
  12013. mlsys/tasks/sys-predict-admitted-preempted-vector-per-step/meta.json +22 -0
  12014. mlsys/tasks/sys-predict-admitted-preempted-vector-per-step/solution_ref.py +41 -0
  12015. mlsys/tasks/sys-predict-admitted-preempted-vector-per-step/starter.py +18 -0
  12016. mlsys/tasks/sys-predict-admitted-preempted-vector-per-step/task.md +91 -0
  12017. mlsys/tasks/sys-predict-block-status-grid-for-a-mask/check.py +42 -0
  12018. mlsys/tasks/sys-predict-block-status-grid-for-a-mask/gen_fixtures.py +1 -0
  12019. mlsys/tasks/sys-predict-block-status-grid-for-a-mask/meta.json +22 -0
  12020. mlsys/tasks/sys-predict-block-status-grid-for-a-mask/solution_ref.py +13 -0
  12021. mlsys/tasks/sys-predict-block-status-grid-for-a-mask/starter.py +5 -0
  12022. mlsys/tasks/sys-predict-block-status-grid-for-a-mask/task.md +88 -0
  12023. mlsys/tasks/sys-predict-kv-tile-sram-feasibility-map/check.py +31 -0
  12024. mlsys/tasks/sys-predict-kv-tile-sram-feasibility-map/gen_fixtures.py +1 -0
  12025. mlsys/tasks/sys-predict-kv-tile-sram-feasibility-map/meta.json +22 -0
  12026. mlsys/tasks/sys-predict-kv-tile-sram-feasibility-map/solution_ref.py +7 -0
  12027. mlsys/tasks/sys-predict-kv-tile-sram-feasibility-map/starter.py +2 -0
  12028. mlsys/tasks/sys-predict-kv-tile-sram-feasibility-map/task.md +59 -0
  12029. mlsys/tasks/sys-predict-max-seq-batch-fitting-a-budget/check.py +78 -0
  12030. mlsys/tasks/sys-predict-max-seq-batch-fitting-a-budget/gen_fixtures.py +1 -0
  12031. mlsys/tasks/sys-predict-max-seq-batch-fitting-a-budget/meta.json +22 -0
  12032. mlsys/tasks/sys-predict-max-seq-batch-fitting-a-budget/solution_ref.py +20 -0
  12033. mlsys/tasks/sys-predict-max-seq-batch-fitting-a-budget/starter.py +2 -0
  12034. mlsys/tasks/sys-predict-max-seq-batch-fitting-a-budget/task.md +77 -0
  12035. mlsys/tasks/sys-predict-occupancy-from-regs-smem/check.py +66 -0
  12036. mlsys/tasks/sys-predict-occupancy-from-regs-smem/gen_fixtures.py +1 -0
  12037. mlsys/tasks/sys-predict-occupancy-from-regs-smem/meta.json +22 -0
  12038. mlsys/tasks/sys-predict-occupancy-from-regs-smem/solution_ref.py +19 -0
  12039. mlsys/tasks/sys-predict-occupancy-from-regs-smem/starter.py +2 -0
  12040. mlsys/tasks/sys-predict-occupancy-from-regs-smem/task.md +86 -0
  12041. mlsys/tasks/sys-predict-overflow-pattern-of-three-softmaxes/check.py +71 -0
  12042. mlsys/tasks/sys-predict-overflow-pattern-of-three-softmaxes/gen_fixtures.py +1 -0
  12043. mlsys/tasks/sys-predict-overflow-pattern-of-three-softmaxes/meta.json +22 -0
  12044. mlsys/tasks/sys-predict-overflow-pattern-of-three-softmaxes/solution_ref.py +46 -0
  12045. mlsys/tasks/sys-predict-overflow-pattern-of-three-softmaxes/starter.py +18 -0
  12046. mlsys/tasks/sys-predict-overflow-pattern-of-three-softmaxes/task.md +75 -0
  12047. mlsys/tasks/sys-predict-padding-effect-on-bank-conflicts/check.py +45 -0
  12048. mlsys/tasks/sys-predict-padding-effect-on-bank-conflicts/gen_fixtures.py +2 -0
  12049. mlsys/tasks/sys-predict-padding-effect-on-bank-conflicts/meta.json +22 -0
  12050. mlsys/tasks/sys-predict-padding-effect-on-bank-conflicts/solution_ref.py +6 -0
  12051. mlsys/tasks/sys-predict-padding-effect-on-bank-conflicts/starter.py +7 -0
  12052. mlsys/tasks/sys-predict-padding-effect-on-bank-conflicts/task.md +77 -0
  12053. mlsys/tasks/sys-preemption-resume-correctness/check.py +50 -0
  12054. mlsys/tasks/sys-preemption-resume-correctness/gen_fixtures.py +1 -0
  12055. mlsys/tasks/sys-preemption-resume-correctness/meta.json +22 -0
  12056. mlsys/tasks/sys-preemption-resume-correctness/solution_ref.py +33 -0
  12057. mlsys/tasks/sys-preemption-resume-correctness/starter.py +2 -0
  12058. mlsys/tasks/sys-preemption-resume-correctness/task.md +80 -0
  12059. mlsys/tasks/sys-prefill-vs-decode-roofline-placement/check.py +72 -0
  12060. mlsys/tasks/sys-prefill-vs-decode-roofline-placement/gen_fixtures.py +1 -0
  12061. mlsys/tasks/sys-prefill-vs-decode-roofline-placement/meta.json +27 -0
  12062. mlsys/tasks/sys-prefill-vs-decode-roofline-placement/solution_ref.py +72 -0
  12063. mlsys/tasks/sys-prefill-vs-decode-roofline-placement/starter.py +40 -0
  12064. mlsys/tasks/sys-prefill-vs-decode-roofline-placement/task.md +99 -0
  12065. mlsys/tasks/sys-prefix-cache-resume-equality/check.py +99 -0
  12066. mlsys/tasks/sys-prefix-cache-resume-equality/gen_fixtures.py +1 -0
  12067. mlsys/tasks/sys-prefix-cache-resume-equality/meta.json +27 -0
  12068. mlsys/tasks/sys-prefix-cache-resume-equality/solution_ref.py +57 -0
  12069. mlsys/tasks/sys-prefix-cache-resume-equality/starter.py +15 -0
  12070. mlsys/tasks/sys-prefix-cache-resume-equality/task.md +77 -0
  12071. mlsys/tasks/sys-prove-block-merge-associativity-across-bracketings/check.py +64 -0
  12072. mlsys/tasks/sys-prove-block-merge-associativity-across-bracketings/gen_fixtures.py +1 -0
  12073. mlsys/tasks/sys-prove-block-merge-associativity-across-bracketings/meta.json +22 -0
  12074. mlsys/tasks/sys-prove-block-merge-associativity-across-bracketings/solution_ref.py +50 -0
  12075. mlsys/tasks/sys-prove-block-merge-associativity-across-bracketings/starter.py +4 -0
  12076. mlsys/tasks/sys-prove-block-merge-associativity-across-bracketings/task.md +71 -0
  12077. mlsys/tasks/sys-quantized-logit-argmax-preservation/check.py +69 -0
  12078. mlsys/tasks/sys-quantized-logit-argmax-preservation/gen_fixtures.py +1 -0
  12079. mlsys/tasks/sys-quantized-logit-argmax-preservation/meta.json +27 -0
  12080. mlsys/tasks/sys-quantized-logit-argmax-preservation/solution_ref.py +18 -0
  12081. mlsys/tasks/sys-quantized-logit-argmax-preservation/starter.py +15 -0
  12082. mlsys/tasks/sys-quantized-logit-argmax-preservation/task.md +75 -0
  12083. mlsys/tasks/sys-rank-memory-spaces-by-latency/check.py +24 -0
  12084. mlsys/tasks/sys-rank-memory-spaces-by-latency/gen_fixtures.py +1 -0
  12085. mlsys/tasks/sys-rank-memory-spaces-by-latency/meta.json +22 -0
  12086. mlsys/tasks/sys-rank-memory-spaces-by-latency/solution_ref.py +15 -0
  12087. mlsys/tasks/sys-rank-memory-spaces-by-latency/starter.py +5 -0
  12088. mlsys/tasks/sys-rank-memory-spaces-by-latency/task.md +27 -0
  12089. mlsys/tasks/sys-rank-ops-by-roofline-limited-throughput/check.py +65 -0
  12090. mlsys/tasks/sys-rank-ops-by-roofline-limited-throughput/gen_fixtures.py +2 -0
  12091. mlsys/tasks/sys-rank-ops-by-roofline-limited-throughput/meta.json +22 -0
  12092. mlsys/tasks/sys-rank-ops-by-roofline-limited-throughput/solution_ref.py +17 -0
  12093. mlsys/tasks/sys-rank-ops-by-roofline-limited-throughput/starter.py +11 -0
  12094. mlsys/tasks/sys-rank-ops-by-roofline-limited-throughput/task.md +68 -0
  12095. mlsys/tasks/sys-recompute-in-backward-mlp-block/check.py +42 -0
  12096. mlsys/tasks/sys-recompute-in-backward-mlp-block/gen_fixtures.py +1 -0
  12097. mlsys/tasks/sys-recompute-in-backward-mlp-block/meta.json +28 -0
  12098. mlsys/tasks/sys-recompute-in-backward-mlp-block/solution_ref.py +18 -0
  12099. mlsys/tasks/sys-recompute-in-backward-mlp-block/starter.py +7 -0
  12100. mlsys/tasks/sys-recompute-in-backward-mlp-block/task.md +66 -0
  12101. mlsys/tasks/sys-recompute-s-from-stored-logsumexp/check.py +51 -0
  12102. mlsys/tasks/sys-recompute-s-from-stored-logsumexp/gen_fixtures.py +1 -0
  12103. mlsys/tasks/sys-recompute-s-from-stored-logsumexp/meta.json +22 -0
  12104. mlsys/tasks/sys-recompute-s-from-stored-logsumexp/solution_ref.py +15 -0
  12105. mlsys/tasks/sys-recompute-s-from-stored-logsumexp/starter.py +10 -0
  12106. mlsys/tasks/sys-recompute-s-from-stored-logsumexp/task.md +67 -0
  12107. mlsys/tasks/sys-recompute-vs-swap-preemption-cost/check.py +76 -0
  12108. mlsys/tasks/sys-recompute-vs-swap-preemption-cost/gen_fixtures.py +1 -0
  12109. mlsys/tasks/sys-recompute-vs-swap-preemption-cost/meta.json +22 -0
  12110. mlsys/tasks/sys-recompute-vs-swap-preemption-cost/solution_ref.py +25 -0
  12111. mlsys/tasks/sys-recompute-vs-swap-preemption-cost/starter.py +2 -0
  12112. mlsys/tasks/sys-recompute-vs-swap-preemption-cost/task.md +69 -0
  12113. mlsys/tasks/sys-reconstruct-logical-kv-from-block-table/check.py +40 -0
  12114. mlsys/tasks/sys-reconstruct-logical-kv-from-block-table/gen_fixtures.py +1 -0
  12115. mlsys/tasks/sys-reconstruct-logical-kv-from-block-table/meta.json +22 -0
  12116. mlsys/tasks/sys-reconstruct-logical-kv-from-block-table/solution_ref.py +10 -0
  12117. mlsys/tasks/sys-reconstruct-logical-kv-from-block-table/starter.py +5 -0
  12118. mlsys/tasks/sys-reconstruct-logical-kv-from-block-table/task.md +83 -0
  12119. mlsys/tasks/sys-reconstruct-output-from-per-block-m-l-o-logs/check.py +75 -0
  12120. mlsys/tasks/sys-reconstruct-output-from-per-block-m-l-o-logs/gen_fixtures.py +1 -0
  12121. mlsys/tasks/sys-reconstruct-output-from-per-block-m-l-o-logs/meta.json +22 -0
  12122. mlsys/tasks/sys-reconstruct-output-from-per-block-m-l-o-logs/solution_ref.py +44 -0
  12123. mlsys/tasks/sys-reconstruct-output-from-per-block-m-l-o-logs/starter.py +19 -0
  12124. mlsys/tasks/sys-reconstruct-output-from-per-block-m-l-o-logs/task.md +88 -0
  12125. mlsys/tasks/sys-reconstruct-output-from-per-rank-m-l-o/check.py +59 -0
  12126. mlsys/tasks/sys-reconstruct-output-from-per-rank-m-l-o/gen_fixtures.py +1 -0
  12127. mlsys/tasks/sys-reconstruct-output-from-per-rank-m-l-o/meta.json +22 -0
  12128. mlsys/tasks/sys-reconstruct-output-from-per-rank-m-l-o/solution_ref.py +15 -0
  12129. mlsys/tasks/sys-reconstruct-output-from-per-rank-m-l-o/starter.py +4 -0
  12130. mlsys/tasks/sys-reconstruct-output-from-per-rank-m-l-o/task.md +91 -0
  12131. mlsys/tasks/sys-recursive-halving-doubling-all-reduce/check.py +49 -0
  12132. mlsys/tasks/sys-recursive-halving-doubling-all-reduce/gen_fixtures.py +1 -0
  12133. mlsys/tasks/sys-recursive-halving-doubling-all-reduce/meta.json +22 -0
  12134. mlsys/tasks/sys-recursive-halving-doubling-all-reduce/solution_ref.py +22 -0
  12135. mlsys/tasks/sys-recursive-halving-doubling-all-reduce/starter.py +4 -0
  12136. mlsys/tasks/sys-recursive-halving-doubling-all-reduce/task.md +68 -0
  12137. mlsys/tasks/sys-reduce-scatter-correctness/check.py +73 -0
  12138. mlsys/tasks/sys-reduce-scatter-correctness/gen_fixtures.py +1 -0
  12139. mlsys/tasks/sys-reduce-scatter-correctness/meta.json +22 -0
  12140. mlsys/tasks/sys-reduce-scatter-correctness/solution_ref.py +12 -0
  12141. mlsys/tasks/sys-reduce-scatter-correctness/starter.py +4 -0
  12142. mlsys/tasks/sys-reduce-scatter-correctness/task.md +68 -0
  12143. mlsys/tasks/sys-repair-un-rescaled-o-accumulator-across-kv-tiles/check.py +55 -0
  12144. mlsys/tasks/sys-repair-un-rescaled-o-accumulator-across-kv-tiles/gen_fixtures.py +1 -0
  12145. mlsys/tasks/sys-repair-un-rescaled-o-accumulator-across-kv-tiles/meta.json +22 -0
  12146. mlsys/tasks/sys-repair-un-rescaled-o-accumulator-across-kv-tiles/solution_ref.py +28 -0
  12147. mlsys/tasks/sys-repair-un-rescaled-o-accumulator-across-kv-tiles/starter.py +29 -0
  12148. mlsys/tasks/sys-repair-un-rescaled-o-accumulator-across-kv-tiles/task.md +94 -0
  12149. mlsys/tasks/sys-ring-all-gather-correctness/check.py +32 -0
  12150. mlsys/tasks/sys-ring-all-gather-correctness/gen_fixtures.py +1 -0
  12151. mlsys/tasks/sys-ring-all-gather-correctness/meta.json +22 -0
  12152. mlsys/tasks/sys-ring-all-gather-correctness/solution_ref.py +8 -0
  12153. mlsys/tasks/sys-ring-all-gather-correctness/starter.py +4 -0
  12154. mlsys/tasks/sys-ring-all-gather-correctness/task.md +64 -0
  12155. mlsys/tasks/sys-ring-all-reduce-bytes-moved-model/check.py +32 -0
  12156. mlsys/tasks/sys-ring-all-reduce-bytes-moved-model/gen_fixtures.py +1 -0
  12157. mlsys/tasks/sys-ring-all-reduce-bytes-moved-model/meta.json +22 -0
  12158. mlsys/tasks/sys-ring-all-reduce-bytes-moved-model/solution_ref.py +6 -0
  12159. mlsys/tasks/sys-ring-all-reduce-bytes-moved-model/starter.py +3 -0
  12160. mlsys/tasks/sys-ring-all-reduce-bytes-moved-model/task.md +48 -0
  12161. mlsys/tasks/sys-ring-all-reduce-correctness/check.py +38 -0
  12162. mlsys/tasks/sys-ring-all-reduce-correctness/gen_fixtures.py +1 -0
  12163. mlsys/tasks/sys-ring-all-reduce-correctness/meta.json +22 -0
  12164. mlsys/tasks/sys-ring-all-reduce-correctness/solution_ref.py +39 -0
  12165. mlsys/tasks/sys-ring-all-reduce-correctness/starter.py +14 -0
  12166. mlsys/tasks/sys-ring-all-reduce-correctness/task.md +63 -0
  12167. mlsys/tasks/sys-ring-attention-equals-full-attention/check.py +42 -0
  12168. mlsys/tasks/sys-ring-attention-equals-full-attention/gen_fixtures.py +1 -0
  12169. mlsys/tasks/sys-ring-attention-equals-full-attention/meta.json +22 -0
  12170. mlsys/tasks/sys-ring-attention-equals-full-attention/solution_ref.py +42 -0
  12171. mlsys/tasks/sys-ring-attention-equals-full-attention/starter.py +4 -0
  12172. mlsys/tasks/sys-ring-attention-equals-full-attention/task.md +94 -0
  12173. mlsys/tasks/sys-search-tile-sizes-minimizing-cache-misses/check.py +66 -0
  12174. mlsys/tasks/sys-search-tile-sizes-minimizing-cache-misses/gen_fixtures.py +1 -0
  12175. mlsys/tasks/sys-search-tile-sizes-minimizing-cache-misses/meta.json +22 -0
  12176. mlsys/tasks/sys-search-tile-sizes-minimizing-cache-misses/solution_ref.py +43 -0
  12177. mlsys/tasks/sys-search-tile-sizes-minimizing-cache-misses/starter.py +2 -0
  12178. mlsys/tasks/sys-search-tile-sizes-minimizing-cache-misses/task.md +66 -0
  12179. mlsys/tasks/sys-selective-checkpointing-attention-only/check.py +78 -0
  12180. mlsys/tasks/sys-selective-checkpointing-attention-only/gen_fixtures.py +1 -0
  12181. mlsys/tasks/sys-selective-checkpointing-attention-only/meta.json +27 -0
  12182. mlsys/tasks/sys-selective-checkpointing-attention-only/solution_ref.py +21 -0
  12183. mlsys/tasks/sys-selective-checkpointing-attention-only/starter.py +4 -0
  12184. mlsys/tasks/sys-selective-checkpointing-attention-only/task.md +91 -0
  12185. mlsys/tasks/sys-shared-memory-bank-conflict-count/check.py +38 -0
  12186. mlsys/tasks/sys-shared-memory-bank-conflict-count/gen_fixtures.py +1 -0
  12187. mlsys/tasks/sys-shared-memory-bank-conflict-count/meta.json +22 -0
  12188. mlsys/tasks/sys-shared-memory-bank-conflict-count/solution_ref.py +8 -0
  12189. mlsys/tasks/sys-shared-memory-bank-conflict-count/starter.py +2 -0
  12190. mlsys/tasks/sys-shared-memory-bank-conflict-count/task.md +48 -0
  12191. mlsys/tasks/sys-simulate-fp16-round-to-nearest-even/check.py +73 -0
  12192. mlsys/tasks/sys-simulate-fp16-round-to-nearest-even/gen_fixtures.py +1 -0
  12193. mlsys/tasks/sys-simulate-fp16-round-to-nearest-even/meta.json +22 -0
  12194. mlsys/tasks/sys-simulate-fp16-round-to-nearest-even/solution_ref.py +63 -0
  12195. mlsys/tasks/sys-simulate-fp16-round-to-nearest-even/starter.py +6 -0
  12196. mlsys/tasks/sys-simulate-fp16-round-to-nearest-even/task.md +65 -0
  12197. mlsys/tasks/sys-simulate-gpipe-schedule-count-bubbles/check.py +61 -0
  12198. mlsys/tasks/sys-simulate-gpipe-schedule-count-bubbles/gen_fixtures.py +1 -0
  12199. mlsys/tasks/sys-simulate-gpipe-schedule-count-bubbles/meta.json +22 -0
  12200. mlsys/tasks/sys-simulate-gpipe-schedule-count-bubbles/solution_ref.py +62 -0
  12201. mlsys/tasks/sys-simulate-gpipe-schedule-count-bubbles/starter.py +17 -0
  12202. mlsys/tasks/sys-simulate-gpipe-schedule-count-bubbles/task.md +75 -0
  12203. mlsys/tasks/sys-single-q-tile-over-all-kv-with-online-softmax/check.py +70 -0
  12204. mlsys/tasks/sys-single-q-tile-over-all-kv-with-online-softmax/gen_fixtures.py +2 -0
  12205. mlsys/tasks/sys-single-q-tile-over-all-kv-with-online-softmax/meta.json +27 -0
  12206. mlsys/tasks/sys-single-q-tile-over-all-kv-with-online-softmax/solution_ref.py +40 -0
  12207. mlsys/tasks/sys-single-q-tile-over-all-kv-with-online-softmax/starter.py +14 -0
  12208. mlsys/tasks/sys-single-q-tile-over-all-kv-with-online-softmax/task.md +79 -0
  12209. mlsys/tasks/sys-sliding-window-causal-attention/check.py +70 -0
  12210. mlsys/tasks/sys-sliding-window-causal-attention/fixtures/mask.npy +0 -0
  12211. mlsys/tasks/sys-sliding-window-causal-attention/gen_fixtures.py +27 -0
  12212. mlsys/tasks/sys-sliding-window-causal-attention/meta.json +24 -0
  12213. mlsys/tasks/sys-sliding-window-causal-attention/solution_ref.py +47 -0
  12214. mlsys/tasks/sys-sliding-window-causal-attention/starter.py +17 -0
  12215. mlsys/tasks/sys-sliding-window-causal-attention/task.md +88 -0
  12216. mlsys/tasks/sys-smoothquant-scale-migration-equivalence/check.py +68 -0
  12217. mlsys/tasks/sys-smoothquant-scale-migration-equivalence/gen_fixtures.py +1 -0
  12218. mlsys/tasks/sys-smoothquant-scale-migration-equivalence/meta.json +27 -0
  12219. mlsys/tasks/sys-smoothquant-scale-migration-equivalence/solution_ref.py +6 -0
  12220. mlsys/tasks/sys-smoothquant-scale-migration-equivalence/starter.py +4 -0
  12221. mlsys/tasks/sys-smoothquant-scale-migration-equivalence/task.md +81 -0
  12222. mlsys/tasks/sys-softmax-jacobian-identity-vectorized-explicit/check.py +74 -0
  12223. mlsys/tasks/sys-softmax-jacobian-identity-vectorized-explicit/gen_fixtures.py +1 -0
  12224. mlsys/tasks/sys-softmax-jacobian-identity-vectorized-explicit/meta.json +27 -0
  12225. mlsys/tasks/sys-softmax-jacobian-identity-vectorized-explicit/solution_ref.py +8 -0
  12226. mlsys/tasks/sys-softmax-jacobian-identity-vectorized-explicit/starter.py +4 -0
  12227. mlsys/tasks/sys-softmax-jacobian-identity-vectorized-explicit/task.md +66 -0
  12228. mlsys/tasks/sys-speedup-ceiling-from-fusing-two-ops/check.py +33 -0
  12229. mlsys/tasks/sys-speedup-ceiling-from-fusing-two-ops/gen_fixtures.py +1 -0
  12230. mlsys/tasks/sys-speedup-ceiling-from-fusing-two-ops/meta.json +22 -0
  12231. mlsys/tasks/sys-speedup-ceiling-from-fusing-two-ops/solution_ref.py +6 -0
  12232. mlsys/tasks/sys-speedup-ceiling-from-fusing-two-ops/starter.py +2 -0
  12233. mlsys/tasks/sys-speedup-ceiling-from-fusing-two-ops/task.md +68 -0
  12234. mlsys/tasks/sys-static-batch-step-count-baseline/check.py +48 -0
  12235. mlsys/tasks/sys-static-batch-step-count-baseline/gen_fixtures.py +1 -0
  12236. mlsys/tasks/sys-static-batch-step-count-baseline/meta.json +27 -0
  12237. mlsys/tasks/sys-static-batch-step-count-baseline/solution_ref.py +22 -0
  12238. mlsys/tasks/sys-static-batch-step-count-baseline/starter.py +4 -0
  12239. mlsys/tasks/sys-static-batch-step-count-baseline/task.md +44 -0
  12240. mlsys/tasks/sys-stochastic-rounding-unbiasedness/check.py +67 -0
  12241. mlsys/tasks/sys-stochastic-rounding-unbiasedness/gen_fixtures.py +1 -0
  12242. mlsys/tasks/sys-stochastic-rounding-unbiasedness/meta.json +22 -0
  12243. mlsys/tasks/sys-stochastic-rounding-unbiasedness/solution_ref.py +28 -0
  12244. mlsys/tasks/sys-stochastic-rounding-unbiasedness/starter.py +4 -0
  12245. mlsys/tasks/sys-stochastic-rounding-unbiasedness/task.md +71 -0
  12246. mlsys/tasks/sys-streaming-logsumexp-equals-full-logsumexp/check.py +77 -0
  12247. mlsys/tasks/sys-streaming-logsumexp-equals-full-logsumexp/gen_fixtures.py +1 -0
  12248. mlsys/tasks/sys-streaming-logsumexp-equals-full-logsumexp/meta.json +27 -0
  12249. mlsys/tasks/sys-streaming-logsumexp-equals-full-logsumexp/solution_ref.py +17 -0
  12250. mlsys/tasks/sys-streaming-logsumexp-equals-full-logsumexp/starter.py +12 -0
  12251. mlsys/tasks/sys-streaming-logsumexp-equals-full-logsumexp/task.md +67 -0
  12252. mlsys/tasks/sys-streamingllm-sink-window-retained-set/check.py +33 -0
  12253. mlsys/tasks/sys-streamingllm-sink-window-retained-set/gen_fixtures.py +1 -0
  12254. mlsys/tasks/sys-streamingllm-sink-window-retained-set/meta.json +22 -0
  12255. mlsys/tasks/sys-streamingllm-sink-window-retained-set/solution_ref.py +7 -0
  12256. mlsys/tasks/sys-streamingllm-sink-window-retained-set/starter.py +2 -0
  12257. mlsys/tasks/sys-streamingllm-sink-window-retained-set/task.md +52 -0
  12258. mlsys/tasks/sys-symmetric-int8-round-trip/check.py +76 -0
  12259. mlsys/tasks/sys-symmetric-int8-round-trip/fixtures/weights.npy +0 -0
  12260. mlsys/tasks/sys-symmetric-int8-round-trip/gen_fixtures.py +22 -0
  12261. mlsys/tasks/sys-symmetric-int8-round-trip/meta.json +30 -0
  12262. mlsys/tasks/sys-symmetric-int8-round-trip/solution_ref.py +32 -0
  12263. mlsys/tasks/sys-symmetric-int8-round-trip/starter.py +27 -0
  12264. mlsys/tasks/sys-symmetric-int8-round-trip/task.md +82 -0
  12265. mlsys/tasks/sys-throughput-optimal-queue-ordering/check.py +93 -0
  12266. mlsys/tasks/sys-throughput-optimal-queue-ordering/gen_fixtures.py +1 -0
  12267. mlsys/tasks/sys-throughput-optimal-queue-ordering/meta.json +22 -0
  12268. mlsys/tasks/sys-throughput-optimal-queue-ordering/solution_ref.py +49 -0
  12269. mlsys/tasks/sys-throughput-optimal-queue-ordering/starter.py +2 -0
  12270. mlsys/tasks/sys-throughput-optimal-queue-ordering/task.md +84 -0
  12271. mlsys/tasks/sys-tiled-matmul-global-traffic-vs-tile-size/check.py +57 -0
  12272. mlsys/tasks/sys-tiled-matmul-global-traffic-vs-tile-size/gen_fixtures.py +1 -0
  12273. mlsys/tasks/sys-tiled-matmul-global-traffic-vs-tile-size/meta.json +22 -0
  12274. mlsys/tasks/sys-tiled-matmul-global-traffic-vs-tile-size/solution_ref.py +17 -0
  12275. mlsys/tasks/sys-tiled-matmul-global-traffic-vs-tile-size/starter.py +8 -0
  12276. mlsys/tasks/sys-tiled-matmul-global-traffic-vs-tile-size/task.md +65 -0
  12277. mlsys/tasks/sys-tiled-vs-materialized-divergence-vs-block-size/check.py +53 -0
  12278. mlsys/tasks/sys-tiled-vs-materialized-divergence-vs-block-size/gen_fixtures.py +1 -0
  12279. mlsys/tasks/sys-tiled-vs-materialized-divergence-vs-block-size/meta.json +22 -0
  12280. mlsys/tasks/sys-tiled-vs-materialized-divergence-vs-block-size/solution_ref.py +47 -0
  12281. mlsys/tasks/sys-tiled-vs-materialized-divergence-vs-block-size/starter.py +6 -0
  12282. mlsys/tasks/sys-tiled-vs-materialized-divergence-vs-block-size/task.md +63 -0
  12283. mlsys/tasks/sys-top-k-gating-assignment/check.py +64 -0
  12284. mlsys/tasks/sys-top-k-gating-assignment/gen_fixtures.py +1 -0
  12285. mlsys/tasks/sys-top-k-gating-assignment/meta.json +27 -0
  12286. mlsys/tasks/sys-top-k-gating-assignment/solution_ref.py +34 -0
  12287. mlsys/tasks/sys-top-k-gating-assignment/starter.py +13 -0
  12288. mlsys/tasks/sys-top-k-gating-assignment/task.md +63 -0
  12289. mlsys/tasks/sys-total-training-memory-accounting/check.py +38 -0
  12290. mlsys/tasks/sys-total-training-memory-accounting/gen_fixtures.py +1 -0
  12291. mlsys/tasks/sys-total-training-memory-accounting/meta.json +22 -0
  12292. mlsys/tasks/sys-total-training-memory-accounting/solution_ref.py +29 -0
  12293. mlsys/tasks/sys-total-training-memory-accounting/starter.py +2 -0
  12294. mlsys/tasks/sys-total-training-memory-accounting/task.md +62 -0
  12295. mlsys/tasks/sys-tree-attention-mask-construction/check.py +43 -0
  12296. mlsys/tasks/sys-tree-attention-mask-construction/gen_fixtures.py +1 -0
  12297. mlsys/tasks/sys-tree-attention-mask-construction/meta.json +22 -0
  12298. mlsys/tasks/sys-tree-attention-mask-construction/solution_ref.py +14 -0
  12299. mlsys/tasks/sys-tree-attention-mask-construction/starter.py +4 -0
  12300. mlsys/tasks/sys-tree-attention-mask-construction/task.md +52 -0
  12301. mlsys/tasks/sys-tree-verification-longest-valid-prefix/check.py +90 -0
  12302. mlsys/tasks/sys-tree-verification-longest-valid-prefix/gen_fixtures.py +1 -0
  12303. mlsys/tasks/sys-tree-verification-longest-valid-prefix/meta.json +22 -0
  12304. mlsys/tasks/sys-tree-verification-longest-valid-prefix/solution_ref.py +24 -0
  12305. mlsys/tasks/sys-tree-verification-longest-valid-prefix/starter.py +2 -0
  12306. mlsys/tasks/sys-tree-verification-longest-valid-prefix/task.md +60 -0
  12307. mlsys/tasks/sys-verify-speculative-distribution-equals-target/check.py +70 -0
  12308. mlsys/tasks/sys-verify-speculative-distribution-equals-target/gen_fixtures.py +1 -0
  12309. mlsys/tasks/sys-verify-speculative-distribution-equals-target/meta.json +22 -0
  12310. mlsys/tasks/sys-verify-speculative-distribution-equals-target/solution_ref.py +30 -0
  12311. mlsys/tasks/sys-verify-speculative-distribution-equals-target/starter.py +4 -0
  12312. mlsys/tasks/sys-verify-speculative-distribution-equals-target/task.md +68 -0
  12313. mlsys/tasks/sys-vocab-parallel-embedding-logit-all-reduce/check.py +64 -0
  12314. mlsys/tasks/sys-vocab-parallel-embedding-logit-all-reduce/gen_fixtures.py +1 -0
  12315. mlsys/tasks/sys-vocab-parallel-embedding-logit-all-reduce/meta.json +22 -0
  12316. mlsys/tasks/sys-vocab-parallel-embedding-logit-all-reduce/solution_ref.py +26 -0
  12317. mlsys/tasks/sys-vocab-parallel-embedding-logit-all-reduce/starter.py +4 -0
  12318. mlsys/tasks/sys-vocab-parallel-embedding-logit-all-reduce/task.md +80 -0
  12319. mlsys/tasks/sys-warp-divergence-branch-count/check.py +35 -0
  12320. mlsys/tasks/sys-warp-divergence-branch-count/gen_fixtures.py +1 -0
  12321. mlsys/tasks/sys-warp-divergence-branch-count/meta.json +22 -0
  12322. mlsys/tasks/sys-warp-divergence-branch-count/solution_ref.py +14 -0
  12323. mlsys/tasks/sys-warp-divergence-branch-count/starter.py +4 -0
  12324. mlsys/tasks/sys-warp-divergence-branch-count/task.md +44 -0
  12325. mlsys/tasks/sys-which-zero-stage-fits-the-budget/check.py +61 -0
  12326. mlsys/tasks/sys-which-zero-stage-fits-the-budget/gen_fixtures.py +1 -0
  12327. mlsys/tasks/sys-which-zero-stage-fits-the-budget/meta.json +22 -0
  12328. mlsys/tasks/sys-which-zero-stage-fits-the-budget/solution_ref.py +22 -0
  12329. mlsys/tasks/sys-which-zero-stage-fits-the-budget/starter.py +14 -0
  12330. mlsys/tasks/sys-which-zero-stage-fits-the-budget/task.md +66 -0
  12331. mlsys/tasks/sys-zero-1-optimizer-state-partition/check.py +44 -0
  12332. mlsys/tasks/sys-zero-1-optimizer-state-partition/gen_fixtures.py +1 -0
  12333. mlsys/tasks/sys-zero-1-optimizer-state-partition/meta.json +22 -0
  12334. mlsys/tasks/sys-zero-1-optimizer-state-partition/solution_ref.py +44 -0
  12335. mlsys/tasks/sys-zero-1-optimizer-state-partition/starter.py +5 -0
  12336. mlsys/tasks/sys-zero-1-optimizer-state-partition/task.md +81 -0
  12337. mlsys/tasks/sys-zero-3-param-all-gather-on-demand/check.py +63 -0
  12338. mlsys/tasks/sys-zero-3-param-all-gather-on-demand/gen_fixtures.py +1 -0
  12339. mlsys/tasks/sys-zero-3-param-all-gather-on-demand/meta.json +22 -0
  12340. mlsys/tasks/sys-zero-3-param-all-gather-on-demand/solution_ref.py +15 -0
  12341. mlsys/tasks/sys-zero-3-param-all-gather-on-demand/starter.py +4 -0
  12342. mlsys/tasks/sys-zero-3-param-all-gather-on-demand/task.md +70 -0
  12343. mlsys/tasks/sys-zero-3-prefetch-exposed-comm-model/check.py +41 -0
  12344. mlsys/tasks/sys-zero-3-prefetch-exposed-comm-model/gen_fixtures.py +1 -0
  12345. mlsys/tasks/sys-zero-3-prefetch-exposed-comm-model/meta.json +22 -0
  12346. mlsys/tasks/sys-zero-3-prefetch-exposed-comm-model/solution_ref.py +8 -0
  12347. mlsys/tasks/sys-zero-3-prefetch-exposed-comm-model/starter.py +2 -0
  12348. mlsys/tasks/sys-zero-3-prefetch-exposed-comm-model/task.md +68 -0
  12349. mlsys/tasks/sys-zero-memory-formula-stages-1-2-3/check.py +58 -0
  12350. mlsys/tasks/sys-zero-memory-formula-stages-1-2-3/gen_fixtures.py +1 -0
  12351. mlsys/tasks/sys-zero-memory-formula-stages-1-2-3/meta.json +22 -0
  12352. mlsys/tasks/sys-zero-memory-formula-stages-1-2-3/solution_ref.py +36 -0
  12353. mlsys/tasks/sys-zero-memory-formula-stages-1-2-3/starter.py +8 -0
  12354. mlsys/tasks/sys-zero-memory-formula-stages-1-2-3/task.md +71 -0
  12355. mlsys/tasks/sys-zig-zag-causal-load-balancing/check.py +54 -0
  12356. mlsys/tasks/sys-zig-zag-causal-load-balancing/gen_fixtures.py +1 -0
  12357. mlsys/tasks/sys-zig-zag-causal-load-balancing/meta.json +22 -0
  12358. mlsys/tasks/sys-zig-zag-causal-load-balancing/solution_ref.py +28 -0
  12359. mlsys/tasks/sys-zig-zag-causal-load-balancing/starter.py +2 -0
  12360. mlsys/tasks/sys-zig-zag-causal-load-balancing/task.md +61 -0
  12361. mlsys_lab-0.1.0.dist-info/METADATA +179 -0
  12362. mlsys_lab-0.1.0.dist-info/RECORD +12365 -0
  12363. mlsys_lab-0.1.0.dist-info/WHEEL +4 -0
  12364. mlsys_lab-0.1.0.dist-info/entry_points.txt +2 -0
  12365. mlsys_lab-0.1.0.dist-info/licenses/LICENSE +21 -0
mlsys/sim/abi.py ADDED
@@ -0,0 +1,48 @@
1
+ """Deterministic C++ ABI model — the MLSYS VIRTUAL ABI (pinned LP64, Itanium).
2
+ Pure Python, identical on every machine (unlike ctypes.sizeof, which differs by
3
+ OS/compiler). Fixed type sizes + natural alignment + standard struct padding, so
4
+ 'predict the sizeof / offsets' has ONE right answer everywhere.
5
+ """
6
+ # pinned sizes/alignment (LP64: long = 8, pointer = 8) — natural alignment
7
+ SIZE = {"bool": 1, "char": 1, "signed char": 1, "unsigned char": 1,
8
+ "short": 2, "unsigned short": 2, "int": 4, "unsigned int": 4,
9
+ "long": 8, "unsigned long": 8, "long long": 8, "unsigned long long": 8,
10
+ "float": 4, "double": 8, "long double": 16, "pointer": 8}
11
+ ALIGN = dict(SIZE)
12
+
13
+
14
+ def _sz_al(t):
15
+ if t.endswith("*"):
16
+ return 8, 8 # any pointer
17
+ if t not in SIZE:
18
+ raise KeyError(f"unknown type {t!r}")
19
+ return SIZE[t], ALIGN[t]
20
+
21
+
22
+ def layout(fields, packed=False):
23
+ """fields: list of type names (e.g. ['char','int','double']) in declaration
24
+ order. Returns {size, alignment, offsets} under standard C/C++ layout.
25
+ packed=True disables padding (alignment 1)."""
26
+ offset = 0
27
+ max_align = 1
28
+ offsets = []
29
+ for t in fields:
30
+ sz, al = _sz_al(t)
31
+ if packed:
32
+ al = 1
33
+ pad = (-offset) % al
34
+ offset += pad
35
+ offsets.append(offset)
36
+ offset += sz
37
+ max_align = max(max_align, al)
38
+ tail = (-offset) % max_align # trailing padding to struct alignment
39
+ total = offset + tail
40
+ return {"size": total, "alignment": max_align, "offsets": offsets}
41
+
42
+
43
+ def sizeof(fields, packed=False):
44
+ return layout(fields, packed)["size"]
45
+
46
+
47
+ def offsetof(fields, i, packed=False):
48
+ return layout(fields, packed)["offsets"][i]
mlsys/sim/cache.py ADDED
@@ -0,0 +1,55 @@
1
+ """Deterministic set-associative cache simulator.
2
+ Runs identically on every machine (pure Python, no hardware). Tasks feed a trace
3
+ of byte addresses; the model returns exact hit/miss/eviction counts under LRU.
4
+ This is the MLSYS VIRTUAL CACHE — a pinned spec, the same for everyone.
5
+ """
6
+ from collections import OrderedDict
7
+
8
+
9
+ class Cache:
10
+ def __init__(self, line_bytes=64, sets=64, ways=8, policy="lru"):
11
+ assert policy in ("lru", "fifo")
12
+ self.line_bytes = line_bytes
13
+ self.sets = sets
14
+ self.ways = ways
15
+ self.policy = policy
16
+ self.reset()
17
+
18
+ def reset(self):
19
+ self._sets = [OrderedDict() for _ in range(self.sets)] # set -> {tag: True} MRU last
20
+ self.hits = 0
21
+ self.misses = 0
22
+ self.evictions = 0
23
+
24
+ def _index_tag(self, addr):
25
+ block = addr // self.line_bytes
26
+ return block % self.sets, block // self.sets
27
+
28
+ def access(self, addr):
29
+ """One access to a byte address. Returns True on hit, False on miss."""
30
+ idx, tag = self._index_tag(addr)
31
+ s = self._sets[idx]
32
+ if tag in s:
33
+ self.hits += 1
34
+ if self.policy == "lru":
35
+ s.move_to_end(tag)
36
+ return True
37
+ self.misses += 1
38
+ if len(s) >= self.ways:
39
+ s.popitem(last=False) # evict LRU/FIFO (oldest)
40
+ self.evictions += 1
41
+ s[tag] = True
42
+ return False
43
+
44
+ def run(self, addresses):
45
+ """Feed an iterable of byte addresses; return the summary dict."""
46
+ for a in addresses:
47
+ self.access(int(a))
48
+ total = self.hits + self.misses
49
+ return {"hits": self.hits, "misses": self.misses, "evictions": self.evictions,
50
+ "accesses": total, "miss_rate": (self.misses / total) if total else 0.0}
51
+
52
+
53
+ def simulate(addresses, line_bytes=64, sets=64, ways=8, policy="lru"):
54
+ """Convenience: build a fresh cache and run the trace. Deterministic."""
55
+ return Cache(line_bytes, sets, ways, policy).run(addresses)