├── .github └── workflows │ └── linux.yaml ├── .gitignore ├── AsmGen ├── AsmGen.csproj ├── AsmGen.sln ├── DataFiles │ ├── BranchhistTestBlock.c │ ├── CommonFunctions.c │ ├── GccBranchHistFunction.c │ ├── GccIndirectBranchFunction.c │ ├── IndirectBranchTestBlock.c │ └── clammicrobench.vcxproj_template ├── IUarchTest.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── UarchTest.cs ├── UarchTestHelpers.cs └── tests │ ├── A73RobTest.cs │ ├── AddLoopTest.cs │ ├── AddNsq.cs │ ├── AddSchedTest.cs │ ├── AddvNsq.cs │ ├── AddvSchedTest.cs │ ├── AeseSchedTest.cs │ ├── AesencNsq.cs │ ├── BranchBufferTest.cs │ ├── BranchHistoryTest.cs │ ├── BtbTest.cs │ ├── CvtSchedTest.cs │ ├── FAdd256RfTest.cs │ ├── Fadd128RfTest.cs │ ├── Fadd128SchedTest.cs │ ├── Fadd256SchedTest.cs │ ├── FaddNsq.cs │ ├── FaddSchedTest.cs │ ├── FcmpSchedTest.cs │ ├── FlagRfTest.cs │ ├── Fma256SchedTest.cs │ ├── FmovSched.cs │ ├── FmulSchedTest.cs │ ├── FpRfTest.cs │ ├── FpStoreDataNsq.cs │ ├── IdrfTest.cs │ ├── IndirectBranchTest.cs │ ├── IntRfDepStoreTest.cs │ ├── IntRfTest.cs │ ├── JsCvtNsq.cs │ ├── JsCvtSched.cs │ ├── JumpNsqTest.cs │ ├── JumpSchedTest.cs │ ├── LdqTest.cs │ ├── LeaSchedTest.cs │ ├── LoadNsq.cs │ ├── LoadSchedTest.cs │ ├── MaddSchedTest.cs │ ├── MaskRfTest.cs │ ├── MixAddJumpSched.cs │ ├── MixAddvJsCvtNsq.cs │ ├── MixAddvJsCvtSched.cs │ ├── MixBranchStoreTest.cs │ ├── MixFAdd256and32RfTest.cs │ ├── MixFpRfDepBranchTest.cs │ ├── MixFpVecRfTest.cs │ ├── MixIntRfDepBranchTest.cs │ ├── MixIntVec128RfTest.cs │ ├── MixIntrfFprfTest.cs │ ├── MixJumpStoreDataSched.cs │ ├── MixJumpStoreSchedTest.cs │ ├── MixJumpThenAddSched.cs │ ├── MixLdqStqTest.cs │ ├── MixLoadStoreDivSchedTest.cs │ ├── MixLoadStoreSchedTest.cs │ ├── MixStoreDivSchedTest.cs │ ├── MixVec512Vec256BlockRfTest.cs │ ├── MixVec512Vec256RfTest.cs │ ├── MmxRfTest.cs │ ├── MulSchedTest.cs │ ├── NopLoopTest.cs │ ├── PdepSchedTest.cs │ ├── ReturnStackTest.cs │ ├── RobTest.cs │ ├── RorSchedTest.cs │ ├── ShlSchedTest.cs │ ├── StoreDataDivNsqTest.cs │ ├── StoreDataNsqTest.cs │ ├── StoreDataSchedTest.cs │ ├── StoreDivNsqTest.cs │ ├── StoreDivSchedTest.cs │ ├── StoreNsq.cs │ ├── StoreSchedTest.cs │ ├── Stq128Test.cs │ ├── Stq512Test.cs │ ├── StqTest.cs │ ├── TakenBranchBufferTest.cs │ ├── TakenJumpSchedTest.cs │ ├── Vec512RfTest.cs │ ├── VecMulNsq.cs │ └── ZeroRobTest.cs ├── CoherencyLatency ├── CoherencyLatency.cpp ├── CoherencyLatency.sln ├── CoherencyLatency.vcxproj ├── Makefile ├── PThreadsCoherencyLatency.c └── c2cparse │ ├── Program.cs │ ├── c2cparse.csproj │ └── c2cparse.sln ├── Common ├── arch_detect.mk ├── ci_gpumemlatency.sh ├── ci_package.sh ├── perfmon.h ├── timing.c └── timing.h ├── CoreClockChecker ├── BoostClockChecker.c ├── BoostClockChecker_arm.s ├── BoostClockChecker_x86.s ├── CoreClockChecker.c ├── CoreClockChecker_x86.s ├── Makefile └── WinCoreClockChecker │ ├── CoreClockCheckFunctions.asm │ ├── WinCoreClockChecker.cpp │ ├── WinCoreClockChecker.sln │ ├── WinCoreClockChecker.vcxproj │ └── WinCoreClockChecker.vcxproj.filters ├── GpuMemLatency ├── Makefile ├── OpenCL │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── CL │ │ │ ├── cl.h │ │ │ ├── cl_d3d10.h │ │ │ ├── cl_d3d11.h │ │ │ ├── cl_dx9_media_sharing.h │ │ │ ├── cl_dx9_media_sharing_intel.h │ │ │ ├── cl_egl.h │ │ │ ├── cl_ext.h │ │ │ ├── cl_ext_intel.h │ │ │ ├── cl_gl.h │ │ │ ├── cl_gl_ext.h │ │ │ ├── cl_half.h │ │ │ ├── cl_icd.h │ │ │ ├── cl_platform.h │ │ │ ├── cl_va_api_media_sharing_intel.h │ │ │ ├── cl_version.h │ │ │ └── opencl.h │ └── lib │ │ └── OpenCL.lib ├── atomic_test.c ├── bw_test.c ├── common.c ├── instruction_rate.c ├── instruction_rate_fp16_kernel.cl ├── instruction_rate_fp64_kernel.cl ├── instruction_rate_kernel.cl ├── kernel.cl ├── kernels │ ├── atomic_exec_latency_test.cl │ ├── buffer_bw_test.cl │ ├── c2c_atomic_exec_latency_test.cl │ ├── constant_unrolled_latency_test.cl │ ├── ldst_bw_test.cl │ ├── local_64_bw_test.cl │ ├── local_atomic_latency_test.cl │ ├── local_bw_test.cl │ ├── local_float4_bw_test.cl │ ├── local_unrolled_latency_test.cl │ ├── scalar_unrolled_latency_test.cl │ ├── sum_bw_test.cl │ ├── tex_bw_test.cl │ ├── tex_latency_test.cl │ └── unrolled_latency_test.cl ├── latency_test.c ├── local_mem_latency_kernel.cl ├── opencltest.c ├── opencltest.h ├── opencltest.sln ├── opencltest.vcxproj ├── opencltest.vcxproj.filters └── texturetest.c ├── InstructionRate ├── Makefile ├── arm_instructionrate.c ├── arm_instructionrate.s ├── riscv_instructionrate.c ├── riscv_instructionrate.s ├── test.s ├── x86_fusion.c ├── x86_fusion.s ├── x86_instructionrate.c └── x86_instructionrate.s ├── LICENSE ├── LoadedMemoryLatency ├── LoadedMemoryLatency.c ├── LoadedMemoryLatency │ ├── LoadedMemoryLatency.asm │ ├── LoadedMemoryLatency.cpp │ ├── LoadedMemoryLatency.sln │ ├── LoadedMemoryLatency.vcxproj │ └── LoadedMemoryLatency.vcxproj.filters ├── LoadedMemoryLatency_amd64.s ├── LoadedMemoryLatency_arm.s └── Makefile ├── Makefile ├── MemoryBandwidth ├── Makefile ├── MemoryBandwidth.c ├── MemoryBandwidth │ ├── MemoryBandwidth.cpp │ ├── MemoryBandwidth.sln │ ├── MemoryBandwidth.vcxproj │ ├── MemoryBandwidth.vcxproj.filters │ ├── MemoryBandwidthFunctions.asm │ └── MemoryBandwidthFunctions32.asm ├── MemoryBandwidth_arm.s ├── MemoryBandwidth_riscv.s ├── MemoryBandwidth_x86.s ├── MixedMemoryBandwidthTest │ ├── MemoryBandwidth.h │ ├── MemoryBandwidthFunctions.asm │ ├── MixedMemoryBandwidthTest.cpp │ ├── MixedMemoryBandwidthTest.vcxproj │ └── MixedMemoryBandwidthTest.vcxproj.filters └── README.md ├── MemoryLatency ├── Makefile ├── MemoryLatency.c ├── MemoryLatency.cpp ├── MemoryLatency.sln ├── MemoryLatency.vcxproj ├── MemoryLatencyFunctions.asm ├── MemoryLatency_arm.s ├── MemoryLatency_i686.s ├── MemoryLatency_riscv.s ├── MemoryLatency_x86.s └── README.md ├── README.md ├── mt_instructionrate ├── InstructionRateFunctions.asm ├── Makefile ├── Project1.vcxproj ├── Project1.vcxproj.filters ├── arm_mt_instructionrate.c ├── arm_mt_instructionrate.s ├── mt_instructionrate.c ├── mt_instructionrate.sln ├── ppc64_mt_instructionrate.c ├── ppc64_mt_instructionrate.s ├── x86_mt_instructionrate ├── x86_mt_instructionrate.c └── x86_mt_instructionrate.s └── svm ├── OpenCL ├── include │ └── CL │ │ ├── Utils │ │ ├── Context.h │ │ ├── Context.hpp │ │ ├── Detail.hpp │ │ ├── Device.hpp │ │ ├── Error.h │ │ ├── Error.hpp │ │ ├── ErrorCodes.h │ │ ├── Event.h │ │ ├── Event.hpp │ │ ├── File.h │ │ ├── File.hpp │ │ ├── InteropContext.hpp │ │ ├── OpenCLUtilsCpp_Export.h │ │ ├── OpenCLUtils_Export.h │ │ ├── Platform.hpp │ │ ├── Utils.h │ │ └── Utils.hpp │ │ ├── cl.h │ │ ├── cl2.hpp │ │ ├── cl_d3d10.h │ │ ├── cl_d3d11.h │ │ ├── cl_dx9_media_sharing.h │ │ ├── cl_dx9_media_sharing_intel.h │ │ ├── cl_egl.h │ │ ├── cl_ext.h │ │ ├── cl_ext_intel.h │ │ ├── cl_function_types.h │ │ ├── cl_gl.h │ │ ├── cl_gl_ext.h │ │ ├── cl_half.h │ │ ├── cl_icd.h │ │ ├── cl_layer.h │ │ ├── cl_platform.h │ │ ├── cl_va_api_media_sharing_intel.h │ │ ├── cl_version.h │ │ ├── opencl.h │ │ └── opencl.hpp ├── lib │ ├── OpenCL.lib │ ├── OpenCLExt.lib │ ├── OpenCLUtils.lib │ ├── OpenCLUtilsCpp.lib │ ├── OpenCLUtilsCppd.lib │ ├── OpenCLUtilsd.lib │ └── pkgconfig │ │ └── OpenCL.pc └── share │ ├── cmake │ ├── OpenCL │ │ ├── OpenCLConfig.cmake │ │ └── OpenCLConfigVersion.cmake │ ├── OpenCLExtensionLoader │ │ ├── OpenCLExtensionLoaderConfig.cmake │ │ ├── OpenCLExtensionLoaderConfigVersion.cmake │ │ ├── OpenCLExtensionLoaderTargets-debug.cmake │ │ ├── OpenCLExtensionLoaderTargets-release.cmake │ │ └── OpenCLExtensionLoaderTargets.cmake │ ├── OpenCLHeaders │ │ ├── OpenCLHeadersConfig.cmake │ │ ├── OpenCLHeadersConfigVersion.cmake │ │ └── OpenCLHeadersTargets.cmake │ ├── OpenCLHeadersCpp │ │ ├── OpenCLHeadersCppConfig.cmake │ │ ├── OpenCLHeadersCppConfigVersion.cmake │ │ └── OpenCLHeadersCppTargets.cmake │ ├── OpenCLICDLoader │ │ ├── OpenCLICDLoaderConfig.cmake │ │ ├── OpenCLICDLoaderConfigVersion.cmake │ │ ├── OpenCLICDLoaderTargets-debug.cmake │ │ ├── OpenCLICDLoaderTargets-release.cmake │ │ └── OpenCLICDLoaderTargets.cmake │ ├── OpenCLUtils │ │ ├── OpenCLUtilsConfig.cmake │ │ ├── OpenCLUtilsConfigVersion.cmake │ │ ├── OpenCLUtilsTargets-debug.cmake │ │ ├── OpenCLUtilsTargets-release.cmake │ │ └── OpenCLUtilsTargets.cmake │ └── OpenCLUtilsCpp │ │ ├── OpenCLUtilsCppConfig.cmake │ │ ├── OpenCLUtilsCppConfigVersion.cmake │ │ ├── OpenCLUtilsCppTargets-debug.cmake │ │ ├── OpenCLUtilsCppTargets-release.cmake │ │ └── OpenCLUtilsCppTargets.cmake │ ├── man │ └── man1 │ │ └── clinfo.1.gz │ └── pkgconfig │ ├── OpenCL-CLHPP.pc │ └── OpenCL-Headers.pc ├── atomic_latency_kernel.cl ├── svm.sln ├── svm.vcxproj ├── svm.vcxproj.filters └── svmtest.cpp /.github/workflows/linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/.github/workflows/linux.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /AsmGen/AsmGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/AsmGen.csproj -------------------------------------------------------------------------------- /AsmGen/AsmGen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/AsmGen.sln -------------------------------------------------------------------------------- /AsmGen/DataFiles/BranchhistTestBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/DataFiles/BranchhistTestBlock.c -------------------------------------------------------------------------------- /AsmGen/DataFiles/CommonFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/DataFiles/CommonFunctions.c -------------------------------------------------------------------------------- /AsmGen/DataFiles/GccBranchHistFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/DataFiles/GccBranchHistFunction.c -------------------------------------------------------------------------------- /AsmGen/DataFiles/GccIndirectBranchFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/DataFiles/GccIndirectBranchFunction.c -------------------------------------------------------------------------------- /AsmGen/DataFiles/IndirectBranchTestBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/DataFiles/IndirectBranchTestBlock.c -------------------------------------------------------------------------------- /AsmGen/DataFiles/clammicrobench.vcxproj_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/DataFiles/clammicrobench.vcxproj_template -------------------------------------------------------------------------------- /AsmGen/IUarchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/IUarchTest.cs -------------------------------------------------------------------------------- /AsmGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/Program.cs -------------------------------------------------------------------------------- /AsmGen/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/Properties/launchSettings.json -------------------------------------------------------------------------------- /AsmGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/README.md -------------------------------------------------------------------------------- /AsmGen/UarchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/UarchTest.cs -------------------------------------------------------------------------------- /AsmGen/UarchTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/UarchTestHelpers.cs -------------------------------------------------------------------------------- /AsmGen/tests/A73RobTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/A73RobTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/AddLoopTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/AddLoopTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/AddNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/AddNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/AddSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/AddSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/AddvNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/AddvNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/AddvSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/AddvSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/AeseSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/AeseSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/AesencNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/AesencNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/BranchBufferTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/BranchBufferTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/BranchHistoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/BranchHistoryTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/BtbTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/BtbTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/CvtSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/CvtSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/FAdd256RfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/FAdd256RfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/Fadd128RfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/Fadd128RfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/Fadd128SchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/Fadd128SchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/Fadd256SchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/Fadd256SchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/FaddNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/FaddNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/FaddSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/FaddSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/FcmpSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/FcmpSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/FlagRfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/FlagRfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/Fma256SchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/Fma256SchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/FmovSched.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/FmovSched.cs -------------------------------------------------------------------------------- /AsmGen/tests/FmulSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/FmulSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/FpRfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/FpRfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/FpStoreDataNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/FpStoreDataNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/IdrfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/IdrfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/IndirectBranchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/IndirectBranchTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/IntRfDepStoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/IntRfDepStoreTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/IntRfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/IntRfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/JsCvtNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/JsCvtNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/JsCvtSched.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/JsCvtSched.cs -------------------------------------------------------------------------------- /AsmGen/tests/JumpNsqTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/JumpNsqTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/JumpSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/JumpSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/LdqTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/LdqTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/LeaSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/LeaSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/LoadNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/LoadNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/LoadSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/LoadSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MaddSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MaddSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MaskRfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MaskRfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixAddJumpSched.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixAddJumpSched.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixAddvJsCvtNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixAddvJsCvtNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixAddvJsCvtSched.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixAddvJsCvtSched.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixBranchStoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixBranchStoreTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixFAdd256and32RfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixFAdd256and32RfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixFpRfDepBranchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixFpRfDepBranchTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixFpVecRfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixFpVecRfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixIntRfDepBranchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixIntRfDepBranchTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixIntVec128RfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixIntVec128RfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixIntrfFprfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixIntrfFprfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixJumpStoreDataSched.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixJumpStoreDataSched.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixJumpStoreSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixJumpStoreSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixJumpThenAddSched.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixJumpThenAddSched.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixLdqStqTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixLdqStqTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixLoadStoreDivSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixLoadStoreDivSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixLoadStoreSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixLoadStoreSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixStoreDivSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixStoreDivSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixVec512Vec256BlockRfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixVec512Vec256BlockRfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MixVec512Vec256RfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MixVec512Vec256RfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MmxRfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MmxRfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/MulSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/MulSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/NopLoopTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/NopLoopTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/PdepSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/PdepSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/ReturnStackTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/ReturnStackTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/RobTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/RobTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/RorSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/RorSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/ShlSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/ShlSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/StoreDataDivNsqTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/StoreDataDivNsqTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/StoreDataNsqTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/StoreDataNsqTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/StoreDataSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/StoreDataSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/StoreDivNsqTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/StoreDivNsqTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/StoreDivSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/StoreDivSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/StoreNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/StoreNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/StoreSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/StoreSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/Stq128Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/Stq128Test.cs -------------------------------------------------------------------------------- /AsmGen/tests/Stq512Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/Stq512Test.cs -------------------------------------------------------------------------------- /AsmGen/tests/StqTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/StqTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/TakenBranchBufferTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/TakenBranchBufferTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/TakenJumpSchedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/TakenJumpSchedTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/Vec512RfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/Vec512RfTest.cs -------------------------------------------------------------------------------- /AsmGen/tests/VecMulNsq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/VecMulNsq.cs -------------------------------------------------------------------------------- /AsmGen/tests/ZeroRobTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/AsmGen/tests/ZeroRobTest.cs -------------------------------------------------------------------------------- /CoherencyLatency/CoherencyLatency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoherencyLatency/CoherencyLatency.cpp -------------------------------------------------------------------------------- /CoherencyLatency/CoherencyLatency.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoherencyLatency/CoherencyLatency.sln -------------------------------------------------------------------------------- /CoherencyLatency/CoherencyLatency.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoherencyLatency/CoherencyLatency.vcxproj -------------------------------------------------------------------------------- /CoherencyLatency/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoherencyLatency/Makefile -------------------------------------------------------------------------------- /CoherencyLatency/PThreadsCoherencyLatency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoherencyLatency/PThreadsCoherencyLatency.c -------------------------------------------------------------------------------- /CoherencyLatency/c2cparse/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoherencyLatency/c2cparse/Program.cs -------------------------------------------------------------------------------- /CoherencyLatency/c2cparse/c2cparse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoherencyLatency/c2cparse/c2cparse.csproj -------------------------------------------------------------------------------- /CoherencyLatency/c2cparse/c2cparse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoherencyLatency/c2cparse/c2cparse.sln -------------------------------------------------------------------------------- /Common/arch_detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/Common/arch_detect.mk -------------------------------------------------------------------------------- /Common/ci_gpumemlatency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/Common/ci_gpumemlatency.sh -------------------------------------------------------------------------------- /Common/ci_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/Common/ci_package.sh -------------------------------------------------------------------------------- /Common/perfmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/Common/perfmon.h -------------------------------------------------------------------------------- /Common/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/Common/timing.c -------------------------------------------------------------------------------- /Common/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/Common/timing.h -------------------------------------------------------------------------------- /CoreClockChecker/BoostClockChecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/BoostClockChecker.c -------------------------------------------------------------------------------- /CoreClockChecker/BoostClockChecker_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/BoostClockChecker_arm.s -------------------------------------------------------------------------------- /CoreClockChecker/BoostClockChecker_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/BoostClockChecker_x86.s -------------------------------------------------------------------------------- /CoreClockChecker/CoreClockChecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/CoreClockChecker.c -------------------------------------------------------------------------------- /CoreClockChecker/CoreClockChecker_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/CoreClockChecker_x86.s -------------------------------------------------------------------------------- /CoreClockChecker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/Makefile -------------------------------------------------------------------------------- /CoreClockChecker/WinCoreClockChecker/CoreClockCheckFunctions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/WinCoreClockChecker/CoreClockCheckFunctions.asm -------------------------------------------------------------------------------- /CoreClockChecker/WinCoreClockChecker/WinCoreClockChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/WinCoreClockChecker/WinCoreClockChecker.cpp -------------------------------------------------------------------------------- /CoreClockChecker/WinCoreClockChecker/WinCoreClockChecker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/WinCoreClockChecker/WinCoreClockChecker.sln -------------------------------------------------------------------------------- /CoreClockChecker/WinCoreClockChecker/WinCoreClockChecker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/WinCoreClockChecker/WinCoreClockChecker.vcxproj -------------------------------------------------------------------------------- /CoreClockChecker/WinCoreClockChecker/WinCoreClockChecker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/CoreClockChecker/WinCoreClockChecker/WinCoreClockChecker.vcxproj.filters -------------------------------------------------------------------------------- /GpuMemLatency/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/Makefile -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/LICENSE -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/README.md -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_d3d10.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_d3d11.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_dx9_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_dx9_media_sharing_intel.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_egl.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_ext.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_ext_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_ext_intel.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_gl.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_half.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_icd.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_platform.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_va_api_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_va_api_media_sharing_intel.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/cl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/cl_version.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/include/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/include/CL/opencl.h -------------------------------------------------------------------------------- /GpuMemLatency/OpenCL/lib/OpenCL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/OpenCL/lib/OpenCL.lib -------------------------------------------------------------------------------- /GpuMemLatency/atomic_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/atomic_test.c -------------------------------------------------------------------------------- /GpuMemLatency/bw_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/bw_test.c -------------------------------------------------------------------------------- /GpuMemLatency/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/common.c -------------------------------------------------------------------------------- /GpuMemLatency/instruction_rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/instruction_rate.c -------------------------------------------------------------------------------- /GpuMemLatency/instruction_rate_fp16_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/instruction_rate_fp16_kernel.cl -------------------------------------------------------------------------------- /GpuMemLatency/instruction_rate_fp64_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/instruction_rate_fp64_kernel.cl -------------------------------------------------------------------------------- /GpuMemLatency/instruction_rate_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/instruction_rate_kernel.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernel.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/atomic_exec_latency_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/atomic_exec_latency_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/buffer_bw_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/buffer_bw_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/c2c_atomic_exec_latency_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/c2c_atomic_exec_latency_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/constant_unrolled_latency_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/constant_unrolled_latency_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/ldst_bw_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/ldst_bw_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/local_64_bw_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/local_64_bw_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/local_atomic_latency_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/local_atomic_latency_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/local_bw_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/local_bw_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/local_float4_bw_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/local_float4_bw_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/local_unrolled_latency_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/local_unrolled_latency_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/scalar_unrolled_latency_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/scalar_unrolled_latency_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/sum_bw_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/sum_bw_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/tex_bw_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/tex_bw_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/tex_latency_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/tex_latency_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/kernels/unrolled_latency_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/kernels/unrolled_latency_test.cl -------------------------------------------------------------------------------- /GpuMemLatency/latency_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/latency_test.c -------------------------------------------------------------------------------- /GpuMemLatency/local_mem_latency_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/local_mem_latency_kernel.cl -------------------------------------------------------------------------------- /GpuMemLatency/opencltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/opencltest.c -------------------------------------------------------------------------------- /GpuMemLatency/opencltest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/opencltest.h -------------------------------------------------------------------------------- /GpuMemLatency/opencltest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/opencltest.sln -------------------------------------------------------------------------------- /GpuMemLatency/opencltest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/opencltest.vcxproj -------------------------------------------------------------------------------- /GpuMemLatency/opencltest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/GpuMemLatency/opencltest.vcxproj.filters -------------------------------------------------------------------------------- /GpuMemLatency/texturetest.c: -------------------------------------------------------------------------------- 1 | #include "opencltest.h" 2 | 3 | -------------------------------------------------------------------------------- /InstructionRate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/Makefile -------------------------------------------------------------------------------- /InstructionRate/arm_instructionrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/arm_instructionrate.c -------------------------------------------------------------------------------- /InstructionRate/arm_instructionrate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/arm_instructionrate.s -------------------------------------------------------------------------------- /InstructionRate/riscv_instructionrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/riscv_instructionrate.c -------------------------------------------------------------------------------- /InstructionRate/riscv_instructionrate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/riscv_instructionrate.s -------------------------------------------------------------------------------- /InstructionRate/test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/test.s -------------------------------------------------------------------------------- /InstructionRate/x86_fusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/x86_fusion.c -------------------------------------------------------------------------------- /InstructionRate/x86_fusion.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/x86_fusion.s -------------------------------------------------------------------------------- /InstructionRate/x86_instructionrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/x86_instructionrate.c -------------------------------------------------------------------------------- /InstructionRate/x86_instructionrate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/InstructionRate/x86_instructionrate.s -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /LoadedMemoryLatency/LoadedMemoryLatency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LoadedMemoryLatency/LoadedMemoryLatency.c -------------------------------------------------------------------------------- /LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.asm -------------------------------------------------------------------------------- /LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.cpp -------------------------------------------------------------------------------- /LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.sln -------------------------------------------------------------------------------- /LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.vcxproj -------------------------------------------------------------------------------- /LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LoadedMemoryLatency/LoadedMemoryLatency/LoadedMemoryLatency.vcxproj.filters -------------------------------------------------------------------------------- /LoadedMemoryLatency/LoadedMemoryLatency_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LoadedMemoryLatency/LoadedMemoryLatency_amd64.s -------------------------------------------------------------------------------- /LoadedMemoryLatency/LoadedMemoryLatency_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LoadedMemoryLatency/LoadedMemoryLatency_arm.s -------------------------------------------------------------------------------- /LoadedMemoryLatency/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/LoadedMemoryLatency/Makefile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/Makefile -------------------------------------------------------------------------------- /MemoryBandwidth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/Makefile -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth.c -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth/MemoryBandwidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth/MemoryBandwidth.cpp -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth/MemoryBandwidth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth/MemoryBandwidth.sln -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth/MemoryBandwidth.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth/MemoryBandwidth.vcxproj -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth/MemoryBandwidth.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth/MemoryBandwidth.vcxproj.filters -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth/MemoryBandwidthFunctions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth/MemoryBandwidthFunctions.asm -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth/MemoryBandwidthFunctions32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth/MemoryBandwidthFunctions32.asm -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth_arm.s -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth_riscv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth_riscv.s -------------------------------------------------------------------------------- /MemoryBandwidth/MemoryBandwidth_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MemoryBandwidth_x86.s -------------------------------------------------------------------------------- /MemoryBandwidth/MixedMemoryBandwidthTest/MemoryBandwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MixedMemoryBandwidthTest/MemoryBandwidth.h -------------------------------------------------------------------------------- /MemoryBandwidth/MixedMemoryBandwidthTest/MemoryBandwidthFunctions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MixedMemoryBandwidthTest/MemoryBandwidthFunctions.asm -------------------------------------------------------------------------------- /MemoryBandwidth/MixedMemoryBandwidthTest/MixedMemoryBandwidthTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MixedMemoryBandwidthTest/MixedMemoryBandwidthTest.cpp -------------------------------------------------------------------------------- /MemoryBandwidth/MixedMemoryBandwidthTest/MixedMemoryBandwidthTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MixedMemoryBandwidthTest/MixedMemoryBandwidthTest.vcxproj -------------------------------------------------------------------------------- /MemoryBandwidth/MixedMemoryBandwidthTest/MixedMemoryBandwidthTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/MixedMemoryBandwidthTest/MixedMemoryBandwidthTest.vcxproj.filters -------------------------------------------------------------------------------- /MemoryBandwidth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryBandwidth/README.md -------------------------------------------------------------------------------- /MemoryLatency/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/Makefile -------------------------------------------------------------------------------- /MemoryLatency/MemoryLatency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/MemoryLatency.c -------------------------------------------------------------------------------- /MemoryLatency/MemoryLatency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/MemoryLatency.cpp -------------------------------------------------------------------------------- /MemoryLatency/MemoryLatency.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/MemoryLatency.sln -------------------------------------------------------------------------------- /MemoryLatency/MemoryLatency.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/MemoryLatency.vcxproj -------------------------------------------------------------------------------- /MemoryLatency/MemoryLatencyFunctions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/MemoryLatencyFunctions.asm -------------------------------------------------------------------------------- /MemoryLatency/MemoryLatency_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/MemoryLatency_arm.s -------------------------------------------------------------------------------- /MemoryLatency/MemoryLatency_i686.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/MemoryLatency_i686.s -------------------------------------------------------------------------------- /MemoryLatency/MemoryLatency_riscv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/MemoryLatency_riscv.s -------------------------------------------------------------------------------- /MemoryLatency/MemoryLatency_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/MemoryLatency_x86.s -------------------------------------------------------------------------------- /MemoryLatency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/MemoryLatency/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/README.md -------------------------------------------------------------------------------- /mt_instructionrate/InstructionRateFunctions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/InstructionRateFunctions.asm -------------------------------------------------------------------------------- /mt_instructionrate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/Makefile -------------------------------------------------------------------------------- /mt_instructionrate/Project1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/Project1.vcxproj -------------------------------------------------------------------------------- /mt_instructionrate/Project1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/Project1.vcxproj.filters -------------------------------------------------------------------------------- /mt_instructionrate/arm_mt_instructionrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/arm_mt_instructionrate.c -------------------------------------------------------------------------------- /mt_instructionrate/arm_mt_instructionrate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/arm_mt_instructionrate.s -------------------------------------------------------------------------------- /mt_instructionrate/mt_instructionrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/mt_instructionrate.c -------------------------------------------------------------------------------- /mt_instructionrate/mt_instructionrate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/mt_instructionrate.sln -------------------------------------------------------------------------------- /mt_instructionrate/ppc64_mt_instructionrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/ppc64_mt_instructionrate.c -------------------------------------------------------------------------------- /mt_instructionrate/ppc64_mt_instructionrate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/ppc64_mt_instructionrate.s -------------------------------------------------------------------------------- /mt_instructionrate/x86_mt_instructionrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/x86_mt_instructionrate -------------------------------------------------------------------------------- /mt_instructionrate/x86_mt_instructionrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/x86_mt_instructionrate.c -------------------------------------------------------------------------------- /mt_instructionrate/x86_mt_instructionrate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/mt_instructionrate/x86_mt_instructionrate.s -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Context.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Context.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Detail.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Device.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Error.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Error.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/ErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/ErrorCodes.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Event.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Event.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/File.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/File.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/InteropContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/InteropContext.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/OpenCLUtilsCpp_Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/OpenCLUtilsCpp_Export.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/OpenCLUtils_Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/OpenCLUtils_Export.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Platform.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Utils.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/Utils/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/Utils/Utils.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl2.hpp -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_d3d10.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_d3d11.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_dx9_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_dx9_media_sharing_intel.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_egl.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_ext.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_ext_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_ext_intel.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_function_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_function_types.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_gl.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_half.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_icd.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_layer.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_platform.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_va_api_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_va_api_media_sharing_intel.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/cl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/cl_version.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/opencl.h -------------------------------------------------------------------------------- /svm/OpenCL/include/CL/opencl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/include/CL/opencl.hpp -------------------------------------------------------------------------------- /svm/OpenCL/lib/OpenCL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/lib/OpenCL.lib -------------------------------------------------------------------------------- /svm/OpenCL/lib/OpenCLExt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/lib/OpenCLExt.lib -------------------------------------------------------------------------------- /svm/OpenCL/lib/OpenCLUtils.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/lib/OpenCLUtils.lib -------------------------------------------------------------------------------- /svm/OpenCL/lib/OpenCLUtilsCpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/lib/OpenCLUtilsCpp.lib -------------------------------------------------------------------------------- /svm/OpenCL/lib/OpenCLUtilsCppd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/lib/OpenCLUtilsCppd.lib -------------------------------------------------------------------------------- /svm/OpenCL/lib/OpenCLUtilsd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/lib/OpenCLUtilsd.lib -------------------------------------------------------------------------------- /svm/OpenCL/lib/pkgconfig/OpenCL.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/lib/pkgconfig/OpenCL.pc -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCL/OpenCLConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCL/OpenCLConfig.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCL/OpenCLConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCL/OpenCLConfigVersion.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLExtensionLoader/OpenCLExtensionLoaderConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/OpenCLExtensionLoaderTargets.cmake") -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLExtensionLoader/OpenCLExtensionLoaderConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLExtensionLoader/OpenCLExtensionLoaderConfigVersion.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLExtensionLoader/OpenCLExtensionLoaderTargets-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLExtensionLoader/OpenCLExtensionLoaderTargets-debug.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLExtensionLoader/OpenCLExtensionLoaderTargets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLExtensionLoader/OpenCLExtensionLoaderTargets-release.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLExtensionLoader/OpenCLExtensionLoaderTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLExtensionLoader/OpenCLExtensionLoaderTargets.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLHeaders/OpenCLHeadersConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/OpenCLHeadersTargets.cmake") -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLHeaders/OpenCLHeadersConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLHeaders/OpenCLHeadersConfigVersion.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLHeaders/OpenCLHeadersTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLHeaders/OpenCLHeadersTargets.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLHeadersCpp/OpenCLHeadersCppConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/OpenCLHeadersCppTargets.cmake") -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLHeadersCpp/OpenCLHeadersCppConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLHeadersCpp/OpenCLHeadersCppConfigVersion.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLHeadersCpp/OpenCLHeadersCppTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLHeadersCpp/OpenCLHeadersCppTargets.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLICDLoader/OpenCLICDLoaderConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/OpenCLICDLoaderTargets.cmake") -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLICDLoader/OpenCLICDLoaderConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLICDLoader/OpenCLICDLoaderConfigVersion.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLICDLoader/OpenCLICDLoaderTargets-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLICDLoader/OpenCLICDLoaderTargets-debug.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLICDLoader/OpenCLICDLoaderTargets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLICDLoader/OpenCLICDLoaderTargets-release.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLICDLoader/OpenCLICDLoaderTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLICDLoader/OpenCLICDLoaderTargets.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtils/OpenCLUtilsConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/OpenCLUtilsTargets.cmake") -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtils/OpenCLUtilsConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLUtils/OpenCLUtilsConfigVersion.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtils/OpenCLUtilsTargets-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLUtils/OpenCLUtilsTargets-debug.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtils/OpenCLUtilsTargets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLUtils/OpenCLUtilsTargets-release.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtils/OpenCLUtilsTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLUtils/OpenCLUtilsTargets.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtilsCpp/OpenCLUtilsCppConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/OpenCLUtilsCppTargets.cmake") -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtilsCpp/OpenCLUtilsCppConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLUtilsCpp/OpenCLUtilsCppConfigVersion.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtilsCpp/OpenCLUtilsCppTargets-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLUtilsCpp/OpenCLUtilsCppTargets-debug.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtilsCpp/OpenCLUtilsCppTargets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLUtilsCpp/OpenCLUtilsCppTargets-release.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/cmake/OpenCLUtilsCpp/OpenCLUtilsCppTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/cmake/OpenCLUtilsCpp/OpenCLUtilsCppTargets.cmake -------------------------------------------------------------------------------- /svm/OpenCL/share/man/man1/clinfo.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/man/man1/clinfo.1.gz -------------------------------------------------------------------------------- /svm/OpenCL/share/pkgconfig/OpenCL-CLHPP.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/pkgconfig/OpenCL-CLHPP.pc -------------------------------------------------------------------------------- /svm/OpenCL/share/pkgconfig/OpenCL-Headers.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/OpenCL/share/pkgconfig/OpenCL-Headers.pc -------------------------------------------------------------------------------- /svm/atomic_latency_kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/atomic_latency_kernel.cl -------------------------------------------------------------------------------- /svm/svm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/svm.sln -------------------------------------------------------------------------------- /svm/svm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/svm.vcxproj -------------------------------------------------------------------------------- /svm/svm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/svm.vcxproj.filters -------------------------------------------------------------------------------- /svm/svmtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamchowder/Microbenchmarks/HEAD/svm/svmtest.cpp --------------------------------------------------------------------------------