arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
98 Bytes
#include "complex_impl.h"
float cabsf(float complex z)
{
return hypotf(crealf(z), cimagf(z));
}