1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-08-24 22:21:43 +02:00

[wheel build] Fix single-precision in float scalars 2nd try

This commit is contained in:
Anthony Scemama 2023-05-05 13:37:44 +02:00
parent c23bc20e4e
commit 8eb1ac75d8

View File

@ -34,12 +34,12 @@
num variable is modified by address
*/
/* Return num variables as part of the output tuple */
%apply int *OUTPUT { int32_t* const num};
%apply int *OUTPUT { int64_t* const num};
%apply int *OUTPUT { int32_t* const num_up};
%apply int *OUTPUT { int32_t* const num_dn};
%apply int *OUTPUT { int64_t* const num_up};
%apply int *OUTPUT { int64_t* const num_dn};
%apply int32_t *OUTPUT { int32_t* const num};
%apply int64_t *OUTPUT { int64_t* const num};
%apply int32_t *OUTPUT { int32_t* const num_up};
%apply int32_t *OUTPUT { int32_t* const num_dn};
%apply int64_t *OUTPUT { int64_t* const num_up};
%apply int64_t *OUTPUT { int64_t* const num_dn};
%apply float *OUTPUT { float* const num};
%apply double *OUTPUT { double* const num};
/* Return TREXIO exit code from trexio_open as part of the output tuple */