source:
soft/giet_vm/applications/rosenfeld/nrc2/include/nrlinalg.h
Last change on this file was 823, checked in by , 8 years ago | |
---|---|
File size: 874 bytes |
Rev | Line | |
---|---|---|
[772] | 1 | /* ------------------ */ |
2 | /* --- nrlinalg.h --- */ | |
3 | /* ------------------ */ | |
4 | ||
5 | /* | |
6 | * Copyright (c) 2000-2014, Lionel Lacassagne, All rights reserved | |
7 | * Univ Paris Sud XI, CNRS | |
8 | */ | |
9 | ||
10 | #ifndef __NRLINALG_H__ | |
11 | #define __NRLINALG_H__ | |
12 | ||
[823] | 13 | #define transpose_type_matrix(t) \ |
14 | void short_name(t,transpose_,matrix)(t ** S, int32_t nrl, int32_t nrh, int32_t ncl, int32_t nch, t ** D); \ | |
15 | void short_name(t,transpose1_,matrix)(t ** S, int32_t nrl, int32_t nrh, int32_t ncl, int32_t nch); | |
[772] | 16 | |
[823] | 17 | transpose_type_matrix(int8_t); |
18 | transpose_type_matrix(uint8_t); | |
19 | transpose_type_matrix(int16_t); | |
20 | transpose_type_matrix(uint16_t); | |
21 | transpose_type_matrix(int32_t); | |
22 | transpose_type_matrix(uint32_t); | |
23 | transpose_type_matrix(int64_t); | |
24 | transpose_type_matrix(uint64_t); | |
25 | transpose_type_matrix(float); | |
26 | transpose_type_matrix(double); | |
27 | transpose_type_matrix(rgb8); | |
28 | transpose_type_matrix(rgbx8); | |
[772] | 29 | |
30 | ||
31 | #endif // __NRLINALG_H__ | |
[823] | 32 |
Note: See TracBrowser
for help on using the repository browser.