From 72baef5d83ac885fbfed33c366fcc3021b602dbc Mon Sep 17 00:00:00 2001 From: A Date: Sun, 9 Nov 2025 18:32:32 -0500 Subject: [PATCH] Update README with file sync instructions Added instructions for syncing required files from Module 2. --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index a02884c..545e048 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,36 @@ Implement CUDA matrix multiplication with shared memory optimization for maximum File to edit: `project/run_fast_tensor.py` Implement missing functions and train models on all datasets to demonstrate performance improvements. +## Files + +This assignment requires the following files from Module 2. You can get these by running: + +```bash +python sync_previous_module.py ../Module-2 . +``` + +The files that will be synced are: + +- `minitorch/tensor_data.py` +- `minitorch/tensor_functions.py` +- `minitorch/tensor_ops.py` +- `minitorch/operators.py` +- `minitorch/scalar.py` +- `minitorch/scalar_functions.py` +- `minitorch/module.py` +- `minitorch/autodiff.py` +- `minitorch/module.py` +- `project/run_manual.py` +- `project/run_scalar.py` +- `project/run_tensor.py` +- `minitorch/operators.py` +- `minitorch/module.py` +- `minitorch/autodiff.py` +- `minitorch/tensor.py` +- `minitorch/datasets.py` +- `minitorch/testing.py` +- `minitorch/optim.py` + ## Documentation - **[Installation Guide](installation.md)** - Setup instructions including GPU configuration