OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TestRuntimeLib.cpp File Reference
#include "TestRuntimeLib.h"
+ Include dependency graph for TestRuntimeLib.cpp:

Go to the source code of this file.

Functions

template<typename T >
_test_runtime_add (T x, T y)
 
template<typename T >
_test_runtime_sub (T x, T y)
 
template int64_t _test_runtime_add (int64_t, int64_t)
 
template double _test_runtime_add (double, double)
 
template int64_t _test_runtime_sub (int64_t, int64_t)
 
template double _test_runtime_sub (double, double)
 

Function Documentation

template<typename T >
T _test_runtime_add ( x,
y 
)

Definition at line 20 of file TestRuntimeLib.cpp.

Referenced by ct_test_runtime_libs_add__cpu_template_().

20  {
21  return x + y;
22 }

+ Here is the caller graph for this function:

template int64_t _test_runtime_add ( int64_t  ,
int64_t   
)
template double _test_runtime_add ( double  ,
double   
)
template<typename T >
T _test_runtime_sub ( x,
y 
)

Definition at line 25 of file TestRuntimeLib.cpp.

Referenced by ct_test_runtime_libs_sub__cpu_template_().

25  {
26  return x - y;
27 }

+ Here is the caller graph for this function:

template int64_t _test_runtime_sub ( int64_t  ,
int64_t   
)
template double _test_runtime_sub ( double  ,
double   
)