darknet/src/utils.h

54 lines
1.6 KiB
C
Raw Permalink Normal View History

2013-11-13 22:50:38 +04:00
#ifndef UTILS_H
#define UTILS_H
#include <stdio.h>
2014-10-22 01:49:18 +04:00
#include <time.h>
2017-06-08 23:47:31 +03:00
#include "darknet.h"
2013-11-13 22:50:38 +04:00
#include "list.h"
2017-10-03 01:17:48 +03:00
#define TIME(a) \
do { \
double start = what_time_is_it_now(); \
a; \
printf("%s took: %f seconds\n", #a, what_time_is_it_now() - start); \
} while (0)
#define TWO_PI 6.2831853071795864769252866f
2015-07-17 23:18:05 +03:00
2017-06-02 06:31:13 +03:00
double what_time_is_it_now();
2015-09-05 03:52:44 +03:00
void shuffle(void *arr, size_t n, size_t size);
void sorta_shuffle(void *arr, size_t n, size_t size, size_t sections);
2015-09-01 21:21:01 +03:00
void free_ptrs(void **ptrs, int n);
2015-02-24 05:52:05 +03:00
int alphanum_to_int(char c);
char int_to_alphanum(int i);
2016-05-07 02:25:16 +03:00
int read_int(int fd);
void write_int(int fd, int n);
void read_all(int fd, char *buffer, size_t bytes);
void write_all(int fd, char *buffer, size_t bytes);
2016-05-07 02:25:16 +03:00
int read_all_fail(int fd, char *buffer, size_t bytes);
int write_all_fail(int fd, char *buffer, size_t bytes);
void find_replace(char *str, char *orig, char *rep, char *output);
2013-11-13 22:50:38 +04:00
void malloc_error();
void file_error(char *s);
void strip(char *s);
void strip_char(char *s, char bad);
list *split_str(char *s, char delim);
char *fgetl(FILE *fp);
list *parse_csv_line(char *line);
char *copy_string(char *s);
int count_fields(char *line);
float *parse_fields(char *line, int n);
void translate_array(float *a, int n, float s);
2015-03-24 23:20:56 +03:00
float constrain(float min, float max, float a);
2016-06-03 01:25:24 +03:00
int constrain_int(int a, int min, int max);
2016-09-02 02:48:41 +03:00
float rand_scale(float s);
2016-03-01 00:54:12 +03:00
int rand_int(int min, int max);
2015-12-01 02:04:09 +03:00
void mean_arrays(float **a, int n, int els, float *avg);
2016-06-03 01:25:24 +03:00
float dist_array(float *a, float *b, int n, int sub);
float **one_hot_encode(float *a, int n, int k);
2014-10-22 01:49:18 +04:00
float sec(clock_t clocks);
2016-09-08 08:27:56 +03:00
void print_statistics(float *a, int n);
int int_index(int *a, int val, int n);
2015-04-24 20:27:50 +03:00
2013-11-13 22:50:38 +04:00
#endif