Johannes Demel

Results 161 comments of Johannes Demel

Thanks @michaelld MacOS passes CI now too. What are your thoughts for the C++ interface?

My first idea was to browse through: [MSVC STL headers](https://github.com/microsoft/STL) I found a reference to `complex.h` but not the C header file `complex.h`. If you happen to know a place...

@ryanvolz Thanks for the hints where to search! From MSVC `complex.h` ```c typedef struct _C_float_complex { float _Val[2]; } _C_float_complex; typedef _C_float_complex _Fcomplex; ``` Thus, we should be able to...

I tried to define ```c typedef _Fcomplex lv_32fc_t; ``` for MSVC, but the CI tells me ``` error C4430: missing type specifier - int assumed. Note: C++ does not support...

> I have figured out the initial problem: Microsoft's `` simply includes `` if it is included in a C++ compilation, and we have been compiling volk as C++ with...

I don't have any experience with that approach. I assume, if we find a way to compile VOLK with Clang on Windows and it is possible to build GNU Radio...

@Teque5 We just received #537 . Would this help you as a template?

With #577 we just added the last person to the list. Thus, we're ready to go ahead with a VOLK 3.0 release under LGPL.

Being technical: There are 3 people left (out of 74) who we haven't been able to get in contact with (at all), for a total of 4 (out of 1092)...

I assume our profiling should just make one or several calls to the benchmarked function before the actual measurements. All profiling can benefit from that.