This website requires JavaScript.
Jelajahi
Bantuan
Masuk
AI
/
rocm-systems
Menonton
2
Bintang
0
Garpu
0
You've already forked rocm-systems
Kode
Masalah
Tarik Permintaan
Actions
Packages
Projects
Rilis
Wiki
Kegiatan
Files
dab971370e2bebd79ea676530b69672a67731184
rocm-systems
/
projects
/
hip
/
src
T
Riwayat
Alex Voicu
dab971370e
Correctly deal with functions from shared objects, wherein the program visible VA == so_base_va + st_value(function_symbol). Remove quaint usage of pfe for hipMemset (which is actually fill_n).
...
[ROCm/hip commit:
2cacda91bb
]
2017-11-01 22:33:13 +00:00
..
elfio
Make elfio headers private
2017-10-23 10:24:36 +05:30
AMDGPUPTNote.h
Added default module launch api functionality
2017-03-17 13:11:34 -05:00
AMDGPURuntimeMetadata.h
Added default module launch api functionality
2017-03-17 13:11:34 -05:00
code_object_bundle.cpp
This switches HIP from its currently convoluted macro + pfe based dispatch mechanism to a more natural one partially based on the existing module API. The basic idea is that HCC will always correctly emit __global__ functions: as empty-bodied stubs, on host, and as kernels, on device. It then becomes trivial to obtain the mangled name on host, at dispatch, from the function's address, and then to use the mangled name to retrieve the kernel. This should address all problems stemming from serialisation, dubious mismatches due to the manufactured functor, macro-isms et al. It also immediately enables support for generalised globals as a consequence of that being available in the module API. Finally, it will make debug much easier, since the actual names of the __global__ functions will automatically be used in traces etc. One detail is that due to how dispatch works now (hipLaunchKernel and hipLaunchKernelGGL are themselves variadic function templates which deduce the function type of the callee), in certain cases it may be necesssary to insert explicit casts to ensure that the variadic argument list selects a viable overload - this can be observed in some unit tests. Eventually we may be able to remove this limitation, but for now it does not appear terribly onerous. The code is not extremely HIPpie, nor is it fully optimised, but rather is intended as a starting point for the HIP team to make its own.
2017-11-01 15:09:59 +00:00
device_functions.cpp
fixed float2int functions
2017-06-16 09:07:06 -05:00
device_util.cpp
implement __threadfence_system
2017-08-02 08:50:18 +00:00
device_util.h
remove unsupported erf(c)inv related host functionality
2017-07-14 11:31:40 +05:30
env.cpp
added new api hipHccModuleLaunchKernel
2017-03-31 12:11:34 -05:00
env.h
Move core env var processing to env.cpp
2017-01-23 22:34:41 -06:00
grid_launch.cpp
This switches HIP from its currently convoluted macro + pfe based dispatch mechanism to a more natural one partially based on the existing module API. The basic idea is that HCC will always correctly emit __global__ functions: as empty-bodied stubs, on host, and as kernels, on device. It then becomes trivial to obtain the mangled name on host, at dispatch, from the function's address, and then to use the mangled name to retrieve the kernel. This should address all problems stemming from serialisation, dubious mismatches due to the manufactured functor, macro-isms et al. It also immediately enables support for generalised globals as a consequence of that being available in the module API. Finally, it will make debug much easier, since the actual names of the __global__ functions will automatically be used in traces etc. One detail is that due to how dispatch works now (hipLaunchKernel and hipLaunchKernelGGL are themselves variadic function templates which deduce the function type of the callee), in certain cases it may be necesssary to insert explicit casts to ensure that the variadic argument list selects a viable overload - this can be observed in some unit tests. Eventually we may be able to remove this limitation, but for now it does not appear terribly onerous. The code is not extremely HIPpie, nor is it fully optimised, but rather is intended as a starting point for the HIP team to make its own.
2017-11-01 15:09:59 +00:00
hip_context.cpp
Updated context management logic:
2017-08-08 07:02:22 +05:30
hip_db.cpp
Fix hip_db header inclusion path
2017-07-12 16:08:20 +00:00
hip_device.cpp
Add ns-level timer for HIP API routines
2017-10-30 20:20:51 +00:00
hip_error.cpp
added new api hipHccModuleLaunchKernel
2017-03-31 12:11:34 -05:00
hip_event.cpp
Lock streams when waiting on event completion or querying event safety.
2017-08-28 18:40:16 -05:00
hip_fp16.cpp
changed vector types to make sure it generate proper llvm vector types
2017-05-16 21:35:40 -05:00
hip_hc_gfx803.ll
changed vector types to make sure it generate proper llvm vector types
2017-05-16 21:35:40 -05:00
hip_hc.ll
Fixed Hawaii link issues
2017-02-08 12:04:05 -06:00
hip_hcc_internal.h
This switches HIP from its currently convoluted macro + pfe based dispatch mechanism to a more natural one partially based on the existing module API. The basic idea is that HCC will always correctly emit __global__ functions: as empty-bodied stubs, on host, and as kernels, on device. It then becomes trivial to obtain the mangled name on host, at dispatch, from the function's address, and then to use the mangled name to retrieve the kernel. This should address all problems stemming from serialisation, dubious mismatches due to the manufactured functor, macro-isms et al. It also immediately enables support for generalised globals as a consequence of that being available in the module API. Finally, it will make debug much easier, since the actual names of the __global__ functions will automatically be used in traces etc. One detail is that due to how dispatch works now (hipLaunchKernel and hipLaunchKernelGGL are themselves variadic function templates which deduce the function type of the callee), in certain cases it may be necesssary to insert explicit casts to ensure that the variadic argument list selects a viable overload - this can be observed in some unit tests. Eventually we may be able to remove this limitation, but for now it does not appear terribly onerous. The code is not extremely HIPpie, nor is it fully optimised, but rather is intended as a starting point for the HIP team to make its own.
2017-11-01 15:09:59 +00:00
hip_hcc.cpp
Add ns-level timer for HIP API routines
2017-10-30 20:20:51 +00:00
hip_ldg.cpp
Fixed copyright and header names
2017-03-31 12:40:29 -05:00
hip_memory.cpp
Correctly deal with functions from shared objects, wherein the program visible VA == so_base_va + st_value(function_symbol). Remove quaint usage of pfe for hipMemset (which is actually fill_n).
2017-11-01 22:33:13 +00:00
hip_module.cpp
This switches HIP from its currently convoluted macro + pfe based dispatch mechanism to a more natural one partially based on the existing module API. The basic idea is that HCC will always correctly emit __global__ functions: as empty-bodied stubs, on host, and as kernels, on device. It then becomes trivial to obtain the mangled name on host, at dispatch, from the function's address, and then to use the mangled name to retrieve the kernel. This should address all problems stemming from serialisation, dubious mismatches due to the manufactured functor, macro-isms et al. It also immediately enables support for generalised globals as a consequence of that being available in the module API. Finally, it will make debug much easier, since the actual names of the __global__ functions will automatically be used in traces etc. One detail is that due to how dispatch works now (hipLaunchKernel and hipLaunchKernelGGL are themselves variadic function templates which deduce the function type of the callee), in certain cases it may be necesssary to insert explicit casts to ensure that the variadic argument list selects a viable overload - this can be observed in some unit tests. Eventually we may be able to remove this limitation, but for now it does not appear terribly onerous. The code is not extremely HIPpie, nor is it fully optimised, but rather is intended as a starting point for the HIP team to make its own.
2017-11-01 15:09:59 +00:00
hip_peer.cpp
added new api hipHccModuleLaunchKernel
2017-03-31 12:11:34 -05:00
hip_stream.cpp
Add ns-level timer for HIP API routines
2017-10-30 20:20:51 +00:00
hip_texture.cpp
Fixed hipTexture fetch issue
2017-09-25 06:54:29 +05:30
hip_texture.h
HIP Texture Support
2017-07-17 15:16:12 -04:00
hip_util.h
Fixed copyright and header names
2017-03-31 12:40:29 -05:00
math_functions.cpp
remove unsupported erf(c)inv related host functionality
2017-07-14 11:31:40 +05:30
program_state.cpp
Correctly deal with functions from shared objects, wherein the program visible VA == so_base_va + st_value(function_symbol). Remove quaint usage of pfe for hipMemset (which is actually fill_n).
2017-11-01 22:33:13 +00:00
trace_helper.h
Change the #define of GENERIC_GRID_LAUNCH to take valueat compilation, disable warning messages
2017-03-17 14:59:34 -05:00