prophet 0.4.2

A neural network implementation with a focus on cache-efficiency and sequential performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module is used entirely for benchmarking internals
//! that should be excluded from running throught `cargo test`
//! which includes `#[bench]` marked crate-internal benches by default.
//! 
//! So for benchmarks to run the user currently has to type in
//! `cargo bench --features run_internal_benches`.

pub use prelude::*;

pub use test::{
	Bencher,
	black_box
};

mod neural_net;