├── .gitignore ├── Benchmark Graph Template.ods ├── LICENSE ├── NET_project ├── .gitignore ├── .idea │ ├── .idea.NET_project.dir │ │ └── .idea │ │ │ ├── encodings.xml │ │ │ ├── indexLayout.xml │ │ │ └── projectSettingsUpdater.xml │ └── .idea.NET_project │ │ └── .idea │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ ├── misc.xml │ │ ├── projectSettingsUpdater.xml │ │ ├── vcs.xml │ │ └── workspace.xml ├── Benchmarks.cs ├── Benchmarks │ ├── Arcfour.cs │ ├── Common.cs │ ├── Fibonacci.cs │ ├── FirefliesFlocking.cs │ ├── Mandelbrot.cs │ ├── NBody.cs │ ├── ParticleKinematics.cs │ ├── PixarRaytracer.cs │ ├── Polynomials.cs │ ├── Radix.cs │ ├── Seahash.cs │ └── SieveOfEratosthenes.cs ├── Build_project.bat ├── NET_project.csproj ├── NET_project.sln ├── NET_project.sln.DotSettings └── NativeBindings │ ├── ClangNativeBindings.cs │ ├── GccNativeBindings.cs │ ├── MsNativeBindings.cs │ └── RustNativeBindings.cs ├── README.md ├── benchmark_results_2020-02-20 ├── README.md └── img │ ├── Arcfour.png │ ├── Fibonacci.png │ ├── Fireflies_Flocking.png │ ├── Mandelbrot.png │ ├── NBody.png │ ├── Particle_Kinematics.png │ ├── Pixar_Raytracer.png │ ├── Polynomials.png │ ├── Radix.png │ ├── Seahash.png │ └── Sieve_of_Eratosthenes.png ├── benchmark_results_2022-10-20 ├── README.md └── img │ ├── Arcfour.png │ ├── Fibonacci.png │ ├── Fireflies_Flocking.png │ ├── Mandelbrot.png │ ├── NBody.png │ ├── Particle_Kinematics.png │ ├── Pixar_Raytracer.png │ ├── Polynomials.png │ ├── Radix.png │ ├── Seahash.png │ └── Sieve_of_Eratosthenes.png ├── ms_native_lib ├── .gitignore ├── MS_Native_Lib.sln ├── MS_Native_Lib.vcxproj ├── MS_Native_Lib.vcxproj.filters ├── benchmarks_ms.cpp ├── framework.h ├── pch.cpp └── pch.h ├── native_lib ├── .idea │ ├── .gitignore │ ├── misc.xml │ └── vcs.xml ├── Readme.md ├── benchmarks.c ├── compile-clang.sh └── compile-gcc.sh ├── rust_lib ├── .gitignore ├── .idea │ ├── .gitignore │ ├── codeStyles │ │ └── codeStyleConfig.xml │ └── vcs.xml ├── Cargo.toml ├── rustfmt.toml └── src │ ├── f32_benchmarks.rs │ ├── f32_benchmarks │ ├── FirefliesFlocking.rs │ └── PixarRaytracer.rs │ ├── f64_benchmarks.rs │ ├── f64_benchmarks │ └── nbody.rs │ ├── i32_benchmarks.rs │ ├── i32_benchmarks │ ├── Arcfour.rs │ ├── Radix.rs │ └── Seahash.rs │ └── lib.rs └── unity_project ├── .gitignore ├── .idea └── .idea.unity_project │ └── .idea │ ├── encodings.xml │ ├── indexLayout.xml │ ├── misc.xml │ ├── projectSettingsUpdater.xml │ ├── vcs.xml │ └── workspace.xml ├── Assets ├── Plugins.meta ├── Plugins │ ├── DLL_goes_in_here.txt │ └── DLL_goes_in_here.txt.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── Scripts.meta └── Scripts │ ├── BenchmarkCode.meta │ ├── BenchmarkCode │ ├── Double.meta │ ├── Double │ │ ├── NBody.cs │ │ └── NBody.cs.meta │ ├── Integer.meta │ ├── Integer │ │ ├── Arcfour.cs │ │ ├── Arcfour.cs.meta │ │ ├── Fibonacci.cs │ │ ├── Fibonacci.cs.meta │ │ ├── Radix.cs │ │ ├── Radix.cs.meta │ │ ├── RadixBurst.cs │ │ ├── RadixBurst.cs.meta │ │ ├── Seahash.cs │ │ ├── Seahash.cs.meta │ │ ├── SeahashBurst.cs │ │ ├── SeahashBurst.cs.meta │ │ ├── SieveOfEratosthenes.cs │ │ └── SieveOfEratosthenes.cs.meta │ ├── NativeBindings.cs │ ├── NativeBindings.cs.meta │ ├── Single.meta │ └── Single │ │ ├── FirefliesFlocking.cs │ │ ├── FirefliesFlocking.cs.meta │ │ ├── FirefliesFlockingBurst.cs │ │ ├── FirefliesFlockingBurst.cs.meta │ │ ├── Mandelbrot.cs │ │ ├── Mandelbrot.cs.meta │ │ ├── ParticleKinematics.cs │ │ ├── ParticleKinematics.cs.meta │ │ ├── ParticleKinematicsBurst.cs │ │ ├── ParticleKinematicsBurst.cs.meta │ │ ├── PixarRaytracer.cs │ │ ├── PixarRaytracer.cs.meta │ │ ├── PixarRaytracerBurst.cs │ │ ├── PixarRaytracerBurst.cs.meta │ │ ├── Polynomials.cs │ │ └── Polynomials.cs.meta │ ├── Benchmarks.cs │ └── Benchmarks.cs.meta ├── Packages ├── manifest.json └── packages-lock.json └── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── EntitiesClientSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /Benchmark Graph Template.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/Benchmark Graph Template.ods -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /NET_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.gitignore -------------------------------------------------------------------------------- /NET_project/.idea/.idea.NET_project.dir/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.idea/.idea.NET_project.dir/.idea/encodings.xml -------------------------------------------------------------------------------- /NET_project/.idea/.idea.NET_project.dir/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.idea/.idea.NET_project.dir/.idea/indexLayout.xml -------------------------------------------------------------------------------- /NET_project/.idea/.idea.NET_project.dir/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.idea/.idea.NET_project.dir/.idea/projectSettingsUpdater.xml -------------------------------------------------------------------------------- /NET_project/.idea/.idea.NET_project/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.idea/.idea.NET_project/.idea/encodings.xml -------------------------------------------------------------------------------- /NET_project/.idea/.idea.NET_project/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.idea/.idea.NET_project/.idea/indexLayout.xml -------------------------------------------------------------------------------- /NET_project/.idea/.idea.NET_project/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.idea/.idea.NET_project/.idea/misc.xml -------------------------------------------------------------------------------- /NET_project/.idea/.idea.NET_project/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.idea/.idea.NET_project/.idea/projectSettingsUpdater.xml -------------------------------------------------------------------------------- /NET_project/.idea/.idea.NET_project/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.idea/.idea.NET_project/.idea/vcs.xml -------------------------------------------------------------------------------- /NET_project/.idea/.idea.NET_project/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/.idea/.idea.NET_project/.idea/workspace.xml -------------------------------------------------------------------------------- /NET_project/Benchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/Arcfour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/Arcfour.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/Common.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/Fibonacci.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/Fibonacci.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/FirefliesFlocking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/FirefliesFlocking.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/Mandelbrot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/Mandelbrot.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/NBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/NBody.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/ParticleKinematics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/ParticleKinematics.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/PixarRaytracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/PixarRaytracer.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/Polynomials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/Polynomials.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/Radix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/Radix.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/Seahash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/Seahash.cs -------------------------------------------------------------------------------- /NET_project/Benchmarks/SieveOfEratosthenes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/Benchmarks/SieveOfEratosthenes.cs -------------------------------------------------------------------------------- /NET_project/Build_project.bat: -------------------------------------------------------------------------------- 1 | 2 | dotnet publish -c Release -r win-x64 3 | -------------------------------------------------------------------------------- /NET_project/NET_project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/NET_project.csproj -------------------------------------------------------------------------------- /NET_project/NET_project.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/NET_project.sln -------------------------------------------------------------------------------- /NET_project/NET_project.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/NET_project.sln.DotSettings -------------------------------------------------------------------------------- /NET_project/NativeBindings/ClangNativeBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/NativeBindings/ClangNativeBindings.cs -------------------------------------------------------------------------------- /NET_project/NativeBindings/GccNativeBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/NativeBindings/GccNativeBindings.cs -------------------------------------------------------------------------------- /NET_project/NativeBindings/MsNativeBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/NativeBindings/MsNativeBindings.cs -------------------------------------------------------------------------------- /NET_project/NativeBindings/RustNativeBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/NET_project/NativeBindings/RustNativeBindings.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/README.md -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/README.md -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Arcfour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Arcfour.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Fibonacci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Fibonacci.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Fireflies_Flocking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Fireflies_Flocking.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Mandelbrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Mandelbrot.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/NBody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/NBody.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Particle_Kinematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Particle_Kinematics.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Pixar_Raytracer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Pixar_Raytracer.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Polynomials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Polynomials.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Radix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Radix.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Seahash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Seahash.png -------------------------------------------------------------------------------- /benchmark_results_2020-02-20/img/Sieve_of_Eratosthenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2020-02-20/img/Sieve_of_Eratosthenes.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/README.md -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Arcfour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Arcfour.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Fibonacci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Fibonacci.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Fireflies_Flocking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Fireflies_Flocking.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Mandelbrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Mandelbrot.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/NBody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/NBody.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Particle_Kinematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Particle_Kinematics.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Pixar_Raytracer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Pixar_Raytracer.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Polynomials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Polynomials.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Radix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Radix.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Seahash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Seahash.png -------------------------------------------------------------------------------- /benchmark_results_2022-10-20/img/Sieve_of_Eratosthenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/benchmark_results_2022-10-20/img/Sieve_of_Eratosthenes.png -------------------------------------------------------------------------------- /ms_native_lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/ms_native_lib/.gitignore -------------------------------------------------------------------------------- /ms_native_lib/MS_Native_Lib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/ms_native_lib/MS_Native_Lib.sln -------------------------------------------------------------------------------- /ms_native_lib/MS_Native_Lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/ms_native_lib/MS_Native_Lib.vcxproj -------------------------------------------------------------------------------- /ms_native_lib/MS_Native_Lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/ms_native_lib/MS_Native_Lib.vcxproj.filters -------------------------------------------------------------------------------- /ms_native_lib/benchmarks_ms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/ms_native_lib/benchmarks_ms.cpp -------------------------------------------------------------------------------- /ms_native_lib/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/ms_native_lib/framework.h -------------------------------------------------------------------------------- /ms_native_lib/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/ms_native_lib/pch.cpp -------------------------------------------------------------------------------- /ms_native_lib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/ms_native_lib/pch.h -------------------------------------------------------------------------------- /native_lib/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/native_lib/.idea/.gitignore -------------------------------------------------------------------------------- /native_lib/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/native_lib/.idea/misc.xml -------------------------------------------------------------------------------- /native_lib/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/native_lib/.idea/vcs.xml -------------------------------------------------------------------------------- /native_lib/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/native_lib/Readme.md -------------------------------------------------------------------------------- /native_lib/benchmarks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/native_lib/benchmarks.c -------------------------------------------------------------------------------- /native_lib/compile-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/native_lib/compile-clang.sh -------------------------------------------------------------------------------- /native_lib/compile-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/native_lib/compile-gcc.sh -------------------------------------------------------------------------------- /rust_lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/.gitignore -------------------------------------------------------------------------------- /rust_lib/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/.idea/.gitignore -------------------------------------------------------------------------------- /rust_lib/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /rust_lib/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/.idea/vcs.xml -------------------------------------------------------------------------------- /rust_lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/Cargo.toml -------------------------------------------------------------------------------- /rust_lib/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/rustfmt.toml -------------------------------------------------------------------------------- /rust_lib/src/f32_benchmarks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/f32_benchmarks.rs -------------------------------------------------------------------------------- /rust_lib/src/f32_benchmarks/FirefliesFlocking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/f32_benchmarks/FirefliesFlocking.rs -------------------------------------------------------------------------------- /rust_lib/src/f32_benchmarks/PixarRaytracer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/f32_benchmarks/PixarRaytracer.rs -------------------------------------------------------------------------------- /rust_lib/src/f64_benchmarks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/f64_benchmarks.rs -------------------------------------------------------------------------------- /rust_lib/src/f64_benchmarks/nbody.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/f64_benchmarks/nbody.rs -------------------------------------------------------------------------------- /rust_lib/src/i32_benchmarks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/i32_benchmarks.rs -------------------------------------------------------------------------------- /rust_lib/src/i32_benchmarks/Arcfour.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/i32_benchmarks/Arcfour.rs -------------------------------------------------------------------------------- /rust_lib/src/i32_benchmarks/Radix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/i32_benchmarks/Radix.rs -------------------------------------------------------------------------------- /rust_lib/src/i32_benchmarks/Seahash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/i32_benchmarks/Seahash.rs -------------------------------------------------------------------------------- /rust_lib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/rust_lib/src/lib.rs -------------------------------------------------------------------------------- /unity_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/.gitignore -------------------------------------------------------------------------------- /unity_project/.idea/.idea.unity_project/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/.idea/.idea.unity_project/.idea/encodings.xml -------------------------------------------------------------------------------- /unity_project/.idea/.idea.unity_project/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/.idea/.idea.unity_project/.idea/indexLayout.xml -------------------------------------------------------------------------------- /unity_project/.idea/.idea.unity_project/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/.idea/.idea.unity_project/.idea/misc.xml -------------------------------------------------------------------------------- /unity_project/.idea/.idea.unity_project/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/.idea/.idea.unity_project/.idea/projectSettingsUpdater.xml -------------------------------------------------------------------------------- /unity_project/.idea/.idea.unity_project/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/.idea/.idea.unity_project/.idea/vcs.xml -------------------------------------------------------------------------------- /unity_project/.idea/.idea.unity_project/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/.idea/.idea.unity_project/.idea/workspace.xml -------------------------------------------------------------------------------- /unity_project/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Plugins.meta -------------------------------------------------------------------------------- /unity_project/Assets/Plugins/DLL_goes_in_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unity_project/Assets/Plugins/DLL_goes_in_here.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Plugins/DLL_goes_in_here.txt.meta -------------------------------------------------------------------------------- /unity_project/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scenes.meta -------------------------------------------------------------------------------- /unity_project/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /unity_project/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /unity_project/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts.meta -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 698419fc44ad483aba6de237c02a57c0 3 | timeCreated: 1710536379 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Double.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afbe87c31339440991268b5ba118525b 3 | timeCreated: 1710537034 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Double/NBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Double/NBody.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Double/NBody.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdb767c2494f42ff806fc2f63ef0e51a 3 | timeCreated: 1710537039 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4127ec63894441089efad17de8978bcb 3 | timeCreated: 1710536393 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/Arcfour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Integer/Arcfour.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/Arcfour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69fe87a13df247f3b8263c866c652d59 3 | timeCreated: 1710538079 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/Fibonacci.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Integer/Fibonacci.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/Fibonacci.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4bbe0d5b0944ed59439fb840d09e9e2 3 | timeCreated: 1710536397 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/Radix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Integer/Radix.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/Radix.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 412dc47b462f4c2cae0c7db23f963926 3 | timeCreated: 1710542482 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/RadixBurst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Integer/RadixBurst.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/RadixBurst.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Integer/RadixBurst.cs.meta -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/Seahash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Integer/Seahash.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/Seahash.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87de08cb5c6c4005b8a8d588e0894e0e 3 | timeCreated: 1710540557 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/SeahashBurst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Integer/SeahashBurst.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/SeahashBurst.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Integer/SeahashBurst.cs.meta -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/SieveOfEratosthenes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Integer/SieveOfEratosthenes.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Integer/SieveOfEratosthenes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ada0edab5c294be1967d44019686e411 3 | timeCreated: 1710537454 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/NativeBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/NativeBindings.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/NativeBindings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b13cd0c232d14203a4d30db8e94ce92e 3 | timeCreated: 1710536651 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 159c52ed0b344ebfbb5ea4636ac5674a 3 | timeCreated: 1710536913 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/FirefliesFlocking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/FirefliesFlocking.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/FirefliesFlocking.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8a39229ec714810856a96114fa090fe 3 | timeCreated: 1710537749 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/FirefliesFlockingBurst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/FirefliesFlockingBurst.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/FirefliesFlockingBurst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e00589c383854829896e37046953799d 3 | timeCreated: 1710545170 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/Mandelbrot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/Mandelbrot.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/Mandelbrot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb00cebbaf9344a0ba0b2759c446cbc8 3 | timeCreated: 1710536920 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/ParticleKinematics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/ParticleKinematics.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/ParticleKinematics.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/ParticleKinematics.cs.meta -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/ParticleKinematicsBurst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/ParticleKinematicsBurst.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/ParticleKinematicsBurst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5427001e411949f0b954d2194053d054 3 | timeCreated: 1710565030 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/PixarRaytracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/PixarRaytracer.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/PixarRaytracer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/PixarRaytracer.cs.meta -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/PixarRaytracerBurst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/PixarRaytracerBurst.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/PixarRaytracerBurst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6a90e296e7a4c3e9a4247860870d2fd 3 | timeCreated: 1710548439 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/Polynomials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/BenchmarkCode/Single/Polynomials.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/BenchmarkCode/Single/Polynomials.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e82e6fec72624c09a54a27edb7e096eb 3 | timeCreated: 1710537906 -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/Benchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/Benchmarks.cs -------------------------------------------------------------------------------- /unity_project/Assets/Scripts/Benchmarks.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Assets/Scripts/Benchmarks.cs.meta -------------------------------------------------------------------------------- /unity_project/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Packages/manifest.json -------------------------------------------------------------------------------- /unity_project/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/Packages/packages-lock.json -------------------------------------------------------------------------------- /unity_project/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /unity_project/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /unity_project/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/EntitiesClientSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/EntitiesClientSettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /unity_project/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /unity_project/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJDHDR/BurstBenchmarks/HEAD/unity_project/ProjectSettings/XRSettings.asset --------------------------------------------------------------------------------