File: features_int8.h

package info (click to toggle)
libocas 0.97%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 6,760 kB
  • sloc: ansic: 7,956; makefile: 103; sh: 7
file content (20 lines) | stat: -rw-r--r-- 631 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*-----------------------------------------------------------------------
 * features_int8.h: Helper functions for the OCAS solver working with 
 *                 INT8 features.
 *
 *-------------------------------------------------------------------- */

#ifndef _features_int8_h
#define _features_int8_h

#include <stdint.h>


extern int full_int8_compute_output( double *output, void* user_data );
extern int full_int8_add_new_cut( double *new_col_H, 
                       uint32_t *new_cut, 
                       uint32_t cut_length, 
                       uint32_t nSel,
                       void* user_data);

#endif