├── .github └── pull_request_template.md ├── .gitignore ├── CHANGES ├── COPYRIGHT ├── Doxyfile.in ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── examples ├── Makefile.mk ├── contig.c ├── fuf.c ├── hindexed.c ├── hindexed_block.c ├── hvector.c ├── indexed.c ├── indexed_block.c ├── iov.c ├── matrix_util.c ├── matrix_util.h ├── resized.c ├── subarray.c └── vector.c ├── m4 ├── aclocal_am.m4 ├── aclocal_cc.m4 ├── aclocal_check_visibility.m4 ├── aclocal_coverage.m4 ├── aclocal_libs.m4 ├── aclocal_make.m4 ├── aclocal_runlog.m4 ├── aclocal_subcfg.m4 ├── aclocal_util.m4 ├── ax_prefix_config_h.m4 └── ax_tls.m4 ├── maint ├── Version.base.m4 ├── clmake ├── code-cleanup.bash ├── gentests.py ├── hooks │ └── pre-commit ├── release.py ├── version.m4 ├── yaksa.pc.in └── yutils.py ├── src ├── Makefile.mk ├── backend │ ├── Makefile.mk │ ├── cuda │ │ ├── Makefile.mk │ │ ├── cudalt.sh │ │ ├── genpup.py │ │ ├── hooks │ │ │ ├── Makefile.mk │ │ │ ├── yaksuri_cuda_init_hooks.c │ │ │ ├── yaksuri_cudai_info_hooks.c │ │ │ └── yaksuri_cudai_type_hooks.c │ │ ├── include │ │ │ ├── Makefile.mk │ │ │ ├── yaksuri_cuda_post.h │ │ │ ├── yaksuri_cuda_pre.h │ │ │ ├── yaksuri_cudai.h │ │ │ └── yaksuri_cudai_base.h │ │ ├── md │ │ │ ├── Makefile.mk │ │ │ └── yaksuri_cudai_md.c │ │ ├── pup │ │ │ ├── Makefile.mk │ │ │ ├── yaksuri_cudai_event.c │ │ │ ├── yaksuri_cudai_get_ptr_attr.c │ │ │ └── yaksuri_cudai_pup.c │ │ ├── stub │ │ │ ├── Makefile.mk │ │ │ ├── yaksuri_cuda_post.h │ │ │ └── yaksuri_cuda_pre.h │ │ └── subconfigure.m4 │ ├── gencomm.py │ ├── hip │ │ ├── Makefile.mk │ │ ├── genpup.py │ │ ├── hiplt.sh │ │ ├── hooks │ │ │ ├── Makefile.mk │ │ │ ├── yaksuri_hip_init_hooks.c │ │ │ ├── yaksuri_hipi_info_hooks.c │ │ │ └── yaksuri_hipi_type_hooks.c │ │ ├── include │ │ │ ├── Makefile.mk │ │ │ ├── yaksuri_hip_post.h │ │ │ ├── yaksuri_hip_pre.h │ │ │ ├── yaksuri_hipi.h │ │ │ └── yaksuri_hipi_base.h │ │ ├── md │ │ │ ├── Makefile.mk │ │ │ └── yaksuri_hipi_md.c │ │ ├── pup │ │ │ ├── Makefile.mk │ │ │ ├── yaksuri_hipi_event.c │ │ │ ├── yaksuri_hipi_get_ptr_attr.c │ │ │ └── yaksuri_hipi_pup.c │ │ ├── stub │ │ │ ├── Makefile.mk │ │ │ ├── yaksuri_hip_post.h │ │ │ └── yaksuri_hip_pre.h │ │ └── subconfigure.m4 │ ├── seq │ │ ├── Makefile.mk │ │ ├── genpup.py │ │ ├── hooks │ │ │ ├── Makefile.mk │ │ │ └── yaksuri_seq_hooks.c │ │ ├── include │ │ │ ├── Makefile.mk │ │ │ ├── yaksuri_seq_post.h │ │ │ ├── yaksuri_seq_pre.h │ │ │ └── yaksuri_seqi.h │ │ └── pup │ │ │ ├── Makefile.mk │ │ │ └── yaksuri_seq_pup.c │ ├── src │ │ ├── Makefile.mk │ │ ├── yaksur_hooks.c │ │ ├── yaksur_post.h │ │ ├── yaksur_pre.h │ │ ├── yaksur_pup.c │ │ ├── yaksur_request.c │ │ ├── yaksuri.h │ │ └── yaksuri_progress.c │ └── ze │ │ ├── Makefile.mk │ │ ├── genpup.py │ │ ├── hooks │ │ ├── Makefile.mk │ │ ├── yaksuri_ze_init_hooks.c │ │ ├── yaksuri_zei_info_hooks.c │ │ └── yaksuri_zei_type_hooks.c │ │ ├── include │ │ ├── Makefile.mk │ │ ├── yaksuri_ze_post.h │ │ ├── yaksuri_ze_pre.h │ │ ├── yaksuri_zei.h │ │ └── yaksuri_zei_md.h │ │ ├── md │ │ ├── Makefile.mk │ │ └── yaksuri_zei_md.c │ │ ├── pup │ │ ├── Makefile.mk │ │ ├── inline.py │ │ ├── yaksuri_zei_event.c │ │ ├── yaksuri_zei_get_ptr_attr.c │ │ └── yaksuri_zei_pup.c │ │ ├── stub │ │ ├── Makefile.mk │ │ ├── yaksuri_ze_post.h │ │ └── yaksuri_ze_pre.h │ │ └── subconfigure.m4 ├── external │ ├── Makefile.mk │ ├── yuthash.h │ └── yutlist.h ├── frontend │ ├── Makefile.mk │ ├── bounds │ │ ├── Makefile.mk │ │ └── yaksa_bounds.c │ ├── flatten │ │ ├── Makefile.mk │ │ ├── yaksa_flatten.c │ │ ├── yaksa_flatten_size.c │ │ └── yaksa_unflatten.c │ ├── include │ │ ├── Makefile.mk │ │ ├── yaksa.h.in │ │ └── yaksi.h │ ├── info │ │ ├── Makefile.mk │ │ └── yaksa_info.c │ ├── init │ │ ├── Makefile.mk │ │ └── yaksa_init.c │ ├── iov │ │ ├── Makefile.mk │ │ ├── yaksa_iov.c │ │ ├── yaksa_iov_len.c │ │ └── yaksa_iov_len_max.c │ ├── pup │ │ ├── Makefile.mk │ │ ├── yaksa_ipack.c │ │ ├── yaksa_iunpack.c │ │ ├── yaksa_pack.c │ │ ├── yaksa_pack_stream.c │ │ ├── yaksa_request.c │ │ ├── yaksa_unpack.c │ │ ├── yaksa_unpack_stream.c │ │ ├── yaksi_ipack.c │ │ ├── yaksi_ipack_backend.c │ │ ├── yaksi_ipack_element.c │ │ ├── yaksi_iunpack.c │ │ ├── yaksi_iunpack_backend.c │ │ ├── yaksi_iunpack_element.c │ │ └── yaksi_request.c │ └── types │ │ ├── Makefile.mk │ │ ├── yaksa_blkindx.c │ │ ├── yaksa_contig.c │ │ ├── yaksa_dup.c │ │ ├── yaksa_free.c │ │ ├── yaksa_indexed.c │ │ ├── yaksa_resized.c │ │ ├── yaksa_struct.c │ │ ├── yaksa_subarray.c │ │ ├── yaksa_vector.c │ │ └── yaksi_type.c └── util │ ├── Makefile.mk │ ├── yaksu.h │ ├── yaksu_atomics.c │ ├── yaksu_atomics.h │ ├── yaksu_base.h │ ├── yaksu_buffer_pool.c │ ├── yaksu_buffer_pool.h │ ├── yaksu_handle_pool.c │ └── yaksu_handle_pool.h └── test ├── Makefile.mk ├── dtpools ├── Makefile.mk ├── README └── src │ ├── Makefile.mk │ ├── dtpools.c │ ├── dtpools.h │ ├── dtpools_attr.c │ ├── dtpools_custom.c │ ├── dtpools_desc.c │ ├── dtpools_init_verify.c │ ├── dtpools_internal.h │ └── dtpools_misc.c ├── flatten ├── Makefile.mk └── flatten.c ├── iov ├── Makefile.mk └── iov.c ├── pack ├── Makefile.mk ├── pack-common.c ├── pack-common.h ├── pack-cuda.c ├── pack-hip.c ├── pack-ze.c └── pack.c ├── runtests.py ├── simple ├── Makefile.mk ├── lbub.c ├── simple_test.c ├── test_contig.c └── threaded_test.c └── testlist /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/configure.ac -------------------------------------------------------------------------------- /examples/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/Makefile.mk -------------------------------------------------------------------------------- /examples/contig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/contig.c -------------------------------------------------------------------------------- /examples/fuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/fuf.c -------------------------------------------------------------------------------- /examples/hindexed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/hindexed.c -------------------------------------------------------------------------------- /examples/hindexed_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/hindexed_block.c -------------------------------------------------------------------------------- /examples/hvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/hvector.c -------------------------------------------------------------------------------- /examples/indexed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/indexed.c -------------------------------------------------------------------------------- /examples/indexed_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/indexed_block.c -------------------------------------------------------------------------------- /examples/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/iov.c -------------------------------------------------------------------------------- /examples/matrix_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/matrix_util.c -------------------------------------------------------------------------------- /examples/matrix_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/matrix_util.h -------------------------------------------------------------------------------- /examples/resized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/resized.c -------------------------------------------------------------------------------- /examples/subarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/subarray.c -------------------------------------------------------------------------------- /examples/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/examples/vector.c -------------------------------------------------------------------------------- /m4/aclocal_am.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/aclocal_am.m4 -------------------------------------------------------------------------------- /m4/aclocal_cc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/aclocal_cc.m4 -------------------------------------------------------------------------------- /m4/aclocal_check_visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/aclocal_check_visibility.m4 -------------------------------------------------------------------------------- /m4/aclocal_coverage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/aclocal_coverage.m4 -------------------------------------------------------------------------------- /m4/aclocal_libs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/aclocal_libs.m4 -------------------------------------------------------------------------------- /m4/aclocal_make.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/aclocal_make.m4 -------------------------------------------------------------------------------- /m4/aclocal_runlog.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/aclocal_runlog.m4 -------------------------------------------------------------------------------- /m4/aclocal_subcfg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/aclocal_subcfg.m4 -------------------------------------------------------------------------------- /m4/aclocal_util.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/aclocal_util.m4 -------------------------------------------------------------------------------- /m4/ax_prefix_config_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/ax_prefix_config_h.m4 -------------------------------------------------------------------------------- /m4/ax_tls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/m4/ax_tls.m4 -------------------------------------------------------------------------------- /maint/Version.base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/maint/Version.base.m4 -------------------------------------------------------------------------------- /maint/clmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/maint/clmake -------------------------------------------------------------------------------- /maint/code-cleanup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/maint/code-cleanup.bash -------------------------------------------------------------------------------- /maint/gentests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/maint/gentests.py -------------------------------------------------------------------------------- /maint/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/maint/hooks/pre-commit -------------------------------------------------------------------------------- /maint/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/maint/release.py -------------------------------------------------------------------------------- /maint/version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/maint/version.m4 -------------------------------------------------------------------------------- /maint/yaksa.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/maint/yaksa.pc.in -------------------------------------------------------------------------------- /maint/yutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/maint/yutils.py -------------------------------------------------------------------------------- /src/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/Makefile.mk -------------------------------------------------------------------------------- /src/backend/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/Makefile.mk -------------------------------------------------------------------------------- /src/backend/cuda/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/Makefile.mk -------------------------------------------------------------------------------- /src/backend/cuda/cudalt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/cudalt.sh -------------------------------------------------------------------------------- /src/backend/cuda/genpup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/genpup.py -------------------------------------------------------------------------------- /src/backend/cuda/hooks/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/hooks/Makefile.mk -------------------------------------------------------------------------------- /src/backend/cuda/hooks/yaksuri_cuda_init_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/hooks/yaksuri_cuda_init_hooks.c -------------------------------------------------------------------------------- /src/backend/cuda/hooks/yaksuri_cudai_info_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/hooks/yaksuri_cudai_info_hooks.c -------------------------------------------------------------------------------- /src/backend/cuda/hooks/yaksuri_cudai_type_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/hooks/yaksuri_cudai_type_hooks.c -------------------------------------------------------------------------------- /src/backend/cuda/include/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/include/Makefile.mk -------------------------------------------------------------------------------- /src/backend/cuda/include/yaksuri_cuda_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/include/yaksuri_cuda_post.h -------------------------------------------------------------------------------- /src/backend/cuda/include/yaksuri_cuda_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/include/yaksuri_cuda_pre.h -------------------------------------------------------------------------------- /src/backend/cuda/include/yaksuri_cudai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/include/yaksuri_cudai.h -------------------------------------------------------------------------------- /src/backend/cuda/include/yaksuri_cudai_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/include/yaksuri_cudai_base.h -------------------------------------------------------------------------------- /src/backend/cuda/md/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/md/Makefile.mk -------------------------------------------------------------------------------- /src/backend/cuda/md/yaksuri_cudai_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/md/yaksuri_cudai_md.c -------------------------------------------------------------------------------- /src/backend/cuda/pup/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/pup/Makefile.mk -------------------------------------------------------------------------------- /src/backend/cuda/pup/yaksuri_cudai_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/pup/yaksuri_cudai_event.c -------------------------------------------------------------------------------- /src/backend/cuda/pup/yaksuri_cudai_get_ptr_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/pup/yaksuri_cudai_get_ptr_attr.c -------------------------------------------------------------------------------- /src/backend/cuda/pup/yaksuri_cudai_pup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/pup/yaksuri_cudai_pup.c -------------------------------------------------------------------------------- /src/backend/cuda/stub/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/stub/Makefile.mk -------------------------------------------------------------------------------- /src/backend/cuda/stub/yaksuri_cuda_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/stub/yaksuri_cuda_post.h -------------------------------------------------------------------------------- /src/backend/cuda/stub/yaksuri_cuda_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/stub/yaksuri_cuda_pre.h -------------------------------------------------------------------------------- /src/backend/cuda/subconfigure.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/cuda/subconfigure.m4 -------------------------------------------------------------------------------- /src/backend/gencomm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/gencomm.py -------------------------------------------------------------------------------- /src/backend/hip/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/Makefile.mk -------------------------------------------------------------------------------- /src/backend/hip/genpup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/genpup.py -------------------------------------------------------------------------------- /src/backend/hip/hiplt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/hiplt.sh -------------------------------------------------------------------------------- /src/backend/hip/hooks/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/hooks/Makefile.mk -------------------------------------------------------------------------------- /src/backend/hip/hooks/yaksuri_hip_init_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/hooks/yaksuri_hip_init_hooks.c -------------------------------------------------------------------------------- /src/backend/hip/hooks/yaksuri_hipi_info_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/hooks/yaksuri_hipi_info_hooks.c -------------------------------------------------------------------------------- /src/backend/hip/hooks/yaksuri_hipi_type_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/hooks/yaksuri_hipi_type_hooks.c -------------------------------------------------------------------------------- /src/backend/hip/include/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/include/Makefile.mk -------------------------------------------------------------------------------- /src/backend/hip/include/yaksuri_hip_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/include/yaksuri_hip_post.h -------------------------------------------------------------------------------- /src/backend/hip/include/yaksuri_hip_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/include/yaksuri_hip_pre.h -------------------------------------------------------------------------------- /src/backend/hip/include/yaksuri_hipi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/include/yaksuri_hipi.h -------------------------------------------------------------------------------- /src/backend/hip/include/yaksuri_hipi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/include/yaksuri_hipi_base.h -------------------------------------------------------------------------------- /src/backend/hip/md/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/md/Makefile.mk -------------------------------------------------------------------------------- /src/backend/hip/md/yaksuri_hipi_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/md/yaksuri_hipi_md.c -------------------------------------------------------------------------------- /src/backend/hip/pup/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/pup/Makefile.mk -------------------------------------------------------------------------------- /src/backend/hip/pup/yaksuri_hipi_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/pup/yaksuri_hipi_event.c -------------------------------------------------------------------------------- /src/backend/hip/pup/yaksuri_hipi_get_ptr_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/pup/yaksuri_hipi_get_ptr_attr.c -------------------------------------------------------------------------------- /src/backend/hip/pup/yaksuri_hipi_pup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/pup/yaksuri_hipi_pup.c -------------------------------------------------------------------------------- /src/backend/hip/stub/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/stub/Makefile.mk -------------------------------------------------------------------------------- /src/backend/hip/stub/yaksuri_hip_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/stub/yaksuri_hip_post.h -------------------------------------------------------------------------------- /src/backend/hip/stub/yaksuri_hip_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/stub/yaksuri_hip_pre.h -------------------------------------------------------------------------------- /src/backend/hip/subconfigure.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/hip/subconfigure.m4 -------------------------------------------------------------------------------- /src/backend/seq/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/Makefile.mk -------------------------------------------------------------------------------- /src/backend/seq/genpup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/genpup.py -------------------------------------------------------------------------------- /src/backend/seq/hooks/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/hooks/Makefile.mk -------------------------------------------------------------------------------- /src/backend/seq/hooks/yaksuri_seq_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/hooks/yaksuri_seq_hooks.c -------------------------------------------------------------------------------- /src/backend/seq/include/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/include/Makefile.mk -------------------------------------------------------------------------------- /src/backend/seq/include/yaksuri_seq_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/include/yaksuri_seq_post.h -------------------------------------------------------------------------------- /src/backend/seq/include/yaksuri_seq_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/include/yaksuri_seq_pre.h -------------------------------------------------------------------------------- /src/backend/seq/include/yaksuri_seqi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/include/yaksuri_seqi.h -------------------------------------------------------------------------------- /src/backend/seq/pup/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/pup/Makefile.mk -------------------------------------------------------------------------------- /src/backend/seq/pup/yaksuri_seq_pup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/seq/pup/yaksuri_seq_pup.c -------------------------------------------------------------------------------- /src/backend/src/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/src/Makefile.mk -------------------------------------------------------------------------------- /src/backend/src/yaksur_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/src/yaksur_hooks.c -------------------------------------------------------------------------------- /src/backend/src/yaksur_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/src/yaksur_post.h -------------------------------------------------------------------------------- /src/backend/src/yaksur_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/src/yaksur_pre.h -------------------------------------------------------------------------------- /src/backend/src/yaksur_pup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/src/yaksur_pup.c -------------------------------------------------------------------------------- /src/backend/src/yaksur_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/src/yaksur_request.c -------------------------------------------------------------------------------- /src/backend/src/yaksuri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/src/yaksuri.h -------------------------------------------------------------------------------- /src/backend/src/yaksuri_progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/src/yaksuri_progress.c -------------------------------------------------------------------------------- /src/backend/ze/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/Makefile.mk -------------------------------------------------------------------------------- /src/backend/ze/genpup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/genpup.py -------------------------------------------------------------------------------- /src/backend/ze/hooks/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/hooks/Makefile.mk -------------------------------------------------------------------------------- /src/backend/ze/hooks/yaksuri_ze_init_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/hooks/yaksuri_ze_init_hooks.c -------------------------------------------------------------------------------- /src/backend/ze/hooks/yaksuri_zei_info_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/hooks/yaksuri_zei_info_hooks.c -------------------------------------------------------------------------------- /src/backend/ze/hooks/yaksuri_zei_type_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/hooks/yaksuri_zei_type_hooks.c -------------------------------------------------------------------------------- /src/backend/ze/include/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/include/Makefile.mk -------------------------------------------------------------------------------- /src/backend/ze/include/yaksuri_ze_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/include/yaksuri_ze_post.h -------------------------------------------------------------------------------- /src/backend/ze/include/yaksuri_ze_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/include/yaksuri_ze_pre.h -------------------------------------------------------------------------------- /src/backend/ze/include/yaksuri_zei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/include/yaksuri_zei.h -------------------------------------------------------------------------------- /src/backend/ze/include/yaksuri_zei_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/include/yaksuri_zei_md.h -------------------------------------------------------------------------------- /src/backend/ze/md/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/md/Makefile.mk -------------------------------------------------------------------------------- /src/backend/ze/md/yaksuri_zei_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/md/yaksuri_zei_md.c -------------------------------------------------------------------------------- /src/backend/ze/pup/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/pup/Makefile.mk -------------------------------------------------------------------------------- /src/backend/ze/pup/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/pup/inline.py -------------------------------------------------------------------------------- /src/backend/ze/pup/yaksuri_zei_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/pup/yaksuri_zei_event.c -------------------------------------------------------------------------------- /src/backend/ze/pup/yaksuri_zei_get_ptr_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/pup/yaksuri_zei_get_ptr_attr.c -------------------------------------------------------------------------------- /src/backend/ze/pup/yaksuri_zei_pup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/pup/yaksuri_zei_pup.c -------------------------------------------------------------------------------- /src/backend/ze/stub/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/stub/Makefile.mk -------------------------------------------------------------------------------- /src/backend/ze/stub/yaksuri_ze_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/stub/yaksuri_ze_post.h -------------------------------------------------------------------------------- /src/backend/ze/stub/yaksuri_ze_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/stub/yaksuri_ze_pre.h -------------------------------------------------------------------------------- /src/backend/ze/subconfigure.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/backend/ze/subconfigure.m4 -------------------------------------------------------------------------------- /src/external/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/external/Makefile.mk -------------------------------------------------------------------------------- /src/external/yuthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/external/yuthash.h -------------------------------------------------------------------------------- /src/external/yutlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/external/yutlist.h -------------------------------------------------------------------------------- /src/frontend/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/Makefile.mk -------------------------------------------------------------------------------- /src/frontend/bounds/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/bounds/Makefile.mk -------------------------------------------------------------------------------- /src/frontend/bounds/yaksa_bounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/bounds/yaksa_bounds.c -------------------------------------------------------------------------------- /src/frontend/flatten/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/flatten/Makefile.mk -------------------------------------------------------------------------------- /src/frontend/flatten/yaksa_flatten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/flatten/yaksa_flatten.c -------------------------------------------------------------------------------- /src/frontend/flatten/yaksa_flatten_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/flatten/yaksa_flatten_size.c -------------------------------------------------------------------------------- /src/frontend/flatten/yaksa_unflatten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/flatten/yaksa_unflatten.c -------------------------------------------------------------------------------- /src/frontend/include/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/include/Makefile.mk -------------------------------------------------------------------------------- /src/frontend/include/yaksa.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/include/yaksa.h.in -------------------------------------------------------------------------------- /src/frontend/include/yaksi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/include/yaksi.h -------------------------------------------------------------------------------- /src/frontend/info/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/info/Makefile.mk -------------------------------------------------------------------------------- /src/frontend/info/yaksa_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/info/yaksa_info.c -------------------------------------------------------------------------------- /src/frontend/init/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/init/Makefile.mk -------------------------------------------------------------------------------- /src/frontend/init/yaksa_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/init/yaksa_init.c -------------------------------------------------------------------------------- /src/frontend/iov/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/iov/Makefile.mk -------------------------------------------------------------------------------- /src/frontend/iov/yaksa_iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/iov/yaksa_iov.c -------------------------------------------------------------------------------- /src/frontend/iov/yaksa_iov_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/iov/yaksa_iov_len.c -------------------------------------------------------------------------------- /src/frontend/iov/yaksa_iov_len_max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/iov/yaksa_iov_len_max.c -------------------------------------------------------------------------------- /src/frontend/pup/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/Makefile.mk -------------------------------------------------------------------------------- /src/frontend/pup/yaksa_ipack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksa_ipack.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksa_iunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksa_iunpack.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksa_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksa_pack.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksa_pack_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksa_pack_stream.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksa_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksa_request.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksa_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksa_unpack.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksa_unpack_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksa_unpack_stream.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksi_ipack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksi_ipack.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksi_ipack_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksi_ipack_backend.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksi_ipack_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksi_ipack_element.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksi_iunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksi_iunpack.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksi_iunpack_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksi_iunpack_backend.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksi_iunpack_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksi_iunpack_element.c -------------------------------------------------------------------------------- /src/frontend/pup/yaksi_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/pup/yaksi_request.c -------------------------------------------------------------------------------- /src/frontend/types/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/Makefile.mk -------------------------------------------------------------------------------- /src/frontend/types/yaksa_blkindx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksa_blkindx.c -------------------------------------------------------------------------------- /src/frontend/types/yaksa_contig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksa_contig.c -------------------------------------------------------------------------------- /src/frontend/types/yaksa_dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksa_dup.c -------------------------------------------------------------------------------- /src/frontend/types/yaksa_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksa_free.c -------------------------------------------------------------------------------- /src/frontend/types/yaksa_indexed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksa_indexed.c -------------------------------------------------------------------------------- /src/frontend/types/yaksa_resized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksa_resized.c -------------------------------------------------------------------------------- /src/frontend/types/yaksa_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksa_struct.c -------------------------------------------------------------------------------- /src/frontend/types/yaksa_subarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksa_subarray.c -------------------------------------------------------------------------------- /src/frontend/types/yaksa_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksa_vector.c -------------------------------------------------------------------------------- /src/frontend/types/yaksi_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/frontend/types/yaksi_type.c -------------------------------------------------------------------------------- /src/util/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/util/Makefile.mk -------------------------------------------------------------------------------- /src/util/yaksu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/util/yaksu.h -------------------------------------------------------------------------------- /src/util/yaksu_atomics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/util/yaksu_atomics.c -------------------------------------------------------------------------------- /src/util/yaksu_atomics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/util/yaksu_atomics.h -------------------------------------------------------------------------------- /src/util/yaksu_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/util/yaksu_base.h -------------------------------------------------------------------------------- /src/util/yaksu_buffer_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/util/yaksu_buffer_pool.c -------------------------------------------------------------------------------- /src/util/yaksu_buffer_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/util/yaksu_buffer_pool.h -------------------------------------------------------------------------------- /src/util/yaksu_handle_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/util/yaksu_handle_pool.c -------------------------------------------------------------------------------- /src/util/yaksu_handle_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/src/util/yaksu_handle_pool.h -------------------------------------------------------------------------------- /test/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/Makefile.mk -------------------------------------------------------------------------------- /test/dtpools/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/Makefile.mk -------------------------------------------------------------------------------- /test/dtpools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/README -------------------------------------------------------------------------------- /test/dtpools/src/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/src/Makefile.mk -------------------------------------------------------------------------------- /test/dtpools/src/dtpools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/src/dtpools.c -------------------------------------------------------------------------------- /test/dtpools/src/dtpools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/src/dtpools.h -------------------------------------------------------------------------------- /test/dtpools/src/dtpools_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/src/dtpools_attr.c -------------------------------------------------------------------------------- /test/dtpools/src/dtpools_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/src/dtpools_custom.c -------------------------------------------------------------------------------- /test/dtpools/src/dtpools_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/src/dtpools_desc.c -------------------------------------------------------------------------------- /test/dtpools/src/dtpools_init_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/src/dtpools_init_verify.c -------------------------------------------------------------------------------- /test/dtpools/src/dtpools_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/src/dtpools_internal.h -------------------------------------------------------------------------------- /test/dtpools/src/dtpools_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/dtpools/src/dtpools_misc.c -------------------------------------------------------------------------------- /test/flatten/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/flatten/Makefile.mk -------------------------------------------------------------------------------- /test/flatten/flatten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/flatten/flatten.c -------------------------------------------------------------------------------- /test/iov/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/iov/Makefile.mk -------------------------------------------------------------------------------- /test/iov/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/iov/iov.c -------------------------------------------------------------------------------- /test/pack/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/pack/Makefile.mk -------------------------------------------------------------------------------- /test/pack/pack-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/pack/pack-common.c -------------------------------------------------------------------------------- /test/pack/pack-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/pack/pack-common.h -------------------------------------------------------------------------------- /test/pack/pack-cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/pack/pack-cuda.c -------------------------------------------------------------------------------- /test/pack/pack-hip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/pack/pack-hip.c -------------------------------------------------------------------------------- /test/pack/pack-ze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/pack/pack-ze.c -------------------------------------------------------------------------------- /test/pack/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/pack/pack.c -------------------------------------------------------------------------------- /test/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/runtests.py -------------------------------------------------------------------------------- /test/simple/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/simple/Makefile.mk -------------------------------------------------------------------------------- /test/simple/lbub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/simple/lbub.c -------------------------------------------------------------------------------- /test/simple/simple_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/simple/simple_test.c -------------------------------------------------------------------------------- /test/simple/test_contig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/simple/test_contig.c -------------------------------------------------------------------------------- /test/simple/threaded_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmodels/yaksa/HEAD/test/simple/threaded_test.c -------------------------------------------------------------------------------- /test/testlist: -------------------------------------------------------------------------------- 1 | simple 2 | pack 3 | iov 4 | flatten 5 | --------------------------------------------------------------------------------