Files
cs220/src/assignments/assignment13/mod.rs
2023-08-21 19:43:04 +09:00

11 lines
460 B
Rust

//! Assignment 13: Parallelism.
//!
//! The primary goal of this assignment is to get used to data parallelism.
//!
//! Refer to your solution for assignment 09. You will implement the parallelized version of assignment 09.
//! You should fill out the `todo!()` placeholders in such a way that `/scripts/grade-13.sh` works fine.
//! See `assignment13_grade.rs` and `/scripts/grade-13.sh` for the test script.
pub mod small_problems;
mod small_problems_grade;