Files
cs220/src/assignments/assignment13/mod.rs
2023-08-26 00:30:22 +09:00

11 lines
478 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.sh 13` works fine.
//! See `assignment13/small_exercises_grade.rs` and `/scripts/grade.sh 13` for the test script.
pub mod small_exercises;
mod small_exercises_grade;