• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wildjames / predictive_coding_rs / 26001628518

17 May 2026 08:18PM UTC coverage: 89.661% (+1.0%) from 88.629%
26001628518

Pull #18

github

web-flow
Merge 949159911 into ab068c7f4
Pull Request #18: Implement the remaining GPU kernels

225 of 243 new or added lines in 9 files covered. (92.59%)

6 existing lines in 2 files now uncovered.

2064 of 2302 relevant lines covered (89.66%)

14.31 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/model/model_utils.rs
1
//! Math utilities for predictive coding models.
2

3
use super::PredictiveCodingModel;
4
use crate::data_handling::TrainingDataset;
5

6
/// Choose a random index using the rng threadlocal generator, and set the model I/O accordingly.
UNCOV
7
pub fn set_rand_input_and_output(model: &mut PredictiveCodingModel, data: &dyn TrainingDataset) {
×
UNCOV
8
    let (input_values, output_values) = data.get_random_input_and_output();
×
9

UNCOV
10
    model.set_input(input_values);
×
UNCOV
11
    model.set_output(output_values);
×
UNCOV
12
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc