File size: 382 Bytes
e8b8483 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | // Zero-parameter person classifier, 2 dims.
// Generated by rtl_gen.py; do not edit by hand.
//
// sum(pos) > sum(neg), on signed INT8 channels taken from the pooled feature
// vector. No threshold, so no constant appears anywhere in this module.
module person_d2 (
input signed [7:0] f48, f637,
output person_present
);
assign person_present = f48 > f637;
endmodule
|