You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 rivejä
490 B

1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
  1. #pragma once
  2. #include <stdio.h>
  3. #define GLOBAL_DIM 128
  4. typedef struct
  5. {
  6. int id;
  7. float *vec;
  8. } VecData;
  9. typedef struct
  10. {
  11. FILE *stream;
  12. char *filename;
  13. int offset;
  14. } FileContext;
  15. float vec_dist(VecData x, VecData y);
  16. FileContext *init_file_context(const char *filename);
  17. void read_4bytes(FileContext *ctx, void *dst);
  18. void read_vec_data(FileContext *ctx, void *dst);
  19. void read_id_data(FileContext *ctx, void *dst, size_t n);
  20. void free_file_context(FileContext *ctx);