├── .gitignore ├── A16-benchmark.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── yiweiyang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── yiweiyang.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── A16-benchmark ├── A16-benchmark-Bridging-Header.h ├── A16_benchmark.entitlements ├── A16_benchmarkApp.swift ├── A16_benchmark_wrapper.h ├── A16_benchmark_wrapper.mm ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── ContentView.swift ├── CpuANE.swift ├── CpuGpu.swift ├── GpuGpu.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── c2c.cpp ├── c2c.hpp ├── rob.cpp └── rob.hpp ├── A16-benchmarkTests └── A16_benchmarkTests.swift ├── A16-benchmarkUITests ├── A16_benchmarkUITests.swift └── A16_benchmarkUITestsLaunchTests.swift ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /A16-benchmark.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /A16-benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /A16-benchmark.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /A16-benchmark.xcodeproj/project.xcworkspace/xcuserdata/yiweiyang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark.xcodeproj/project.xcworkspace/xcuserdata/yiweiyang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /A16-benchmark.xcodeproj/xcuserdata/yiweiyang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark.xcodeproj/xcuserdata/yiweiyang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /A16-benchmark/A16-benchmark-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/A16-benchmark-Bridging-Header.h -------------------------------------------------------------------------------- /A16-benchmark/A16_benchmark.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/A16_benchmark.entitlements -------------------------------------------------------------------------------- /A16-benchmark/A16_benchmarkApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/A16_benchmarkApp.swift -------------------------------------------------------------------------------- /A16-benchmark/A16_benchmark_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/A16_benchmark_wrapper.h -------------------------------------------------------------------------------- /A16-benchmark/A16_benchmark_wrapper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/A16_benchmark_wrapper.mm -------------------------------------------------------------------------------- /A16-benchmark/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /A16-benchmark/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /A16-benchmark/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /A16-benchmark/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/ContentView.swift -------------------------------------------------------------------------------- /A16-benchmark/CpuANE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/CpuANE.swift -------------------------------------------------------------------------------- /A16-benchmark/CpuGpu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/CpuGpu.swift -------------------------------------------------------------------------------- /A16-benchmark/GpuGpu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/GpuGpu.swift -------------------------------------------------------------------------------- /A16-benchmark/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /A16-benchmark/c2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/c2c.cpp -------------------------------------------------------------------------------- /A16-benchmark/c2c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/c2c.hpp -------------------------------------------------------------------------------- /A16-benchmark/rob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/rob.cpp -------------------------------------------------------------------------------- /A16-benchmark/rob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmark/rob.hpp -------------------------------------------------------------------------------- /A16-benchmarkTests/A16_benchmarkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmarkTests/A16_benchmarkTests.swift -------------------------------------------------------------------------------- /A16-benchmarkUITests/A16_benchmarkUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmarkUITests/A16_benchmarkUITests.swift -------------------------------------------------------------------------------- /A16-benchmarkUITests/A16_benchmarkUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/A16-benchmarkUITests/A16_benchmarkUITestsLaunchTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vickiegpt/A16-microbenchmark/HEAD/README.md --------------------------------------------------------------------------------