Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:29

0001 #pragma once
0002 /**
0003 s_mock_erfcinvf.h
0004 ==================
0005 
0006 This is only intended to be included for MOCK_CUDA on CPU running, 
0007 it defines a global function to standin for the CUDA equivalent.  
0008 
0009 https://docs.nvidia.com/cuda/cuda-math-api/group__CUDA__MATH__SINGLE.html#group__CUDA__MATH__SINGLE_1g47e42e1bbdda4a98b07fbca5e2a5c396
0010 
0011 __device__ float erfcinvf ( float  x )
0012     Calculate the inverse complementary error function of the input argument.
0013 
0014     Calculate the inverse complementary error function
0015     (x), of the input argument x in the interval [0, 2]. 
0016 
0017 **/
0018 
0019 #include "njuffa_erfcinvf.h"
0020 float erfcinvf(float u2){  return njuffa_erfcinvf(u2) ; }
0021 
0022 
0023