diff --git a/build/__pycache__/amsbuildlib4.cpython-314.pyc b/build/__pycache__/amsbuildlib4.cpython-314.pyc new file mode 100644 index 0000000..fa098be Binary files /dev/null and b/build/__pycache__/amsbuildlib4.cpython-314.pyc differ diff --git a/build/make.msvc64.lib.py b/build/make.msvc64.lib.py index 4abb634..2dd2956 100644 --- a/build/make.msvc64.lib.py +++ b/build/make.msvc64.lib.py @@ -17,7 +17,7 @@ builddir = "./build_msvc64" doinstall = True #copies the build_output to the install dir when finished cc = "nvcc" #compiler #cflags = "-dc --compiler-options '-fPIC -O3'" -cflags = "-dc -Xcompiler -fPIC -Xcompiler -O3" +cflags = "-dc -Xcompiler /O2" libraries = "-l{}".format(libname) libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir) linkerflags = " -Xlinker=-rpath,." @@ -27,7 +27,7 @@ binsrc = ["main.c","main.cpp","main.cu"] #ignore these files when compiling the #keyword list to control the compilers/linkers kwargs = dict() -include = "-I./include -I{}/include -I{}/include".format(commondir, depdir) +include = "-I./include -I{}/include".format(commondir) kwargs["include"] = include kwargs["flags"] = cflags kwargs["libdir"] = libdirs @@ -45,7 +45,7 @@ srcfiles = except_contains(srcfiles,binsrc) #compile all the source files in the list #gs_compile_list(cc,files,**kwargs) -msvc_incremental_compile_list(cc,srcfiles,**kwargs) +gs_incremental_compile_list(cc,srcfiles,**kwargs) #archive all the source files into a static library objlist = flist(kwargs['objstore'],exts='.obj',recurse=True) diff --git a/build/make.msvc64.test.py b/build/make.msvc64.test.py index 3749fd9..88c2df9 100644 --- a/build/make.msvc64.test.py +++ b/build/make.msvc64.test.py @@ -17,10 +17,10 @@ builddir = "./build_msvc64" doinstall = False #copies the build_output to the install dir when finished cc = "nvcc" #compiler #cflags = "-dc --compiler-options '-fPIC -O3'" -cflags = "-dc -Xcompiler -fPIC -Xcompiler -O3" -libraries = "-l{}".format(libname) +cflags = "-dc -Xcompiler /O2" +libraries = "-llib{}".format(libname) libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir) -linkerflags = " -Xlinker=-rpath,." +linkerflags = "" srcexts = [".c",".cpp",".cu"] binsrc = ["main.c","main.cpp","main.cu"] #ignore these files when compiling the static library @@ -35,6 +35,7 @@ kwargs["linkerflags"] = linkerflags kwargs["recurse"] = True kwargs["objstore"] = "{}/objstore".format(builddir) kwargs["searchincdirs"] = "./include" +kwargs["objext"] = ".obj" #Pull required binary dynamic libraries to the bin folder #shutil.copy('{}/lib/libcamsimg3.linux64.so'.format(commondir),builddir); @@ -42,9 +43,9 @@ kwargs["searchincdirs"] = "./include" #shutil.copy('{}/lib/glew32.dll','./bin_winx64'); #Designate source files for main test program -fsrc = ['./src/main.cpp'] +fsrc = ['./src/main.cu'] fobj = replaceexts(fsrc,'.obj') #Compile test programs -msvc_compile_list(cc,fsrc,**kwargs) -msvc_link_list(list_to_sss(fobj),'{}/{}'.format(builddir,binname),**kwargs) +gs_compile_list(cc,fsrc,**kwargs) +gs_link_list(cc,list_to_sss(fobj),'{}/{}'.format(builddir,binname),**kwargs) diff --git a/build_linux64/libamsculib3.linux64.a b/build_linux64/libamsculib3.linux64.a index c97d940..5c4077f 100644 Binary files a/build_linux64/libamsculib3.linux64.a and b/build_linux64/libamsculib3.linux64.a differ diff --git a/build_linux64/objstore/amscu_comp128.o b/build_linux64/objstore/amscu_comp128.o index 812c7f6..3900b3f 100644 Binary files a/build_linux64/objstore/amscu_comp128.o and b/build_linux64/objstore/amscu_comp128.o differ diff --git a/build_linux64/objstore/amscu_comp64.o b/build_linux64/objstore/amscu_comp64.o index 1cad8e8..1fbd52e 100644 Binary files a/build_linux64/objstore/amscu_comp64.o and b/build_linux64/objstore/amscu_comp64.o differ diff --git a/build_linux64/objstore/amscu_cputhreading.o b/build_linux64/objstore/amscu_cputhreading.o index cfee8de..5611ed6 100644 Binary files a/build_linux64/objstore/amscu_cputhreading.o and b/build_linux64/objstore/amscu_cputhreading.o differ diff --git a/build_linux64/objstore/amscu_cudafunctions.o b/build_linux64/objstore/amscu_cudafunctions.o index 1af0313..c573b69 100644 Binary files a/build_linux64/objstore/amscu_cudafunctions.o and b/build_linux64/objstore/amscu_cudafunctions.o differ diff --git a/build_linux64/objstore/amscu_util.o b/build_linux64/objstore/amscu_util.o index f6d7ac5..f287b6d 100644 Binary files a/build_linux64/objstore/amscu_util.o and b/build_linux64/objstore/amscu_util.o differ diff --git a/build_linux64/objstore/amscuarray.o b/build_linux64/objstore/amscuarray.o index e252c39..046049d 100644 Binary files a/build_linux64/objstore/amscuarray.o and b/build_linux64/objstore/amscuarray.o differ diff --git a/build_linux64/objstore/amscuarray_dops.o b/build_linux64/objstore/amscuarray_dops.o index a70f548..c5cfec7 100644 Binary files a/build_linux64/objstore/amscuarray_dops.o and b/build_linux64/objstore/amscuarray_dops.o differ diff --git a/build_linux64/objstore/amscufhash.o b/build_linux64/objstore/amscufhash.o index 9561ded..827192e 100644 Binary files a/build_linux64/objstore/amscufhash.o and b/build_linux64/objstore/amscufhash.o differ diff --git a/build_linux64/objstore/amscugeom.o b/build_linux64/objstore/amscugeom.o index b1d7ffd..0f99769 100644 Binary files a/build_linux64/objstore/amscugeom.o and b/build_linux64/objstore/amscugeom.o differ diff --git a/build_linux64/objstore/amsculib3.o b/build_linux64/objstore/amsculib3.o index 9c0ac0f..d2c5c67 100644 Binary files a/build_linux64/objstore/amsculib3.o and b/build_linux64/objstore/amsculib3.o differ diff --git a/build_linux64/objstore/amscumath.o b/build_linux64/objstore/amscumath.o index ee4b732..b143cd4 100644 Binary files a/build_linux64/objstore/amscumath.o and b/build_linux64/objstore/amscumath.o differ diff --git a/build_linux64/objstore/amscupcg.o b/build_linux64/objstore/amscupcg.o index adefee7..3ff465e 100644 Binary files a/build_linux64/objstore/amscupcg.o and b/build_linux64/objstore/amscupcg.o differ diff --git a/build_linux64/objstore/amscurandlcg.o b/build_linux64/objstore/amscurandlcg.o index 20bb95a..aa81263 100644 Binary files a/build_linux64/objstore/amscurandlcg.o and b/build_linux64/objstore/amscurandlcg.o differ diff --git a/build_linux64/objstore/amscurandom1.o b/build_linux64/objstore/amscurandom1.o index 44b9c41..8dc4d88 100644 Binary files a/build_linux64/objstore/amscurandom1.o and b/build_linux64/objstore/amscurandom1.o differ diff --git a/build_linux64/objstore/amscurandom1_dbuff.o b/build_linux64/objstore/amscurandom1_dbuff.o index 3642e95..e5bdf36 100644 Binary files a/build_linux64/objstore/amscurandom1_dbuff.o and b/build_linux64/objstore/amscurandom1_dbuff.o differ diff --git a/build_linux64/objstore/amscurandom1_hbuff.o b/build_linux64/objstore/amscurandom1_hbuff.o index 9b9de2f..7b59035 100644 Binary files a/build_linux64/objstore/amscurandom1_hbuff.o and b/build_linux64/objstore/amscurandom1_hbuff.o differ diff --git a/build_linux64/objstore/amscurandom_tests1.o b/build_linux64/objstore/amscurandom_tests1.o index 44b8922..e7d4813 100644 Binary files a/build_linux64/objstore/amscurandom_tests1.o and b/build_linux64/objstore/amscurandom_tests1.o differ diff --git a/build_linux64/objstore/amscurarray.o b/build_linux64/objstore/amscurarray.o index d34bf09..de19813 100644 Binary files a/build_linux64/objstore/amscurarray.o and b/build_linux64/objstore/amscurarray.o differ diff --git a/build_linux64/objstore/amscusplitmix.o b/build_linux64/objstore/amscusplitmix.o index 53e24df..97da03d 100644 Binary files a/build_linux64/objstore/amscusplitmix.o and b/build_linux64/objstore/amscusplitmix.o differ diff --git a/build_linux64/objstore/amsxoroshiro.o b/build_linux64/objstore/amsxoroshiro.o index cc98f57..366853c 100644 Binary files a/build_linux64/objstore/amsxoroshiro.o and b/build_linux64/objstore/amsxoroshiro.o differ diff --git a/build_linux64/objstore/cuvec2.o b/build_linux64/objstore/cuvec2.o index 81c027e..6b33319 100644 Binary files a/build_linux64/objstore/cuvec2.o and b/build_linux64/objstore/cuvec2.o differ diff --git a/build_linux64/objstore/cuvec2f.o b/build_linux64/objstore/cuvec2f.o index dc35c24..b0500e5 100644 Binary files a/build_linux64/objstore/cuvec2f.o and b/build_linux64/objstore/cuvec2f.o differ diff --git a/build_linux64/objstore/cuvec2i.o b/build_linux64/objstore/cuvec2i.o index 1e560b4..640f84d 100644 Binary files a/build_linux64/objstore/cuvec2i.o and b/build_linux64/objstore/cuvec2i.o differ diff --git a/build_linux64/objstore/cuvec3.o b/build_linux64/objstore/cuvec3.o index 57ed285..e3feaf0 100644 Binary files a/build_linux64/objstore/cuvec3.o and b/build_linux64/objstore/cuvec3.o differ diff --git a/build_linux64/objstore/cuvec3f.o b/build_linux64/objstore/cuvec3f.o index 7767ee2..026e1c4 100644 Binary files a/build_linux64/objstore/cuvec3f.o and b/build_linux64/objstore/cuvec3f.o differ diff --git a/build_linux64/objstore/cuvec3i.o b/build_linux64/objstore/cuvec3i.o index 3f58020..29c372f 100644 Binary files a/build_linux64/objstore/cuvec3i.o and b/build_linux64/objstore/cuvec3i.o differ diff --git a/build_linux64/objstore/cuvec4.o b/build_linux64/objstore/cuvec4.o index d403233..0bb4da5 100644 Binary files a/build_linux64/objstore/cuvec4.o and b/build_linux64/objstore/cuvec4.o differ diff --git a/build_linux64/objstore/cuvec4f.o b/build_linux64/objstore/cuvec4f.o index d2cef8f..0fea99e 100644 Binary files a/build_linux64/objstore/cuvec4f.o and b/build_linux64/objstore/cuvec4f.o differ diff --git a/build_linux64/objstore/cuvec4i.o b/build_linux64/objstore/cuvec4i.o index 177b41e..7d45ee3 100644 Binary files a/build_linux64/objstore/cuvec4i.o and b/build_linux64/objstore/cuvec4i.o differ diff --git a/build_linux64/test b/build_linux64/test index 8f634ff..2f1cbcb 100644 Binary files a/build_linux64/test and b/build_linux64/test differ diff --git a/build_msvc64/dump.txt b/build_msvc64/dump.txt new file mode 100644 index 0000000..d98402a --- /dev/null +++ b/build_msvc64/dump.txt @@ -0,0 +1,2665 @@ + +member libamsculib3.msvc64.lib:build_msvc64\objstore\cuvec4i.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__186bf610_10_cuvec4i_cu_bf2648f5__ZN41_INTERNAL_186bf610_10_cuvec4i_cu_bf2648f57amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cuvec4iixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cuvec4iixERKi.const2.0.12 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_7cuvec4iE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKiRKNS_7cuvec4iE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_7cuvec4iERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKiRKNS_7cuvec4iE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cuvec4iERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4idVERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4imLERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4imIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4ipLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4idvERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4imlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4imiERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4iplERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4iixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4iixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4iC2ERKiS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4iC1ERKiS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4iD2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4iD1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4iC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4iC1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\cuvec4f.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__4008e646_10_cuvec4f_cu_3d76df24__ZN41_INTERNAL_4008e646_10_cuvec4f_cu_3d76df247amscuda3pifE +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm3x_div_rn_noftz_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.8.12 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda12cuvec4f_projERNS_7cuvec4fES1_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda12cuvec4f_projERNS_7cuvec4fES1_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda17cuvec4f_normalizeERNS_7cuvec4fE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda17cuvec4f_normalizeERNS_7cuvec4fE.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda12cuvec4f_normERNS_7cuvec4fE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_7cumat4fERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKfRKNS_7cuvec4fE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_7cuvec4fERKf.const2.0.4 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_rcp_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_rcp_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_rcp_rn_f32_slowpath.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f7inverseEv.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f7inverseEv.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f7inverseEv.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f7inverseEv.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fdVERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4f2atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4f2atERKiS2_.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4f2atERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4f2atERKiS2_.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4f2atERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4f2atERKiS2_.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4f2atERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f2atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f2atERKiS2_.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f2atERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f2atERKiS2_.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f2atERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f2atERKiS2_.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4f2atERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fclERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fclERKiS2_.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fclERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fclERKiS2_.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fclERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fclERKiS2_.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fclERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fclERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fclERKiS2_.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fclERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fclERKiS2_.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fclERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fclERKiS2_.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fclERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fixERKi.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fixERKi.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fixERKi.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fixERKi.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fixERKi.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat4fixERKi.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fixERKi.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fixERKi.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fixERKi.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fixERKi.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fixERKi.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat4fixERKi.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cuvec4fdVERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cuvec4fdvERKS0_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cuvec4fixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cuvec4fixERKi.const2.0.12 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda12cuvec4f_projERNS_7cuvec4fES1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda17cuvec4f_normalizeERNS_7cuvec4fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda12cuvec4f_normERNS_7cuvec4fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cuvec4f_dotERNS_7cuvec4fES1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_7cumat4fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cuvec4fERKNS_7cumat4fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cumat4fERKNS_7cuvec4fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKfRKNS_7cumat4fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_7cumat4fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cumat4fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_7cuvec4fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKfRKNS_7cuvec4fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_7cuvec4fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKfRKNS_7cuvec4fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cuvec4fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4f7inverseEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4f3detEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat4f9transposeEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fmLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fdVERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fmLERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fmIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fpLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat4fmlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat4fmiERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat4fplERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat4f4dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4f4dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat4f2atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4f2atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat4fclERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fclERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat4fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fC2EPKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fC1EPKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fC2ERKfS2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fC1ERKfS2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fD2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fD1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat4fC1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fdVERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fmLERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fmIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fpLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4fdvERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4fmlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4fmiERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4fplERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec4fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fC2ERKfS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fC1ERKfS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fD2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fD1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec4fC1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\cuvec4.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__170d08d8_9_cuvec4_cu_54b46223__ZN39_INTERNAL_170d08d8_9_cuvec4_cu_54b462237amscuda3pifE +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_div_f64_slowpath_v2 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.20.24 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec4_projERNS_6cuvec4ES1_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec4_projERNS_6cuvec4ES1_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec4_projERNS_6cuvec4ES1_.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec4_projERNS_6cuvec4ES1_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec4_normalizeERNS_6cuvec4E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec4_normalizeERNS_6cuvec4E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec4_normalizeERNS_6cuvec4E.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec4_normalizeERNS_6cuvec4E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec4_normERNS_6cuvec4E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cumat4ERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cumat4ERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cumat4ERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKdRKNS_6cuvec4E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKdRKNS_6cuvec4E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKdRKNS_6cuvec4E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cuvec4ERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cuvec4ERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cuvec4ERKd.const2.8.12 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_dblrcp_rn_slowpath_v3 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dblrcp_rn_slowpath_v3.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dblrcp_rn_slowpath_v3.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dblrcp_rn_slowpath_v3.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat47inverseEv.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat47inverseEv.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat47inverseEv.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat47inverseEv.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4dVERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4dVERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4dVERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat42atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat42atERKiS2_.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat42atERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat42atERKiS2_.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat42atERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat42atERKiS2_.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat42atERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat42atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat42atERKiS2_.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat42atERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat42atERKiS2_.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat42atERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat42atERKiS2_.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat42atERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4clERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4clERKiS2_.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4clERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4clERKiS2_.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4clERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4clERKiS2_.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4clERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4clERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4clERKiS2_.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4clERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4clERKiS2_.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4clERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4clERKiS2_.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4clERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4ixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4ixERKi.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4ixERKi.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4ixERKi.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4ixERKi.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4ixERKi.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat4ixERKi.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4ixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4ixERKi.const2.48.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4ixERKi.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4ixERKi.const2.72.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4ixERKi.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4ixERKi.const2.60.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat4ixERKi.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec4dVERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec4dVERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec4dVERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec4dvERKS0_.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec4dvERKS0_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec4dvERKS0_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec4ixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec4ixERKi.const2.0.12 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cuvec4_projERNS_6cuvec4ES1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda16cuvec4_normalizeERNS_6cuvec4E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cuvec4_normERNS_6cuvec4E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda10cuvec4_dotERNS_6cuvec4ES1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_6cumat4E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cuvec4ERKNS_6cumat4E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cumat4ERKNS_6cuvec4E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKdRKNS_6cumat4E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_6cumat4ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cumat4ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_6cuvec4E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKdRKNS_6cuvec4E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_6cuvec4ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKdRKNS_6cuvec4E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cuvec4ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat47inverseEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat43detEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat49transposeEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4mLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4dVERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4mLERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4mIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4pLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat4mlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat4miERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat4plERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat44dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat44dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat42atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat42atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat4clERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4clERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat4ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4C2EPKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4C1EPKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4C2ERKdS2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4C1ERKdS2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4D2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4D1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4C2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat4C1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4dVERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4mLERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4mIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4pLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec4dvERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec4mlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec4miERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec4plERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec4ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4C2ERKdS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4C1ERKdS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4D2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4D1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4C2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec4C1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\cuvec3i.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__aa4b2a00_10_cuvec3i_cu_a223784d__ZN41_INTERNAL_aa4b2a00_10_cuvec3i_cu_a223784d7amscuda3pifE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_7cuvec3iE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKiRKNS_7cuvec3iE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_7cuvec3iERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKiRKNS_7cuvec3iE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cuvec3iERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3idVERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3imLERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3imIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3ipLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3idvERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3imlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3imiERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3iplERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3iixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3iixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3iC2ERKiS2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3iC1ERKiS2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3iD2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3iD1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3iC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3iC1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\cuvec3f.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__f2283a56_10_cuvec3f_cu_2073ef9c__ZN41_INTERNAL_f2283a56_10_cuvec3f_cu_2073ef9c7amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_i2opi_f +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm3x_div_rn_noftz_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.8.12 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda12cuvec3f_projERKNS_7cuvec3fES2_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda12cuvec3f_projERKNS_7cuvec3fES2_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda17cuvec3f_normalizeERKNS_7cuvec3fE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda17cuvec3f_normalizeERKNS_7cuvec3fE.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda12cuvec3f_normERKNS_7cuvec3fE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_7cumat3fERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKfRKNS_7cuvec3fE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_7cuvec3fERKf.const2.0.4 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_rcp_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_rcp_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_rcp_rn_f32_slowpath.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3f7inverseEv.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3f7inverseEv.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3fdVERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3f2atERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3f2atERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3f2atERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3f2atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3f2atERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3f2atERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3f2atERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3f2atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3fclERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3fclERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3fclERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3fclERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3fclERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3fclERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3fclERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3fclERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3fixERKi.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3fixERKi.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3fixERKi.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat3fixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3fixERKi.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3fixERKi.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3fixERKi.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat3fixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cuvec3fdVERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cuvec3fdvERKS0_.const2.0.4 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda21rotmat_from_axisangleERKNS_7cuvec3fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda13cumat3f_zerosEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cumat3f_eyeEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda10hodge_dualERKNS_7cumat3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda10hodge_dualERKNS_7cuvec3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda12cuvec3f_projERKNS_7cuvec3fES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda17cuvec3f_normalizeERKNS_7cuvec3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda12cuvec3f_normERKNS_7cuvec3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda13cuvec3f_crossERKNS_7cuvec3fES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cuvec3f_dotERKNS_7cuvec3fES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_7cumat3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cuvec3fERKNS_7cumat3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cumat3fERKNS_7cuvec3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKfRKNS_7cumat3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_7cumat3fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cumat3fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_7cuvec3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKfRKNS_7cuvec3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_7cuvec3fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKfRKNS_7cuvec3fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cuvec3fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3f7inverseEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3f3detEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat3f9transposeEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fmLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fdVERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fmLERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fmIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fpLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat3fmlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat3fmiERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat3fplERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat3f4dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3f4dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat3f2atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3f2atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat3fclERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fclERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat3fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fC2EPKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fC1EPKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fC2ERKfS2_S2_S2_S2_S2_S2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fC1ERKfS2_S2_S2_S2_S2_S2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fD2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fD1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat3fC1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fdVERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fmLERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fmIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fpLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3fdvERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3fmlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3fmiERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3fplERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec3fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fC2ERKfS2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fC1ERKfS2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fD2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fD1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec3fC1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\cuvec3.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__8ada3061_9_cuvec3_cu_e694be33__ZN39_INTERNAL_8ada3061_9_cuvec3_cu_e694be337amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_i2opi_f +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_div_f64_slowpath_v2 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.20.24 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.52.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd.const2.56.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec3_projERKNS_6cuvec3ES2_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec3_projERKNS_6cuvec3ES2_.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec3_projERKNS_6cuvec3ES2_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec3_projERKNS_6cuvec3ES2_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec3_normalizeERKNS_6cuvec3E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec3_normalizeERKNS_6cuvec3E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec3_normalizeERKNS_6cuvec3E.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec3_normalizeERKNS_6cuvec3E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec3_normERKNS_6cuvec3E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cumat3ERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cumat3ERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cumat3ERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKdRKNS_6cuvec3E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKdRKNS_6cuvec3E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKdRKNS_6cuvec3E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cuvec3ERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cuvec3ERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cuvec3ERKd.const2.8.12 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_dblrcp_rn_slowpath_v3 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dblrcp_rn_slowpath_v3.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dblrcp_rn_slowpath_v3.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dblrcp_rn_slowpath_v3.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat37inverseEv.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat37inverseEv.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3dVERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3dVERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3dVERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat32atERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat32atERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat32atERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat32atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat32atERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat32atERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat32atERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat32atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat3clERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat3clERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat3clERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat3clERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3clERKiS2_.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3clERKiS2_.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3clERKiS2_.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3clERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat3ixERKi.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat3ixERKi.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat3ixERKi.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat3ixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3ixERKi.const2.12.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3ixERKi.const2.36.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3ixERKi.const2.24.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat3ixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec3dVERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec3dVERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec3dVERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec3dvERKS0_.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec3dvERKS0_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec3dvERKS0_.const2.8.12 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda21rotmat_from_axisangleERKNS_6cuvec3ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda12cumat3_zerosEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda10cumat3_eyeEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda10hodge_dualERKNS_6cumat3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda10hodge_dualERKNS_6cuvec3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cuvec3_projERKNS_6cuvec3ES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda16cuvec3_normalizeERKNS_6cuvec3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cuvec3_normERKNS_6cuvec3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda12cuvec3_crossERKNS_6cuvec3ES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda10cuvec3_dotERKNS_6cuvec3ES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_6cumat3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cuvec3ERKNS_6cumat3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cumat3ERKNS_6cuvec3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKdRKNS_6cumat3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_6cumat3ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cumat3ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_6cuvec3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKdRKNS_6cuvec3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_6cuvec3ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKdRKNS_6cuvec3E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cuvec3ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat37inverseEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat33detEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat39transposeEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3mLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3dVERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3mLERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3mIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3pLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat3mlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat3miERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat3plERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat34dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat34dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat32atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat32atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat3clERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3clERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat3ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3C2EPKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3C1EPKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3C2ERKdS2_S2_S2_S2_S2_S2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3C1ERKdS2_S2_S2_S2_S2_S2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3D2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3D1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3C2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat3C1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3dVERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3mLERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3mIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3pLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec3dvERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec3mlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec3miERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec3plERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec3ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3C2ERKdS2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3C1ERKdS2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3D2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3D1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3C2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec3C1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\cuvec2i.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__972b03b0_10_cuvec2i_cu_697fabe8__ZN41_INTERNAL_972b03b0_10_cuvec2i_cu_697fabe87amscuda3pifE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_7cuvec2iE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKiRKNS_7cuvec2iE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_7cuvec2iERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKiRKNS_7cuvec2iE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cuvec2iERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2idVERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2imLERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2imIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2ipLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2idvERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2imlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2imiERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2iplERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2iixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2iixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2iC2ERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2iC1ERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2iD2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2iD1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2iC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2iC1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\cuvec2f.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_32__cf4813e6_10_cuvec2f_cu_eb2f3c39__ZN41_INTERNAL_cf4813e6_10_cuvec2f_cu_eb2f3c397amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_i2opi_f +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm3x_div_rn_noftz_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.8.12 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda12cuvec2f_projERKNS_7cuvec2fES2_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda12cuvec2f_projERKNS_7cuvec2fES2_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda17cuvec2f_normalizeERKNS_7cuvec2fE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda17cuvec2f_normalizeERKNS_7cuvec2fE.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda12cuvec2f_normERKNS_7cuvec2fE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda22cumat2f_rot_from_angleERKf.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda22cumat2f_rot_from_angleERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda22cumat2f_rot_from_angleERKf.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda22cumat2f_rot_from_angleERKf.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda22cumat2f_rot_from_angleERKf.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda22cumat2f_rot_from_angleERKf.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda22cumat2f_rot_from_angleERKf.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda22cumat2f_rot_from_angleERKf.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda22cumat2f_rot_from_angleERKf.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_7cumat2fERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKfRKNS_7cuvec2fE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_7cuvec2fERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat2f7inverseEv.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat2fdVERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat2f2atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat2f2atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat2fclERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat2fclERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cumat2fixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cumat2fixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda7cuvec2fdVERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda7cuvec2fdvERKS0_.const2.0.4 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda12cuvec2f_projERKNS_7cuvec2fES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda17cuvec2f_normalizeERKNS_7cuvec2fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda12cuvec2f_normERKNS_7cuvec2fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda13cuvec2f_crossERKNS_7cuvec2fES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cuvec2f_dotERKNS_7cuvec2fES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda22cumat2f_rot_from_angleERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_7cumat2fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cuvec2fERKNS_7cumat2fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cumat2fERKNS_7cuvec2fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKfRKNS_7cumat2fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_7cumat2fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cumat2fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_7cuvec2fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKfRKNS_7cuvec2fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_7cuvec2fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKfRKNS_7cuvec2fE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_7cuvec2fERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2f7inverseEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2f3detEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat2f9transposeEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fmLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fdVERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fmLERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fmIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fpLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat2fmlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat2fmiERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat2fplERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat2f4dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2f4dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat2f2atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2f2atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat2fclERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fclERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cumat2fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fC2EPKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fC1EPKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fC2ERKfS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fC1ERKfS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fD2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fD1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cumat2fC1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fdVERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fmLERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fmIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fpLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2fdvERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2fmlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2fmiERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2fplERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda7cuvec2fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fC2ERKfS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fC1ERKfS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fD2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fD1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7cuvec2fC1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\cuvec2.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_30__32665704_9_cuvec2_cu_dbf49783__ZN39_INTERNAL_32665704_9_cuvec2_cu_dbf497837amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_i2opi_f +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_div_f64_slowpath_v2 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.20.24 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec2_projERKNS_6cuvec2ES2_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec2_projERKNS_6cuvec2ES2_.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec2_projERKNS_6cuvec2ES2_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec2_projERKNS_6cuvec2ES2_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec2_normalizeERKNS_6cuvec2E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec2_normalizeERKNS_6cuvec2E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec2_normalizeERKNS_6cuvec2E.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda16cuvec2_normalizeERKNS_6cuvec2E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda11cuvec2_normERKNS_6cuvec2E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21cumat2_rot_from_angleERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21cumat2_rot_from_angleERKd.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21cumat2_rot_from_angleERKd.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21cumat2_rot_from_angleERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21cumat2_rot_from_angleERKd.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21cumat2_rot_from_angleERKd.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21cumat2_rot_from_angleERKd.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21cumat2_rot_from_angleERKd.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda21cumat2_rot_from_angleERKd.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cumat2ERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cumat2ERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cumat2ERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKdRKNS_6cuvec2E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKdRKNS_6cuvec2E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKdRKNS_6cuvec2E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cuvec2ERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cuvec2ERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscudadvERKNS_6cuvec2ERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat27inverseEv.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat27inverseEv.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat27inverseEv.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat2dVERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat2dVERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat2dVERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat22atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat22atERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat2clERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat2clERKiS2_.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cumat2ixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cumat2ixERKi.const2.0.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec2dVERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec2dVERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6cuvec2dVERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec2dvERKS0_.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec2dvERKS0_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda6cuvec2dvERKS0_.const2.8.12 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cuvec2_projERKNS_6cuvec2ES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda16cuvec2_normalizeERKNS_6cuvec2E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda11cuvec2_normERKNS_6cuvec2E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda12cuvec2_crossERKNS_6cuvec2ES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda10cuvec2_dotERKNS_6cuvec2ES2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda21cumat2_rot_from_angleERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_6cumat2E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cuvec2ERKNS_6cumat2E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cumat2ERKNS_6cuvec2E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKdRKNS_6cumat2E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_6cumat2ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cumat2ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudangERKNS_6cuvec2E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKdRKNS_6cuvec2E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudadvERKNS_6cuvec2ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKdRKNS_6cuvec2E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscudamlERKNS_6cuvec2ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat27inverseEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat23detEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat29transposeEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2mLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2dVERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2mLERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2mIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2pLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat2mlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat2miERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat2plERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat24dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat24dataEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat22atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat22atERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat2clERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2clERKiS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cumat2ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2C2EPKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2C1EPKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2C2ERKdS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2C1ERKdS2_S2_S2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2D2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2D1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2C2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cumat2C1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2dVERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2mLERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2mIERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2pLERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec2dvERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec2mlERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec2miERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec2plERKS0_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda6cuvec2ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2C2ERKdS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2C1ERKdS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2D2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2D1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2C2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6cuvec2C1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amsxoroshiro.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT _ZZN7amscuda6random9xoroshiro12xs128pp_jumpEPNS1_13xs128pp_stateEE4JUMP +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__5f492793_15_amsxoroshiro_cu_f070e1ad__ZN46_INTERNAL_5f492793_15_amsxoroshiro_cu_f070e1ad7amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random9xoroshiro12xs128pp_jumpEPNS1_13xs128pp_stateE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random9xoroshiro12xs128pp_jumpEPNS1_13xs128pp_stateE.const2.4.8 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro12xs128pp_jumpEPNS1_13xs128pp_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro12xs128pp_nextEPNS1_13xs128pp_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro12xs128pp_rotlEyi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro11xs64ss_nextEPNS1_12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro13xs128pp_stateC2Eyy +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro13xs128pp_stateC1Eyy +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro13xs128pp_stateC2Ey +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random9xoroshiro15splitmix64_nextEPy +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random9xoroshiro18splitmix64_nextintEPy +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro13xs128pp_stateC1Ey +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro13xs128pp_stateC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro13xs128pp_stateC1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro12xs64ss_stateC2Ejj +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro12xs64ss_stateC1Ejj +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro12xs64ss_stateC2Ej +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random9xoroshiro15splitmix32_nextEPj +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro12xs64ss_stateC1Ej +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro12xs64ss_stateC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro12xs64ss_stateC1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscu_util.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__b6016428_13_amscu_util_cu_52383cea__ZN44_INTERNAL_b6016428_13_amscu_util_cu_52383cea7amscuda3pifE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscu_cudafunctions.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_44__498f3ea4_22_amscu_cudafunctions_cu_f1ee5576__ZN53_INTERNAL_498f3ea4_22_amscu_cudafunctions_cu_f1ee55767amscuda3pifE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscu_cputhreading.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__f5839d09_21_amscu_cputhreading_cu_0c6ee0ff__ZN52_INTERNAL_f5839d09_21_amscu_cputhreading_cu_0c6ee0ff7amscuda3pifE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscu_comp64.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__dec2b7a5_15_amscu_comp64_cu_5626f043__ZN46_INTERNAL_dec2b7a5_15_amscu_comp64_cu_5626f0437amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_i2opi_f +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm3x_div_rn_noftz_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.8.12 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4csgnERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4csgnERKNS0_8cucomp64E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.60.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.52.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.56.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.72.76 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.92.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.84.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.76.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.96.100 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.88.92 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_.const2.80.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_8cucomp64E.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_8cucomp64E.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_8cucomp64E.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_8cucomp64E.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_8cucomp64E.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_8cucomp64E.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3absERKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmpdvERKfRKNS0_8cucomp64E.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmpdvERKNS0_8cucomp64ERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp8cucomp64dVERKf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp8cucomp64dVERKS1_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp8cucomp643absEv.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp8cucomp643magEv.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp8cucomp646iszeroEv.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp8cucomp646isimagEv.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp8cucomp646isrealEv.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp8cucomp64dvERKS1_.const2.0.4 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4csgnERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3powERKNS0_8cucomp64ES3_ +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda3argERKdS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4tanhERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4sinhERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4coshERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4conjERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3logERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3tanERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3cosERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3expERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3sinERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4imagERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4realERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3absERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3argERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda4argfERKfS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpngERKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpdvERKfRKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpmlERKfRKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpmiERKfRKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpplERKfRKNS0_8cucomp64E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpdvERKNS0_8cucomp64ERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpmlERKNS0_8cucomp64ERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpmiERKNS0_8cucomp64ERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpplERKNS0_8cucomp64ERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64dVERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64mLERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64mIERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64pLERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64dVERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64mLERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64mIERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64pLERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp644conjEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp643absEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp643magEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp643argEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp646iszeroEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp646isimagEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp646isrealEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp645isinfEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp645isnanEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64leERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64geERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64ltERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64gtERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64neERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64eqERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64dvERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64mlERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64miERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64plERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp8cucomp64ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64ixERi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64aSERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64aSERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64C2ERKfS3_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64C1ERKfS3_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64C2ERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64C1ERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64C2ERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64C1ERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64D2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64D1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64C2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp8cucomp64C1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscu_comp128.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__d7e299f1_16_amscu_comp128_cu_e2b12dce__ZN47_INTERNAL_d7e299f1_16_amscu_comp128_cu_e2b12dce7amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_sin_cos_coeffs +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_i2opi_d +STT_FUNC STB_LOCAL STV_DEFAULT __internal_trig_reduction_slowpathd +STT_CUDA_OBJECT STB_LOCAL STO_? __internal_trig_reduction_slowpathd.const2.0.4 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_div_f64_slowpath_v2 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.20.24 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_dsqrt_rn_f64_mediumpath_v1 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dsqrt_rn_f64_mediumpath_v1.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dsqrt_rn_f64_mediumpath_v1.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dsqrt_rn_f64_mediumpath_v1.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4csgnERKNS0_9cucomp128E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4csgnERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4csgnERKNS0_9cucomp128E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4csgnERKNS0_9cucomp128E.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.200.204 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.104.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.112.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.152.160 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.160.168 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.168.176 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.176.184 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.184.192 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.192.200 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.204.208 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.208.212 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.216.224 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.224.232 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.232.240 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.240.248 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.212.216 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_.const2.248.252 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.104.108 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.108.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.112.116 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.116.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.152.156 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.160.168 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.156.160 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E.const2.168.172 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.104.108 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.108.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.112.116 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.116.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.152.156 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E.const2.160.168 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.104.108 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.108.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.112.116 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.116.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.152.156 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp4coshERKNS0_9cucomp128E.const2.160.168 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3logERKNS0_9cucomp128E.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.104.108 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.108.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.112.116 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.116.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.152.156 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.156.160 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3tanERKNS0_9cucomp128E.const2.160.164 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.104.108 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.108.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.112.116 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.116.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3cosERKNS0_9cucomp128E.const2.152.156 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.104.108 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.108.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.112.116 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.116.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3expERKNS0_9cucomp128E.const2.152.156 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.104.108 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.108.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.112.116 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.116.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3sinERKNS0_9cucomp128E.const2.152.156 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3absERKNS0_9cucomp128E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp3absERKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmpdvERKdRKNS0_9cucomp128E.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmpdvERKdRKNS0_9cucomp128E.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmpdvERKdRKNS0_9cucomp128E.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmpdvERKNS0_9cucomp128ERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmpdvERKNS0_9cucomp128ERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmpdvERKNS0_9cucomp128ERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp9cucomp128dVERKd.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp9cucomp128dVERKd.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp9cucomp128dVERKd.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp9cucomp128dVERKS1_.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp9cucomp128dVERKS1_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3cmp9cucomp128dVERKS1_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp9cucomp1283absEv.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp9cucomp1283absEv.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp9cucomp1283magEv.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp9cucomp1283magEv.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp9cucomp1285isinfEv.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp9cucomp128dvERKS1_.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp9cucomp128dvERKS1_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZNK7amscuda3cmp9cucomp128dvERKS1_.const2.8.12 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4csgnERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3powERKNS0_9cucomp128ES3_ +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda3argERKdS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4tanhERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4sinhERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4coshERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4conjERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3logERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3tanERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3cosERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3expERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3sinERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4imagERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp4realERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3absERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp3argERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpngERKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpdvERKdRKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpmlERKdRKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpmiERKdRKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpplERKdRKNS0_9cucomp128E +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpdvERKNS0_9cucomp128ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpmlERKNS0_9cucomp128ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpmiERKNS0_9cucomp128ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmpplERKNS0_9cucomp128ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128dVERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128mLERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128mIERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128pLERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128dVERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128mLERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128mIERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128pLERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp1284conjEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp1283absEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp1283magEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp1283argEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp1286iszeroEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp1286isimagEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp1286isrealEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp1285isinfEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp1285isnanEv +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128leERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128geERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128ltERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128gtERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128neERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128eqERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128dvERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128mlERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128miERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128plERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZNK7amscuda3cmp9cucomp128ixERKi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128ixERi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128aSERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128aSERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128C2ERKdS3_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128C1ERKdS3_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128C2ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128C1ERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128C2ERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128C1ERKS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128D2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128D1Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128C2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3cmp9cucomp128C1Ev + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscusplitmix.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_38__77583642_16_amscusplitmix_cu_b8b82784__ZN47_INTERNAL_77583642_16_amscusplitmix_cu_b8b827847amscuda3pifE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro18splitmix64_nextintEPy +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro15splitmix64_nextEPy +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9xoroshiro15splitmix32_nextEPj + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscurarray.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda8curarrayIiED2Ev +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_36__f9dbca8c_14_amscurarray_cu_94a95e36__ZN45_INTERNAL_f9dbca8c_14_amscurarray_cu_94a95e367amscuda3pifE +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda8curarrayIiEC2Ev +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_FUNC STB_GLOBAL STO_ENTRY _ZN7amscuda21test_amscurarray1_kf1EPNS_8curarrayIiEE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscurandom_tests1.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__4a9cb03a_21_amscurandom_tests1_cu_8c917bdd__ZN52_INTERNAL_4a9cb03a_21_amscurandom_tests1_cu_8c917bdd7amscuda3pifE +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIiED2Ev +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIiEC2Ev +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIfED2Ev +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIfEC2Ev +STT_FUNC STB_GLOBAL STV_DEFAULT U free + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscurandom1_hbuff.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_WEAK STO_GLOBAL _ZTVSt4_Pad +STT_CUDA_OBJECT STB_WEAK STO_GLOBAL _ZTVSt10_LaunchPadISt10unique_ptrISt5tupleIJPFviiOPFfPN7amscuda6random9xoroshiro12xs64ss_stateEEPfxS6_EiiS8_SA_xS6_EESt14default_deleteISD_EEE +STT_CUDA_OBJECT STB_WEAK STO_GLOBAL _ZTVSt10_LaunchPadISt10unique_ptrISt5tupleIJPFviiOPFdPN7amscuda6random9xoroshiro12xs64ss_stateEEPdxS6_EiiS8_SA_xS6_EESt14default_deleteISD_EEE +STT_CUDA_OBJECT STB_WEAK STO_GLOBAL _ZTVSt10_LaunchPadISt10unique_ptrISt5tupleIJPFviiOPFiiiPN7amscuda6random9xoroshiro12xs64ss_stateEEPixiiS6_EiiS8_SA_xiiS6_EESt14default_deleteISD_EEE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd25__ZN52_INTERNAL_ea3ce660_21_amscurandom1_hbuff_cu_7d8dfd257amscuda3pifE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscurandom1_dbuff.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayINS_6random9xoroshiro12xs64ss_stateEED2Ev +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_43__bd93f32f_21_amscurandom1_dbuff_cu_d95f66f1__ZN52_INTERNAL_bd93f32f_21_amscurandom1_dbuff_cu_d95f66f17amscuda3pifE +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayINS_6random9xoroshiro12xs64ss_stateEEC2Ev +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_FUNC STB_GLOBAL STV_DEFAULT U free +STT_FUNC STB_GLOBAL STO_ENTRY _ZN7amscuda6random16dbuff_randint_kfEPiiiiPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random7randintEiiPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STO_ENTRY _ZN7amscuda6random14dbuff_randn_kfEPdiPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STO_ENTRY _ZN7amscuda6random15dbuff_randnf_kfEPfiPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STO_ENTRY _ZN7amscuda6random13dbuff_rand_kfEPdiPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random4randEPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STO_ENTRY _ZN7amscuda6random14dbuff_randf_kfEPfiPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random5randfEPNS0_9xoroshiro12xs64ss_stateE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscurandom1.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__997dfced_15_amscurandom1_cu_bb33d7d7__ZN46_INTERNAL_997dfced_15_amscurandom1_cu_bb33d7d77amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_i2opi_f +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_sin_cos_coeffs +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_i2opi_d +STT_FUNC STB_LOCAL STV_DEFAULT __internal_trig_reduction_slowpathd +STT_CUDA_OBJECT STB_LOCAL STO_? __internal_trig_reduction_slowpathd.const2.0.4 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_dsqrt_rn_f64_mediumpath_v1 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dsqrt_rn_f64_mediumpath_v1.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dsqrt_rn_f64_mediumpath_v1.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dsqrt_rn_f64_mediumpath_v1.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.104.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.112.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.144.148 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.148.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE.const2.152.156 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.56.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.52.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.76.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.72.76 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.60.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.80.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE.const2.84.88 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random5randnEPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random9xoroshiro11xs64ss_nextEPNS1_12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random6randnfEPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random4randEPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random5randfEPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random7randintEiiPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random8randui32EPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random9rand_nextEPNS0_9xoroshiro12xs64ss_stateE +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random20rand_state_incrementEiPNS0_9xoroshiro12xs64ss_stateE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscurandlcg.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda6random3lcg9dpr32_modE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda6random3lcg10dpr32_multE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda6random3lcg16random_dpr64_modE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda6random3lcg17random_dpr64_multE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_37__4ebf605c_15_amscurandlcg_cu_a7c74cee__ZN46_INTERNAL_4ebf605c_15_amscurandlcg_cu_a7c74cee7amscuda3pifE +STT_CUDA_OBJECT STB_LOCAL STO_GLOBAL __cudart_i2opi_f +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_div_f64_slowpath_v2 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg11dpr64_randdEPx.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg11dpr64_randdEPx.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg11dpr64_randdEPx.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg11dpr64_randdEPx.const2.16.20 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.40.44 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.56.60 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.44.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.48.52 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.52.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.76.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.60.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.80.84 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.72.76 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random3lcg12dpr32_randnfEPi.const2.84.88 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random3lcg11dpr64_randfEPx +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random3lcg11dpr64_randdEPx +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random3lcg14dpr64_nextseedEPx +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random3lcg12dpr32_randnfEPi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random3lcg11dpr32_randfEPi +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random3lcg14dpr32_nextseedEPi + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscupcg.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__0b2a2207_11_amscupcg_cu_fabfce6c_16648__ZN48_INTERNAL_0b2a2207_11_amscupcg_cu_fabfce6c_166487amscuda3pifE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscumath.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_34__79c67c7b_12_amscumath_cu_3a57c3d5__ZN43_INTERNAL_79c67c7b_12_amscumath_cu_3a57c3d57amscuda3pifE +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_rcp_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_rcp_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_rcp_rn_f32_slowpath.const2.4.8 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm3x_div_rn_noftz_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.8.12 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_sqrt_rn_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_sqrt_rn_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda9get_azelfERKfS1_S1_RfS2_.const2.40.48 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_div_f64_slowpath_v2 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.16.24 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_div_f64_slowpath_v2.const2.20.24 +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm20_dsqrt_rn_f64_mediumpath_v1 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dsqrt_rn_f64_mediumpath_v1.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dsqrt_rn_f64_mediumpath_v1.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm20_dsqrt_rn_f64_mediumpath_v1.const2.8.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.104.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.112.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.152.160 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.160.168 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.168.176 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.176.184 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.168.172 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.180.184 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.184.192 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_RdS2_.const2.192.196 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.104.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.112.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.152.160 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.160.168 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.168.176 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.176.184 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.168.172 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.180.184 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.184.192 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda8get_azelERKdS1_S1_PdS2_.const2.192.196 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.32.36 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.36.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda4argfERKfS1_.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.0.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.24.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.32.40 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.40.48 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.48.56 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.56.64 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.64.72 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.72.80 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.80.88 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.88.96 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.96.104 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.104.112 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.112.120 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.120.128 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.128.136 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.136.144 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.144.152 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.152.160 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.160.168 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.168.176 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.176.184 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.168.172 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.180.184 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3argERKdS1_.const2.184.192 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3modERKfS1_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3modERKfS1_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3modERKfS1_.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3modERKfS1_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3modERKdS1_.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3modERKdS1_.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3modERKdS1_.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda3modERKdS1_.const2.12.16 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda9get_azelfERKfS1_S1_RfS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda8get_azelERKdS1_S1_RdS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda8get_azelERKdS1_S1_PdS2_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda4argfERKfS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3argERKdS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7truedivERKlS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda7truedivERKiS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3modERKlS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3modERKiS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3modERKfS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3modERKdS1_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda4fabsERKf +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda4dabsERKd +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3maxIfEET_RKS1_S3_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3maxIdEET_RKS1_S3_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3minIfEET_RKS1_S3_ +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda3minIdEET_RKS1_S3_ + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amsculib3.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__02b5212e_12_amsculib3_cu_e8bd8c2c_14220__ZN49_INTERNAL_02b5212e_12_amsculib3_cu_e8bd8c2c_142207amscuda3pifE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscugeom.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_39__9ee1f380_12_amscugeom_cu_e8bd8c2c_6536__ZN48_INTERNAL_9ee1f380_12_amscugeom_cu_e8bd8c2c_65367amscuda3pifE + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscufhash.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__aca6b140_13_amscufhash_cu_88d36a40__ZN44_INTERNAL_aca6b140_13_amscufhash_cu_88d36a407amscuda3pifE +STT_FUNC STB_LOCAL STV_DEFAULT __cuda_sm3x_div_rn_noftz_f32_slowpath +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? __cuda_sm3x_div_rn_noftz_f32_slowpath.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash4d_suEffff.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash4d_suEffff.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash4d_suEffff.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash4d_suEffff.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash4d_suEffff.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash4d_suEffff.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash4d_suEffff.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash4d_suEffff.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash3d_suEfff.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash3d_suEfff.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash3d_suEfff.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash3d_suEfff.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash3d_suEfff.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash3d_suEfff.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash3d_suEfff.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash3d_suEfff.const2.28.32 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash1d_suEf.const2.0.4 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash1d_suEf.const2.4.8 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash1d_suEf.const2.16.20 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash1d_suEf.const2.20.24 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash1d_suEf.const2.8.12 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash1d_suEf.const2.12.16 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash1d_suEf.const2.24.28 +STT_CUDA_OBJECT STB_LOCAL STO_? _ZN7amscuda6random5fhash10fhash1d_suEf.const2.28.32 +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random5fhash10fhash4d_suEffff +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random5fhash10fhash3d_suEfff +STT_FUNC STB_GLOBAL STV_DEFAULT _ZN7amscuda6random5fhash10fhash1d_suEf + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscuarray_dops.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIiED2Ev +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_40__50326b5d_18_amscuarray_dops_cu_c935104b__ZN49_INTERNAL_50326b5d_18_amscuarray_dops_cu_c935104b7amscuda3pifE +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIiEC2Ev +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIfED2Ev +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIfEC2Ev +STT_FUNC STB_WEAK STO_ENTRY _ZN7amscuda15dbuff_setall_kfIfEEvPT_iS1_ +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_FUNC STB_WEAK STO_ENTRY _ZN7amscuda15dbuff_minmax_kfIfEEvPT_iS2_S2_ +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_FUNC STB_WEAK STO_ENTRY _ZN7amscuda12dbuff_sum_kfIfEEvPT_iS2_ +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_FUNC STB_GLOBAL STV_DEFAULT U free +STT_FUNC STB_GLOBAL STO_ENTRY _ZN7amscuda20dbuff_rand_dpr32n_kfEPfiPi +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random3lcg12dpr32_randnfEPi +STT_FUNC STB_GLOBAL STO_ENTRY _ZN7amscuda19dbuff_rand_dpr32_kfEPfiPi +STT_FUNC STB_GLOBAL STV_DEFAULT U _ZN7amscuda6random3lcg11dpr32_randfEPi + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only + +member libamsculib3.msvc64.lib:build_msvc64\objstore\amscuarray.obj: + +Fatbin elf code: +================ +arch = sm_52 +code version = [1,7] +host = windows +compile_size = 64bit +compressed + +symbols: +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIfED2Ev +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda16amscu_defnblocksE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda17amscu_defnthreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda19amscu_defcputhreadsE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda13amscu_successE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda9amscu_mehE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda13amscu_failureE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda3nanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda4fnanE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda3infE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda4finfE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda2piE +STT_CUDA_OBJECT STB_LOCAL STO_CONSTANT __nv_static_35__a3600d5a_13_amscuarray_cu_cf766bfc__ZN44_INTERNAL_a3600d5a_13_amscuarray_cu_cf766bfc7amscuda3pifE +STT_FUNC STB_WEAK STV_DEFAULT _ZN7amscuda7cuarrayIfEC2Ev +STT_CUDA_OBJECT STB_LOCAL STO_? _param +STT_FUNC STB_GLOBAL STV_DEFAULT U free +STT_FUNC STB_GLOBAL STO_ENTRY _ZN7amscuda19test_cuarray_sum_kfEPNS_7cuarrayIfEEPf + +Fatbin ptx code: +================ +arch = sm_52 +code version = [7,7] +host = windows +compile_size = 64bit +compressed +ptxasOptions = --compile-only diff --git a/build_msvc64/libamsculib3.msvc64.lib b/build_msvc64/libamsculib3.msvc64.lib new file mode 100644 index 0000000..adc2420 Binary files /dev/null and b/build_msvc64/libamsculib3.msvc64.lib differ diff --git a/build_msvc64/objstore/amscu_comp128.obj b/build_msvc64/objstore/amscu_comp128.obj new file mode 100644 index 0000000..6c02eac Binary files /dev/null and b/build_msvc64/objstore/amscu_comp128.obj differ diff --git a/build_msvc64/objstore/amscu_comp64.obj b/build_msvc64/objstore/amscu_comp64.obj new file mode 100644 index 0000000..5f7ca2c Binary files /dev/null and b/build_msvc64/objstore/amscu_comp64.obj differ diff --git a/build_msvc64/objstore/amscu_cputhreading.obj b/build_msvc64/objstore/amscu_cputhreading.obj new file mode 100644 index 0000000..c797c25 Binary files /dev/null and b/build_msvc64/objstore/amscu_cputhreading.obj differ diff --git a/build_msvc64/objstore/amscu_cudafunctions.obj b/build_msvc64/objstore/amscu_cudafunctions.obj new file mode 100644 index 0000000..f0de526 Binary files /dev/null and b/build_msvc64/objstore/amscu_cudafunctions.obj differ diff --git a/build_msvc64/objstore/amscu_util.obj b/build_msvc64/objstore/amscu_util.obj new file mode 100644 index 0000000..161e6de Binary files /dev/null and b/build_msvc64/objstore/amscu_util.obj differ diff --git a/build_msvc64/objstore/amscuarray.obj b/build_msvc64/objstore/amscuarray.obj new file mode 100644 index 0000000..c0fe2b3 Binary files /dev/null and b/build_msvc64/objstore/amscuarray.obj differ diff --git a/build_msvc64/objstore/amscuarray_dops.obj b/build_msvc64/objstore/amscuarray_dops.obj new file mode 100644 index 0000000..04dd8bf Binary files /dev/null and b/build_msvc64/objstore/amscuarray_dops.obj differ diff --git a/build_msvc64/objstore/amscufhash.obj b/build_msvc64/objstore/amscufhash.obj new file mode 100644 index 0000000..f605e6c Binary files /dev/null and b/build_msvc64/objstore/amscufhash.obj differ diff --git a/build_msvc64/objstore/amscugeom.obj b/build_msvc64/objstore/amscugeom.obj new file mode 100644 index 0000000..f910d98 Binary files /dev/null and b/build_msvc64/objstore/amscugeom.obj differ diff --git a/build_msvc64/objstore/amsculib3.obj b/build_msvc64/objstore/amsculib3.obj new file mode 100644 index 0000000..fab5ce8 Binary files /dev/null and b/build_msvc64/objstore/amsculib3.obj differ diff --git a/build_msvc64/objstore/amscumath.obj b/build_msvc64/objstore/amscumath.obj new file mode 100644 index 0000000..a97eff9 Binary files /dev/null and b/build_msvc64/objstore/amscumath.obj differ diff --git a/build_msvc64/objstore/amscupcg.obj b/build_msvc64/objstore/amscupcg.obj new file mode 100644 index 0000000..0c46472 Binary files /dev/null and b/build_msvc64/objstore/amscupcg.obj differ diff --git a/build_msvc64/objstore/amscurandlcg.obj b/build_msvc64/objstore/amscurandlcg.obj new file mode 100644 index 0000000..ac8ab3a Binary files /dev/null and b/build_msvc64/objstore/amscurandlcg.obj differ diff --git a/build_msvc64/objstore/amscurandom1.obj b/build_msvc64/objstore/amscurandom1.obj new file mode 100644 index 0000000..8aade21 Binary files /dev/null and b/build_msvc64/objstore/amscurandom1.obj differ diff --git a/build_msvc64/objstore/amscurandom1_dbuff.obj b/build_msvc64/objstore/amscurandom1_dbuff.obj new file mode 100644 index 0000000..4d4fdf1 Binary files /dev/null and b/build_msvc64/objstore/amscurandom1_dbuff.obj differ diff --git a/build_msvc64/objstore/amscurandom1_hbuff.obj b/build_msvc64/objstore/amscurandom1_hbuff.obj new file mode 100644 index 0000000..add6f2d Binary files /dev/null and b/build_msvc64/objstore/amscurandom1_hbuff.obj differ diff --git a/build_msvc64/objstore/amscurandom_tests1.obj b/build_msvc64/objstore/amscurandom_tests1.obj new file mode 100644 index 0000000..d6dac14 Binary files /dev/null and b/build_msvc64/objstore/amscurandom_tests1.obj differ diff --git a/build_msvc64/objstore/amscurarray.obj b/build_msvc64/objstore/amscurarray.obj new file mode 100644 index 0000000..15a4b03 Binary files /dev/null and b/build_msvc64/objstore/amscurarray.obj differ diff --git a/build_msvc64/objstore/amscusplitmix.obj b/build_msvc64/objstore/amscusplitmix.obj new file mode 100644 index 0000000..c262a08 Binary files /dev/null and b/build_msvc64/objstore/amscusplitmix.obj differ diff --git a/build_msvc64/objstore/amsxoroshiro.obj b/build_msvc64/objstore/amsxoroshiro.obj new file mode 100644 index 0000000..8024e27 Binary files /dev/null and b/build_msvc64/objstore/amsxoroshiro.obj differ diff --git a/build_msvc64/objstore/cuvec2.obj b/build_msvc64/objstore/cuvec2.obj new file mode 100644 index 0000000..37663eb Binary files /dev/null and b/build_msvc64/objstore/cuvec2.obj differ diff --git a/build_msvc64/objstore/cuvec2f.obj b/build_msvc64/objstore/cuvec2f.obj new file mode 100644 index 0000000..4f28091 Binary files /dev/null and b/build_msvc64/objstore/cuvec2f.obj differ diff --git a/build_msvc64/objstore/cuvec2i.obj b/build_msvc64/objstore/cuvec2i.obj new file mode 100644 index 0000000..e6c897d Binary files /dev/null and b/build_msvc64/objstore/cuvec2i.obj differ diff --git a/build_msvc64/objstore/cuvec3.obj b/build_msvc64/objstore/cuvec3.obj new file mode 100644 index 0000000..6e11a29 Binary files /dev/null and b/build_msvc64/objstore/cuvec3.obj differ diff --git a/build_msvc64/objstore/cuvec3f.obj b/build_msvc64/objstore/cuvec3f.obj new file mode 100644 index 0000000..7906b96 Binary files /dev/null and b/build_msvc64/objstore/cuvec3f.obj differ diff --git a/build_msvc64/objstore/cuvec3i.obj b/build_msvc64/objstore/cuvec3i.obj new file mode 100644 index 0000000..4caabfd Binary files /dev/null and b/build_msvc64/objstore/cuvec3i.obj differ diff --git a/build_msvc64/objstore/cuvec4.obj b/build_msvc64/objstore/cuvec4.obj new file mode 100644 index 0000000..029c279 Binary files /dev/null and b/build_msvc64/objstore/cuvec4.obj differ diff --git a/build_msvc64/objstore/cuvec4f.obj b/build_msvc64/objstore/cuvec4f.obj new file mode 100644 index 0000000..2591713 Binary files /dev/null and b/build_msvc64/objstore/cuvec4f.obj differ diff --git a/build_msvc64/objstore/cuvec4i.obj b/build_msvc64/objstore/cuvec4i.obj new file mode 100644 index 0000000..1859396 Binary files /dev/null and b/build_msvc64/objstore/cuvec4i.obj differ diff --git a/build_msvc64/test.exe b/build_msvc64/test.exe new file mode 100644 index 0000000..18579ff Binary files /dev/null and b/build_msvc64/test.exe differ diff --git a/build_msvc64/test.exp b/build_msvc64/test.exp new file mode 100644 index 0000000..0ead5eb Binary files /dev/null and b/build_msvc64/test.exp differ diff --git a/build_msvc64/test.lib b/build_msvc64/test.lib new file mode 100644 index 0000000..ba12197 Binary files /dev/null and b/build_msvc64/test.lib differ diff --git a/include/amsculib3/amscuarray_impl.hpp b/include/amsculib3/amscuarray_impl.hpp index 6aae6ac..38019ec 100644 --- a/include/amsculib3/amscuarray_impl.hpp +++ b/include/amsculib3/amscuarray_impl.hpp @@ -53,7 +53,7 @@ template __device__ __host__ int cuarray::resize(const int _lengt } int I; - T def; + T def = T(); if(data!=NULL) { diff --git a/include/amsculib3/amsculib3.hpp b/include/amsculib3/amsculib3.hpp index 6231635..e896bc6 100644 --- a/include/amsculib3/amsculib3.hpp +++ b/include/amsculib3/amsculib3.hpp @@ -13,6 +13,7 @@ #include #include #include +#include #include //where all the cuda functions live #include diff --git a/make_msvc.py b/make_msvc.py new file mode 100644 index 0000000..936b2d7 --- /dev/null +++ b/make_msvc.py @@ -0,0 +1,28 @@ +#!/usr/bin/python3 +#!/usr/bin/python3 + +import os,sys,math +from build.amsbuildlib4 import * + +if(len(sys.argv)>=2): + if(sys.argv[1]=="clean"): + obj_list = flist('./build_msvc64',recurse=True,exts=['.obj']) + for o in obj_list: + os.remove('{}'.format(o)) + exit() + +os.system('python3 ./build/make.msvc64.lib.py') +os.system('python3 ./build/make.msvc64.test.py') + +obj_list = flist('./src',recurse=True,exts=['.o','.obj']) +for o in obj_list: + os.remove('{}'.format(o)) + +if(sys.platform!="win32"): + os.chdir('./build_msvc64') + callproc('wine ./test.exe') + os.chdir('..') +else: + os.chdir('./build_msvc64') + callproc('test.exe') + os.chdir('..') \ No newline at end of file