├── .bazelrc ├── .clang-format ├── .github └── workflows │ ├── build.yml │ ├── build_bazel.yml │ └── clang-format-check.yml ├── .gitignore ├── .travis.yml ├── BUILD.bazel ├── CMakeLists.txt ├── CMakePresets.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── README.md ├── WORKSPACE.bazel ├── appveyor.yml ├── bench ├── get-current.cc └── init.cc ├── cmake ├── DownloadGoogleBenchmark.cmake ├── DownloadGoogleTest.cmake └── cpuinfo-config.cmake.in ├── configure.py ├── confu.yaml ├── deps └── clog │ ├── .gitignore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cmake │ └── DownloadGoogleTest.cmake │ ├── configure.py │ ├── confu.yaml │ ├── include │ └── clog.h │ ├── jni │ ├── Android.mk │ └── Application.mk │ ├── src │ └── clog.c │ └── test │ └── clog.cc ├── include ├── cpuinfo-mock.h └── cpuinfo.h ├── jni ├── Android.mk └── Application.mk ├── libcpuinfo.pc.in ├── scripts ├── android-arm64-auxv-dump.sh ├── android-arm64-build.sh ├── android-arm64-mock.sh ├── android-arm64-test.sh ├── android-armv7-auxv-dump.sh ├── android-armv7-build.sh ├── android-armv7-cache-info.sh ├── android-armv7-cpu-info.sh ├── android-armv7-isa-info.sh ├── android-armv7-mock.sh ├── android-armv7-test.sh ├── android-device-dump.py ├── android-riscv64-build.sh ├── android-x86-build.sh ├── android-x86-cache-info.sh ├── android-x86-cpu-info.sh ├── android-x86-cpuid-dump.sh ├── android-x86-isa-info.sh ├── android-x86-mock.sh ├── arm-linux-filesystem-dump.py ├── local-bazel-build.sh ├── local-build.sh └── parse-x86-cpuid-dump.py ├── src ├── api.c ├── arm │ ├── android │ │ ├── api.h │ │ └── properties.c │ ├── api.h │ ├── cache.c │ ├── linux │ │ ├── aarch32-isa.c │ │ ├── aarch64-isa.c │ │ ├── api.h │ │ ├── chipset.c │ │ ├── clusters.c │ │ ├── cp.h │ │ ├── cpuinfo.c │ │ ├── hwcap.c │ │ ├── init.c │ │ └── midr.c │ ├── mach │ │ └── init.c │ ├── midr.h │ ├── tlb.c │ ├── uarch.c │ └── windows │ │ ├── init-by-logical-sys-info.c │ │ ├── init.c │ │ └── windows-arm-init.h ├── cache.c ├── cpuinfo │ ├── common.h │ ├── internal-api.h │ ├── log.h │ └── utils.h ├── emscripten │ └── init.c ├── freebsd │ ├── api.h │ └── topology.c ├── init.c ├── linux │ ├── api.h │ ├── cpulist.c │ ├── mockfile.c │ ├── multiline.c │ ├── processors.c │ └── smallfile.c ├── log.c ├── mach │ ├── api.h │ └── topology.c ├── riscv │ ├── api.h │ ├── linux │ │ ├── api.h │ │ ├── init.c │ │ ├── riscv-hw.c │ │ └── riscv-isa.c │ └── uarch.c └── x86 │ ├── api.h │ ├── cache │ ├── descriptor.c │ ├── deterministic.c │ └── init.c │ ├── cpuid.h │ ├── freebsd │ └── init.c │ ├── info.c │ ├── init.c │ ├── isa.c │ ├── linux │ ├── api.h │ ├── cpuinfo.c │ └── init.c │ ├── mach │ └── init.c │ ├── mockcpuid.c │ ├── name.c │ ├── topology.c │ ├── uarch.c │ ├── vendor.c │ └── windows │ ├── api.h │ └── init.c ├── test ├── arm-cache.cc ├── build.prop │ ├── alcatel-revvl.log │ ├── alldocube-iwork8.log │ ├── astro_55r.log │ ├── atm7029b-tablet.log │ ├── blu-r1-hd.log │ ├── galaxy-a3-2016-eu.log │ ├── galaxy-a8-2016-duos.log │ ├── galaxy-a8-2018.log │ ├── galaxy-c9-pro.log │ ├── galaxy-grand-prime-value-edition.log │ ├── galaxy-grand-prime.log │ ├── galaxy-j1-2016.log │ ├── galaxy-j5.log │ ├── galaxy-j7-prime.log │ ├── galaxy-j7-tmobile.log │ ├── galaxy-j7-uae.log │ ├── galaxy-s3-us.log │ ├── galaxy-s4-us.log │ ├── galaxy-s5-global.log │ ├── galaxy-s5-us.log │ ├── galaxy-s6.log │ ├── galaxy-s7-global.log │ ├── galaxy-s7-us.log │ ├── galaxy-s8-global.log │ ├── galaxy-s8-us.log │ ├── galaxy-tab-3-7.0.log │ ├── galaxy-tab-3-lite.log │ ├── galaxy-win-duos.log │ ├── huawei-ascend-p7.log │ ├── huawei-honor-6.log │ ├── huawei-mate-20.log │ ├── huawei-mate-8.log │ ├── huawei-mate-9.log │ ├── huawei-p8-lite.log │ ├── huawei-p9-lite.log │ ├── iconia-one-10.log │ ├── leagoo-t5c.log │ ├── lenovo-a6600-plus.log │ ├── lenovo-vibe-x2.log │ ├── lg-k10-eu.log │ ├── lg-optimus-g-pro.log │ ├── meizu-pro-6.log │ ├── meizu-pro-6s.log │ ├── meizu-pro-7-plus.log │ ├── memo-pad-7.log │ ├── moto-e-gen1.log │ ├── moto-g-gen1.log │ ├── moto-g-gen2.log │ ├── moto-g-gen3.log │ ├── moto-g-gen4.log │ ├── moto-g-gen5.log │ ├── nexus-s.log │ ├── nexus10.log │ ├── nexus4.log │ ├── nexus5x.log │ ├── nexus6.log │ ├── nexus6p.log │ ├── nexus9.log │ ├── oneplus-3t.log │ ├── oppo-a37.log │ ├── oppo-r9.log │ ├── padcod-10.1.log │ ├── pixel-xl.log │ ├── pixel.log │ ├── xiaomi-mi-5c.log │ ├── xiaomi-redmi-2a.log │ ├── xiaomi-redmi-note-3.log │ ├── xiaomi-redmi-note-4.log │ ├── xperia-c4-dual.log │ ├── xperia-sl.log │ ├── zenfone-2.log │ ├── zenfone-2e.log │ └── zenfone-c.log ├── cpuid │ ├── alldocube-iwork8.log │ ├── leagoo-t5c.log │ ├── memo-pad-7.log │ ├── zenfone-2.log │ ├── zenfone-2e.log │ └── zenfone-c.log ├── cpuinfo │ ├── alcatel-revvl.armeabi.log │ ├── alcatel-revvl.log │ ├── alldocube-iwork8.log │ ├── arndaleboard.log │ ├── astro-55r.log │ ├── atm7029b-tablet.log │ ├── beagleboard-xm.log │ ├── blu-r1-hd.log │ ├── galaxy-a3-2016-eu.log │ ├── galaxy-a8-2016-duos.log │ ├── galaxy-a8-2018.armeabi.log │ ├── galaxy-a8-2018.log │ ├── galaxy-c9-pro.armeabi.log │ ├── galaxy-c9-pro.log │ ├── galaxy-grand-prime-value-edition.log │ ├── galaxy-j1-2016.log │ ├── galaxy-j5.log │ ├── galaxy-j7-prime.log │ ├── galaxy-j7-tmobile.log │ ├── galaxy-j7-uae.log │ ├── galaxy-nexus.log │ ├── galaxy-s3-us.log │ ├── galaxy-s4-us.log │ ├── galaxy-s5-global.log │ ├── galaxy-s5-us.log │ ├── galaxy-s6.armeabi.log │ ├── galaxy-s6.log │ ├── galaxy-s7-global.armeabi.log │ ├── galaxy-s7-global.log │ ├── galaxy-s7-us.armeabi.log │ ├── galaxy-s7-us.log │ ├── galaxy-s8-global.armeabi.log │ ├── galaxy-s8-global.log │ ├── galaxy-s8-us.armeabi.log │ ├── galaxy-s8-us.log │ ├── galaxy-s9-global.armeabi.log │ ├── galaxy-s9-global.log │ ├── galaxy-s9-us.armeabi.log │ ├── galaxy-s9-us.log │ ├── galaxy-tab-3-7.0.log │ ├── galaxy-tab-3-lite.log │ ├── galaxy-win-duos.log │ ├── huawei-ascend-p7.log │ ├── huawei-honor-6.log │ ├── huawei-mate-10.armeabi.log │ ├── huawei-mate-10.log │ ├── huawei-mate-20.armeabi.log │ ├── huawei-mate-20.log │ ├── huawei-mate-8.armeabi.log │ ├── huawei-mate-8.log │ ├── huawei-mate-9.armeabi.log │ ├── huawei-mate-9.log │ ├── huawei-p20-pro.armeabi.log │ ├── huawei-p20-pro.log │ ├── huawei-p8-lite.armeabi.log │ ├── huawei-p8-lite.log │ ├── huawei-p9-lite.armeabi.log │ ├── huawei-p9-lite.log │ ├── iconia-one-10.armeabi.log │ ├── iconia-one-10.log │ ├── jetson-tx1.log │ ├── leagoo-t5c.log │ ├── lenovo-a6600-plus.log │ ├── lenovo-vibe-x2.log │ ├── lg-k10-eu.log │ ├── lg-optimus-g-pro.log │ ├── meizu-pro-6.log │ ├── meizu-pro-6s.log │ ├── meizu-pro-7-plus.log │ ├── memo-pad-7.log │ ├── moto-e-gen1.log │ ├── moto-g-gen1.log │ ├── moto-g-gen2.log │ ├── moto-g-gen3.log │ ├── moto-g-gen4.log │ ├── moto-g-gen5.log │ ├── msm8996.log │ ├── nexus-s.log │ ├── nexus10.log │ ├── nexus4.log │ ├── nexus5x.armeabi.log │ ├── nexus5x.log │ ├── nexus6.log │ ├── nexus6p.armeabi.log │ ├── nexus6p.log │ ├── nexus9.log │ ├── odroid-u2.log │ ├── oneplus-3t.armeabi.log │ ├── oneplus-3t.log │ ├── oneplus-5.armeabi.log │ ├── oneplus-5.log │ ├── oneplus-5t.armeabi.log │ ├── oneplus-5t.log │ ├── oppo-a37.armeabi.log │ ├── oppo-a37.log │ ├── oppo-r15.armeabi.log │ ├── oppo-r15.log │ ├── oppo-r9.armeabi.log │ ├── oppo-r9.log │ ├── padcod-10.1.log │ ├── pandaboard-es.log │ ├── pixel-2-xl.log │ ├── pixel-c.log │ ├── pixel-xl.log │ ├── pixel.log │ ├── raspberrypi-zero.log │ ├── raspberrypi.log │ ├── raspberrypi2.log │ ├── raspberrypi3.log │ ├── scaleway.log │ ├── xiaomi-mi-5c.armeabi.log │ ├── xiaomi-mi-5c.log │ ├── xiaomi-redmi-2a.log │ ├── xiaomi-redmi-note-3.armeabi.log │ ├── xiaomi-redmi-note-3.log │ ├── xiaomi-redmi-note-4.armeabi.log │ ├── xiaomi-redmi-note-4.log │ ├── xperia-c4-dual.armeabi.log │ ├── xperia-c4-dual.log │ ├── xperia-sl.log │ ├── zenfone-2.log │ ├── zenfone-2e.log │ └── zenfone-c.log ├── dmesg │ ├── alcatel-revvl.log │ ├── alldocube-iwork8.log │ ├── blu-r1-hd.log │ ├── galaxy-a3-2016-eu.log │ ├── galaxy-a8-2016-duos.log │ ├── galaxy-a8-2018.log │ ├── galaxy-c9-pro.log │ ├── galaxy-grand-prime-value-edition.log │ ├── galaxy-j1-2016.log │ ├── galaxy-j5.log │ ├── galaxy-j7-prime.log │ ├── galaxy-j7-tmobile.log │ ├── galaxy-j7-uae.log │ ├── galaxy-s5-global.log │ ├── galaxy-s5-us.log │ ├── galaxy-s6.log │ ├── galaxy-s7-global.log │ ├── galaxy-s7-us.log │ ├── galaxy-s8-global.log │ ├── galaxy-s8-us.log │ ├── huawei-mate-8.log │ ├── huawei-mate-9.log │ ├── huawei-p9-lite.log │ ├── iconia-one-10.log │ ├── lenovo-a6600-plus.log │ ├── lg-k10-eu.log │ ├── meizu-pro-6.log │ ├── meizu-pro-6s.log │ ├── meizu-pro-7-plus.log │ ├── moto-g-gen2.log │ ├── moto-g-gen3.log │ ├── moto-g-gen4.log │ ├── moto-g-gen5.log │ ├── nexus-s.log │ ├── nexus10.log │ ├── nexus4.log │ ├── nexus5x.log │ ├── nexus6.log │ ├── nexus6p.log │ ├── nexus9.log │ ├── oneplus-3t.log │ ├── oppo-a37.log │ ├── oppo-r9.log │ ├── padcod-10.1.log │ ├── pixel-xl.log │ ├── pixel.log │ ├── xiaomi-mi-5c.log │ ├── xiaomi-redmi-note-3.log │ ├── xiaomi-redmi-note-4.log │ ├── xperia-c4-dual.log │ ├── xperia-sl.log │ └── zenfone-2.log ├── get-current.cc ├── init.cc ├── mock │ ├── alcatel-revvl.cc │ ├── alcatel-revvl.h │ ├── alldocube-iwork8.cc │ ├── alldocube-iwork8.h │ ├── atm7029b-tablet.cc │ ├── atm7029b-tablet.h │ ├── blu-r1-hd.cc │ ├── blu-r1-hd.h │ ├── galaxy-a3-2016-eu.cc │ ├── galaxy-a3-2016-eu.h │ ├── galaxy-a8-2016-duos.cc │ ├── galaxy-a8-2016-duos.h │ ├── galaxy-a8-2018.cc │ ├── galaxy-a8-2018.h │ ├── galaxy-c9-pro.cc │ ├── galaxy-c9-pro.h │ ├── galaxy-grand-prime-value-edition.cc │ ├── galaxy-grand-prime-value-edition.h │ ├── galaxy-j1-2016.cc │ ├── galaxy-j1-2016.h │ ├── galaxy-j5.cc │ ├── galaxy-j5.h │ ├── galaxy-j7-prime.cc │ ├── galaxy-j7-prime.h │ ├── galaxy-j7-tmobile.cc │ ├── galaxy-j7-tmobile.h │ ├── galaxy-j7-uae.cc │ ├── galaxy-j7-uae.h │ ├── galaxy-s3-us.cc │ ├── galaxy-s3-us.h │ ├── galaxy-s4-us.cc │ ├── galaxy-s4-us.h │ ├── galaxy-s5-global.cc │ ├── galaxy-s5-global.h │ ├── galaxy-s5-us.cc │ ├── galaxy-s5-us.h │ ├── galaxy-s6.cc │ ├── galaxy-s6.h │ ├── galaxy-s7-global.cc │ ├── galaxy-s7-global.h │ ├── galaxy-s7-us.cc │ ├── galaxy-s7-us.h │ ├── galaxy-s8-global.cc │ ├── galaxy-s8-global.h │ ├── galaxy-s8-us.cc │ ├── galaxy-s8-us.h │ ├── galaxy-s9-global.cc │ ├── galaxy-s9-global.h │ ├── galaxy-s9-us.cc │ ├── galaxy-s9-us.h │ ├── galaxy-tab-3-7.0.cc │ ├── galaxy-tab-3-7.0.h │ ├── galaxy-tab-3-lite.cc │ ├── galaxy-tab-3-lite.h │ ├── galaxy-win-duos.cc │ ├── galaxy-win-duos.h │ ├── huawei-ascend-p7.cc │ ├── huawei-ascend-p7.h │ ├── huawei-honor-6.cc │ ├── huawei-honor-6.h │ ├── huawei-mate-10.cc │ ├── huawei-mate-10.h │ ├── huawei-mate-20.cc │ ├── huawei-mate-20.h │ ├── huawei-mate-8.cc │ ├── huawei-mate-8.h │ ├── huawei-mate-9.cc │ ├── huawei-mate-9.h │ ├── huawei-p20-pro.cc │ ├── huawei-p20-pro.h │ ├── huawei-p8-lite.cc │ ├── huawei-p8-lite.h │ ├── huawei-p9-lite.cc │ ├── huawei-p9-lite.h │ ├── iconia-one-10.cc │ ├── iconia-one-10.h │ ├── leagoo-t5c.cc │ ├── leagoo-t5c.h │ ├── lenovo-a6600-plus.cc │ ├── lenovo-a6600-plus.h │ ├── lenovo-vibe-x2.cc │ ├── lenovo-vibe-x2.h │ ├── lg-k10-eu.cc │ ├── lg-k10-eu.h │ ├── lg-optimus-g-pro.cc │ ├── lg-optimus-g-pro.h │ ├── meizu-pro-6.cc │ ├── meizu-pro-6.h │ ├── meizu-pro-6s.cc │ ├── meizu-pro-6s.h │ ├── meizu-pro-7-plus.cc │ ├── meizu-pro-7-plus.h │ ├── memo-pad-7.cc │ ├── memo-pad-7.h │ ├── moto-e-gen1.cc │ ├── moto-e-gen1.h │ ├── moto-g-gen1.cc │ ├── moto-g-gen1.h │ ├── moto-g-gen2.cc │ ├── moto-g-gen2.h │ ├── moto-g-gen3.cc │ ├── moto-g-gen3.h │ ├── moto-g-gen4.cc │ ├── moto-g-gen4.h │ ├── moto-g-gen5.cc │ ├── moto-g-gen5.h │ ├── nexus-s.cc │ ├── nexus-s.h │ ├── nexus10.cc │ ├── nexus10.h │ ├── nexus4.cc │ ├── nexus4.h │ ├── nexus5x.cc │ ├── nexus5x.h │ ├── nexus6.cc │ ├── nexus6.h │ ├── nexus6p.cc │ ├── nexus6p.h │ ├── nexus9.cc │ ├── nexus9.h │ ├── oneplus-3t.cc │ ├── oneplus-3t.h │ ├── oneplus-5.cc │ ├── oneplus-5.h │ ├── oneplus-5t.cc │ ├── oneplus-5t.h │ ├── oppo-a37.cc │ ├── oppo-a37.h │ ├── oppo-r15.cc │ ├── oppo-r15.h │ ├── oppo-r9.cc │ ├── oppo-r9.h │ ├── padcod-10.1.cc │ ├── padcod-10.1.h │ ├── pixel-2-xl.cc │ ├── pixel-2-xl.h │ ├── pixel-8.cc │ ├── pixel-8.h │ ├── pixel-c.cc │ ├── pixel-c.h │ ├── pixel-xl.cc │ ├── pixel-xl.h │ ├── pixel.cc │ ├── pixel.h │ ├── scaleway.cc │ ├── scaleway.h │ ├── xiaomi-mi-5c.cc │ ├── xiaomi-mi-5c.h │ ├── xiaomi-redmi-2a.cc │ ├── xiaomi-redmi-2a.h │ ├── xiaomi-redmi-note-3.cc │ ├── xiaomi-redmi-note-3.h │ ├── xiaomi-redmi-note-4.cc │ ├── xiaomi-redmi-note-4.h │ ├── xperia-c4-dual.cc │ ├── xperia-c4-dual.h │ ├── xperia-sl.cc │ ├── xperia-sl.h │ ├── zenfone-2.cc │ ├── zenfone-2.h │ ├── zenfone-2e.cc │ ├── zenfone-2e.h │ ├── zenfone-c.cc │ └── zenfone-c.h ├── name │ ├── android-properties-interface.c │ ├── android-properties.cc │ ├── brand-string.cc │ ├── proc-cpuinfo-hardware.cc │ ├── ro-arch.cc │ ├── ro-board-platform.cc │ ├── ro-chipname.cc │ ├── ro-mediatek-platform.cc │ └── ro-product-board.cc └── size.c └── tools ├── auxv-dump.c ├── cache-info.c ├── cpu-info.c ├── cpuid-dump.c ├── cpuinfo-dump.c ├── gpu-dump.c └── isa-info.c /.bazelrc: -------------------------------------------------------------------------------- 1 | build --symlink_prefix=/ # Out of source build 2 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_bazel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/.github/workflows/build_bazel.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/.github/workflows/clang-format-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- 1 | module(name = "cpuinfo") 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | workspace(name = "org_pytorch_cpuinfo") 2 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bench/get-current.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/bench/get-current.cc -------------------------------------------------------------------------------- /bench/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/bench/init.cc -------------------------------------------------------------------------------- /cmake/DownloadGoogleBenchmark.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/cmake/DownloadGoogleBenchmark.cmake -------------------------------------------------------------------------------- /cmake/DownloadGoogleTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/cmake/DownloadGoogleTest.cmake -------------------------------------------------------------------------------- /cmake/cpuinfo-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/cmake/cpuinfo-config.cmake.in -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/configure.py -------------------------------------------------------------------------------- /confu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/confu.yaml -------------------------------------------------------------------------------- /deps/clog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/.gitignore -------------------------------------------------------------------------------- /deps/clog/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/BUILD.bazel -------------------------------------------------------------------------------- /deps/clog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/CMakeLists.txt -------------------------------------------------------------------------------- /deps/clog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/LICENSE -------------------------------------------------------------------------------- /deps/clog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/README.md -------------------------------------------------------------------------------- /deps/clog/cmake/DownloadGoogleTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/cmake/DownloadGoogleTest.cmake -------------------------------------------------------------------------------- /deps/clog/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/configure.py -------------------------------------------------------------------------------- /deps/clog/confu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/confu.yaml -------------------------------------------------------------------------------- /deps/clog/include/clog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/include/clog.h -------------------------------------------------------------------------------- /deps/clog/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/jni/Android.mk -------------------------------------------------------------------------------- /deps/clog/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/jni/Application.mk -------------------------------------------------------------------------------- /deps/clog/src/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/src/clog.c -------------------------------------------------------------------------------- /deps/clog/test/clog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/deps/clog/test/clog.cc -------------------------------------------------------------------------------- /include/cpuinfo-mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/include/cpuinfo-mock.h -------------------------------------------------------------------------------- /include/cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/include/cpuinfo.h -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /libcpuinfo.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/libcpuinfo.pc.in -------------------------------------------------------------------------------- /scripts/android-arm64-auxv-dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-arm64-auxv-dump.sh -------------------------------------------------------------------------------- /scripts/android-arm64-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-arm64-build.sh -------------------------------------------------------------------------------- /scripts/android-arm64-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-arm64-mock.sh -------------------------------------------------------------------------------- /scripts/android-arm64-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-arm64-test.sh -------------------------------------------------------------------------------- /scripts/android-armv7-auxv-dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-armv7-auxv-dump.sh -------------------------------------------------------------------------------- /scripts/android-armv7-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-armv7-build.sh -------------------------------------------------------------------------------- /scripts/android-armv7-cache-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-armv7-cache-info.sh -------------------------------------------------------------------------------- /scripts/android-armv7-cpu-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-armv7-cpu-info.sh -------------------------------------------------------------------------------- /scripts/android-armv7-isa-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-armv7-isa-info.sh -------------------------------------------------------------------------------- /scripts/android-armv7-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-armv7-mock.sh -------------------------------------------------------------------------------- /scripts/android-armv7-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-armv7-test.sh -------------------------------------------------------------------------------- /scripts/android-device-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-device-dump.py -------------------------------------------------------------------------------- /scripts/android-riscv64-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-riscv64-build.sh -------------------------------------------------------------------------------- /scripts/android-x86-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-x86-build.sh -------------------------------------------------------------------------------- /scripts/android-x86-cache-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-x86-cache-info.sh -------------------------------------------------------------------------------- /scripts/android-x86-cpu-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-x86-cpu-info.sh -------------------------------------------------------------------------------- /scripts/android-x86-cpuid-dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-x86-cpuid-dump.sh -------------------------------------------------------------------------------- /scripts/android-x86-isa-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-x86-isa-info.sh -------------------------------------------------------------------------------- /scripts/android-x86-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/android-x86-mock.sh -------------------------------------------------------------------------------- /scripts/arm-linux-filesystem-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/arm-linux-filesystem-dump.py -------------------------------------------------------------------------------- /scripts/local-bazel-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/local-bazel-build.sh -------------------------------------------------------------------------------- /scripts/local-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/local-build.sh -------------------------------------------------------------------------------- /scripts/parse-x86-cpuid-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/scripts/parse-x86-cpuid-dump.py -------------------------------------------------------------------------------- /src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/api.c -------------------------------------------------------------------------------- /src/arm/android/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/android/api.h -------------------------------------------------------------------------------- /src/arm/android/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/android/properties.c -------------------------------------------------------------------------------- /src/arm/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/api.h -------------------------------------------------------------------------------- /src/arm/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/cache.c -------------------------------------------------------------------------------- /src/arm/linux/aarch32-isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/aarch32-isa.c -------------------------------------------------------------------------------- /src/arm/linux/aarch64-isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/aarch64-isa.c -------------------------------------------------------------------------------- /src/arm/linux/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/api.h -------------------------------------------------------------------------------- /src/arm/linux/chipset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/chipset.c -------------------------------------------------------------------------------- /src/arm/linux/clusters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/clusters.c -------------------------------------------------------------------------------- /src/arm/linux/cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/cp.h -------------------------------------------------------------------------------- /src/arm/linux/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/cpuinfo.c -------------------------------------------------------------------------------- /src/arm/linux/hwcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/hwcap.c -------------------------------------------------------------------------------- /src/arm/linux/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/init.c -------------------------------------------------------------------------------- /src/arm/linux/midr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/linux/midr.c -------------------------------------------------------------------------------- /src/arm/mach/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/mach/init.c -------------------------------------------------------------------------------- /src/arm/midr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/midr.h -------------------------------------------------------------------------------- /src/arm/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/tlb.c -------------------------------------------------------------------------------- /src/arm/uarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/uarch.c -------------------------------------------------------------------------------- /src/arm/windows/init-by-logical-sys-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/windows/init-by-logical-sys-info.c -------------------------------------------------------------------------------- /src/arm/windows/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/windows/init.c -------------------------------------------------------------------------------- /src/arm/windows/windows-arm-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/arm/windows/windows-arm-init.h -------------------------------------------------------------------------------- /src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/cache.c -------------------------------------------------------------------------------- /src/cpuinfo/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/cpuinfo/common.h -------------------------------------------------------------------------------- /src/cpuinfo/internal-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/cpuinfo/internal-api.h -------------------------------------------------------------------------------- /src/cpuinfo/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/cpuinfo/log.h -------------------------------------------------------------------------------- /src/cpuinfo/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/cpuinfo/utils.h -------------------------------------------------------------------------------- /src/emscripten/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/emscripten/init.c -------------------------------------------------------------------------------- /src/freebsd/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/freebsd/api.h -------------------------------------------------------------------------------- /src/freebsd/topology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/freebsd/topology.c -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/init.c -------------------------------------------------------------------------------- /src/linux/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/linux/api.h -------------------------------------------------------------------------------- /src/linux/cpulist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/linux/cpulist.c -------------------------------------------------------------------------------- /src/linux/mockfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/linux/mockfile.c -------------------------------------------------------------------------------- /src/linux/multiline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/linux/multiline.c -------------------------------------------------------------------------------- /src/linux/processors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/linux/processors.c -------------------------------------------------------------------------------- /src/linux/smallfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/linux/smallfile.c -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/log.c -------------------------------------------------------------------------------- /src/mach/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/mach/api.h -------------------------------------------------------------------------------- /src/mach/topology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/mach/topology.c -------------------------------------------------------------------------------- /src/riscv/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/riscv/api.h -------------------------------------------------------------------------------- /src/riscv/linux/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/riscv/linux/api.h -------------------------------------------------------------------------------- /src/riscv/linux/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/riscv/linux/init.c -------------------------------------------------------------------------------- /src/riscv/linux/riscv-hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/riscv/linux/riscv-hw.c -------------------------------------------------------------------------------- /src/riscv/linux/riscv-isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/riscv/linux/riscv-isa.c -------------------------------------------------------------------------------- /src/riscv/uarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/riscv/uarch.c -------------------------------------------------------------------------------- /src/x86/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/api.h -------------------------------------------------------------------------------- /src/x86/cache/descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/cache/descriptor.c -------------------------------------------------------------------------------- /src/x86/cache/deterministic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/cache/deterministic.c -------------------------------------------------------------------------------- /src/x86/cache/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/cache/init.c -------------------------------------------------------------------------------- /src/x86/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/cpuid.h -------------------------------------------------------------------------------- /src/x86/freebsd/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/freebsd/init.c -------------------------------------------------------------------------------- /src/x86/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/info.c -------------------------------------------------------------------------------- /src/x86/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/init.c -------------------------------------------------------------------------------- /src/x86/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/isa.c -------------------------------------------------------------------------------- /src/x86/linux/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/linux/api.h -------------------------------------------------------------------------------- /src/x86/linux/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/linux/cpuinfo.c -------------------------------------------------------------------------------- /src/x86/linux/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/linux/init.c -------------------------------------------------------------------------------- /src/x86/mach/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/mach/init.c -------------------------------------------------------------------------------- /src/x86/mockcpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/mockcpuid.c -------------------------------------------------------------------------------- /src/x86/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/name.c -------------------------------------------------------------------------------- /src/x86/topology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/topology.c -------------------------------------------------------------------------------- /src/x86/uarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/uarch.c -------------------------------------------------------------------------------- /src/x86/vendor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/vendor.c -------------------------------------------------------------------------------- /src/x86/windows/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/windows/api.h -------------------------------------------------------------------------------- /src/x86/windows/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/src/x86/windows/init.c -------------------------------------------------------------------------------- /test/arm-cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/arm-cache.cc -------------------------------------------------------------------------------- /test/build.prop/alcatel-revvl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/alcatel-revvl.log -------------------------------------------------------------------------------- /test/build.prop/alldocube-iwork8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/alldocube-iwork8.log -------------------------------------------------------------------------------- /test/build.prop/astro_55r.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/astro_55r.log -------------------------------------------------------------------------------- /test/build.prop/atm7029b-tablet.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/atm7029b-tablet.log -------------------------------------------------------------------------------- /test/build.prop/blu-r1-hd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/blu-r1-hd.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-a3-2016-eu.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-a3-2016-eu.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-a8-2016-duos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-a8-2016-duos.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-a8-2018.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-a8-2018.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-c9-pro.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-c9-pro.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-grand-prime-value-edition.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-grand-prime-value-edition.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-grand-prime.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-grand-prime.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-j1-2016.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-j1-2016.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-j5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-j5.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-j7-prime.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-j7-prime.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-j7-tmobile.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-j7-tmobile.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-j7-uae.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-j7-uae.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-s3-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-s3-us.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-s4-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-s4-us.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-s5-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-s5-global.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-s5-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-s5-us.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-s6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-s6.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-s7-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-s7-global.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-s7-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-s7-us.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-s8-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-s8-global.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-s8-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-s8-us.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-tab-3-7.0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-tab-3-7.0.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-tab-3-lite.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-tab-3-lite.log -------------------------------------------------------------------------------- /test/build.prop/galaxy-win-duos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/galaxy-win-duos.log -------------------------------------------------------------------------------- /test/build.prop/huawei-ascend-p7.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/huawei-ascend-p7.log -------------------------------------------------------------------------------- /test/build.prop/huawei-honor-6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/huawei-honor-6.log -------------------------------------------------------------------------------- /test/build.prop/huawei-mate-20.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/huawei-mate-20.log -------------------------------------------------------------------------------- /test/build.prop/huawei-mate-8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/huawei-mate-8.log -------------------------------------------------------------------------------- /test/build.prop/huawei-mate-9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/huawei-mate-9.log -------------------------------------------------------------------------------- /test/build.prop/huawei-p8-lite.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/huawei-p8-lite.log -------------------------------------------------------------------------------- /test/build.prop/huawei-p9-lite.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/huawei-p9-lite.log -------------------------------------------------------------------------------- /test/build.prop/iconia-one-10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/iconia-one-10.log -------------------------------------------------------------------------------- /test/build.prop/leagoo-t5c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/leagoo-t5c.log -------------------------------------------------------------------------------- /test/build.prop/lenovo-a6600-plus.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/lenovo-a6600-plus.log -------------------------------------------------------------------------------- /test/build.prop/lenovo-vibe-x2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/lenovo-vibe-x2.log -------------------------------------------------------------------------------- /test/build.prop/lg-k10-eu.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/lg-k10-eu.log -------------------------------------------------------------------------------- /test/build.prop/lg-optimus-g-pro.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/lg-optimus-g-pro.log -------------------------------------------------------------------------------- /test/build.prop/meizu-pro-6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/meizu-pro-6.log -------------------------------------------------------------------------------- /test/build.prop/meizu-pro-6s.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/meizu-pro-6s.log -------------------------------------------------------------------------------- /test/build.prop/meizu-pro-7-plus.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/meizu-pro-7-plus.log -------------------------------------------------------------------------------- /test/build.prop/memo-pad-7.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/memo-pad-7.log -------------------------------------------------------------------------------- /test/build.prop/moto-e-gen1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/moto-e-gen1.log -------------------------------------------------------------------------------- /test/build.prop/moto-g-gen1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/moto-g-gen1.log -------------------------------------------------------------------------------- /test/build.prop/moto-g-gen2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/moto-g-gen2.log -------------------------------------------------------------------------------- /test/build.prop/moto-g-gen3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/moto-g-gen3.log -------------------------------------------------------------------------------- /test/build.prop/moto-g-gen4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/moto-g-gen4.log -------------------------------------------------------------------------------- /test/build.prop/moto-g-gen5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/moto-g-gen5.log -------------------------------------------------------------------------------- /test/build.prop/nexus-s.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/nexus-s.log -------------------------------------------------------------------------------- /test/build.prop/nexus10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/nexus10.log -------------------------------------------------------------------------------- /test/build.prop/nexus4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/nexus4.log -------------------------------------------------------------------------------- /test/build.prop/nexus5x.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/nexus5x.log -------------------------------------------------------------------------------- /test/build.prop/nexus6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/nexus6.log -------------------------------------------------------------------------------- /test/build.prop/nexus6p.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/nexus6p.log -------------------------------------------------------------------------------- /test/build.prop/nexus9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/nexus9.log -------------------------------------------------------------------------------- /test/build.prop/oneplus-3t.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/oneplus-3t.log -------------------------------------------------------------------------------- /test/build.prop/oppo-a37.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/oppo-a37.log -------------------------------------------------------------------------------- /test/build.prop/oppo-r9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/oppo-r9.log -------------------------------------------------------------------------------- /test/build.prop/padcod-10.1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/padcod-10.1.log -------------------------------------------------------------------------------- /test/build.prop/pixel-xl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/pixel-xl.log -------------------------------------------------------------------------------- /test/build.prop/pixel.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/pixel.log -------------------------------------------------------------------------------- /test/build.prop/xiaomi-mi-5c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/xiaomi-mi-5c.log -------------------------------------------------------------------------------- /test/build.prop/xiaomi-redmi-2a.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/xiaomi-redmi-2a.log -------------------------------------------------------------------------------- /test/build.prop/xiaomi-redmi-note-3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/xiaomi-redmi-note-3.log -------------------------------------------------------------------------------- /test/build.prop/xiaomi-redmi-note-4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/xiaomi-redmi-note-4.log -------------------------------------------------------------------------------- /test/build.prop/xperia-c4-dual.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/xperia-c4-dual.log -------------------------------------------------------------------------------- /test/build.prop/xperia-sl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/xperia-sl.log -------------------------------------------------------------------------------- /test/build.prop/zenfone-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/zenfone-2.log -------------------------------------------------------------------------------- /test/build.prop/zenfone-2e.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/zenfone-2e.log -------------------------------------------------------------------------------- /test/build.prop/zenfone-c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/build.prop/zenfone-c.log -------------------------------------------------------------------------------- /test/cpuid/alldocube-iwork8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuid/alldocube-iwork8.log -------------------------------------------------------------------------------- /test/cpuid/leagoo-t5c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuid/leagoo-t5c.log -------------------------------------------------------------------------------- /test/cpuid/memo-pad-7.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuid/memo-pad-7.log -------------------------------------------------------------------------------- /test/cpuid/zenfone-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuid/zenfone-2.log -------------------------------------------------------------------------------- /test/cpuid/zenfone-2e.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuid/zenfone-2e.log -------------------------------------------------------------------------------- /test/cpuid/zenfone-c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuid/zenfone-c.log -------------------------------------------------------------------------------- /test/cpuinfo/alcatel-revvl.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/alcatel-revvl.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/alcatel-revvl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/alcatel-revvl.log -------------------------------------------------------------------------------- /test/cpuinfo/alldocube-iwork8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/alldocube-iwork8.log -------------------------------------------------------------------------------- /test/cpuinfo/arndaleboard.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/arndaleboard.log -------------------------------------------------------------------------------- /test/cpuinfo/astro-55r.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/astro-55r.log -------------------------------------------------------------------------------- /test/cpuinfo/atm7029b-tablet.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/atm7029b-tablet.log -------------------------------------------------------------------------------- /test/cpuinfo/beagleboard-xm.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/beagleboard-xm.log -------------------------------------------------------------------------------- /test/cpuinfo/blu-r1-hd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/blu-r1-hd.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-a3-2016-eu.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-a3-2016-eu.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-a8-2016-duos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-a8-2016-duos.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-a8-2018.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-a8-2018.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-a8-2018.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-a8-2018.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-c9-pro.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-c9-pro.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-c9-pro.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-c9-pro.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-grand-prime-value-edition.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-grand-prime-value-edition.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-j1-2016.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-j1-2016.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-j5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-j5.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-j7-prime.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-j7-prime.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-j7-tmobile.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-j7-tmobile.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-j7-uae.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-j7-uae.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-nexus.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-nexus.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s3-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s3-us.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s4-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s4-us.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s5-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s5-global.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s5-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s5-us.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s6.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s6.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s6.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s7-global.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s7-global.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s7-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s7-global.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s7-us.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s7-us.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s7-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s7-us.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s8-global.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s8-global.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s8-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s8-global.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s8-us.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s8-us.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s8-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s8-us.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s9-global.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s9-global.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s9-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s9-global.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s9-us.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s9-us.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-s9-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-s9-us.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-tab-3-7.0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-tab-3-7.0.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-tab-3-lite.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-tab-3-lite.log -------------------------------------------------------------------------------- /test/cpuinfo/galaxy-win-duos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/galaxy-win-duos.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-ascend-p7.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-ascend-p7.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-honor-6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-honor-6.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-mate-10.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-mate-10.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-mate-10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-mate-10.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-mate-20.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-mate-20.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-mate-20.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-mate-20.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-mate-8.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-mate-8.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-mate-8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-mate-8.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-mate-9.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-mate-9.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-mate-9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-mate-9.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-p20-pro.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-p20-pro.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-p20-pro.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-p20-pro.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-p8-lite.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-p8-lite.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-p8-lite.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-p8-lite.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-p9-lite.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-p9-lite.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/huawei-p9-lite.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/huawei-p9-lite.log -------------------------------------------------------------------------------- /test/cpuinfo/iconia-one-10.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/iconia-one-10.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/iconia-one-10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/iconia-one-10.log -------------------------------------------------------------------------------- /test/cpuinfo/jetson-tx1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/jetson-tx1.log -------------------------------------------------------------------------------- /test/cpuinfo/leagoo-t5c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/leagoo-t5c.log -------------------------------------------------------------------------------- /test/cpuinfo/lenovo-a6600-plus.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/lenovo-a6600-plus.log -------------------------------------------------------------------------------- /test/cpuinfo/lenovo-vibe-x2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/lenovo-vibe-x2.log -------------------------------------------------------------------------------- /test/cpuinfo/lg-k10-eu.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/lg-k10-eu.log -------------------------------------------------------------------------------- /test/cpuinfo/lg-optimus-g-pro.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/lg-optimus-g-pro.log -------------------------------------------------------------------------------- /test/cpuinfo/meizu-pro-6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/meizu-pro-6.log -------------------------------------------------------------------------------- /test/cpuinfo/meizu-pro-6s.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/meizu-pro-6s.log -------------------------------------------------------------------------------- /test/cpuinfo/meizu-pro-7-plus.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/meizu-pro-7-plus.log -------------------------------------------------------------------------------- /test/cpuinfo/memo-pad-7.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/memo-pad-7.log -------------------------------------------------------------------------------- /test/cpuinfo/moto-e-gen1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/moto-e-gen1.log -------------------------------------------------------------------------------- /test/cpuinfo/moto-g-gen1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/moto-g-gen1.log -------------------------------------------------------------------------------- /test/cpuinfo/moto-g-gen2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/moto-g-gen2.log -------------------------------------------------------------------------------- /test/cpuinfo/moto-g-gen3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/moto-g-gen3.log -------------------------------------------------------------------------------- /test/cpuinfo/moto-g-gen4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/moto-g-gen4.log -------------------------------------------------------------------------------- /test/cpuinfo/moto-g-gen5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/moto-g-gen5.log -------------------------------------------------------------------------------- /test/cpuinfo/msm8996.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/msm8996.log -------------------------------------------------------------------------------- /test/cpuinfo/nexus-s.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/nexus-s.log -------------------------------------------------------------------------------- /test/cpuinfo/nexus10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/nexus10.log -------------------------------------------------------------------------------- /test/cpuinfo/nexus4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/nexus4.log -------------------------------------------------------------------------------- /test/cpuinfo/nexus5x.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/nexus5x.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/nexus5x.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/nexus5x.log -------------------------------------------------------------------------------- /test/cpuinfo/nexus6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/nexus6.log -------------------------------------------------------------------------------- /test/cpuinfo/nexus6p.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/nexus6p.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/nexus6p.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/nexus6p.log -------------------------------------------------------------------------------- /test/cpuinfo/nexus9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/nexus9.log -------------------------------------------------------------------------------- /test/cpuinfo/odroid-u2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/odroid-u2.log -------------------------------------------------------------------------------- /test/cpuinfo/oneplus-3t.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oneplus-3t.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/oneplus-3t.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oneplus-3t.log -------------------------------------------------------------------------------- /test/cpuinfo/oneplus-5.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oneplus-5.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/oneplus-5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oneplus-5.log -------------------------------------------------------------------------------- /test/cpuinfo/oneplus-5t.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oneplus-5t.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/oneplus-5t.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oneplus-5t.log -------------------------------------------------------------------------------- /test/cpuinfo/oppo-a37.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oppo-a37.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/oppo-a37.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oppo-a37.log -------------------------------------------------------------------------------- /test/cpuinfo/oppo-r15.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oppo-r15.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/oppo-r15.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oppo-r15.log -------------------------------------------------------------------------------- /test/cpuinfo/oppo-r9.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oppo-r9.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/oppo-r9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/oppo-r9.log -------------------------------------------------------------------------------- /test/cpuinfo/padcod-10.1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/padcod-10.1.log -------------------------------------------------------------------------------- /test/cpuinfo/pandaboard-es.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/pandaboard-es.log -------------------------------------------------------------------------------- /test/cpuinfo/pixel-2-xl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/pixel-2-xl.log -------------------------------------------------------------------------------- /test/cpuinfo/pixel-c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/pixel-c.log -------------------------------------------------------------------------------- /test/cpuinfo/pixel-xl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/pixel-xl.log -------------------------------------------------------------------------------- /test/cpuinfo/pixel.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/pixel.log -------------------------------------------------------------------------------- /test/cpuinfo/raspberrypi-zero.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/raspberrypi-zero.log -------------------------------------------------------------------------------- /test/cpuinfo/raspberrypi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/raspberrypi.log -------------------------------------------------------------------------------- /test/cpuinfo/raspberrypi2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/raspberrypi2.log -------------------------------------------------------------------------------- /test/cpuinfo/raspberrypi3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/raspberrypi3.log -------------------------------------------------------------------------------- /test/cpuinfo/scaleway.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/scaleway.log -------------------------------------------------------------------------------- /test/cpuinfo/xiaomi-mi-5c.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xiaomi-mi-5c.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/xiaomi-mi-5c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xiaomi-mi-5c.log -------------------------------------------------------------------------------- /test/cpuinfo/xiaomi-redmi-2a.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xiaomi-redmi-2a.log -------------------------------------------------------------------------------- /test/cpuinfo/xiaomi-redmi-note-3.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xiaomi-redmi-note-3.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/xiaomi-redmi-note-3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xiaomi-redmi-note-3.log -------------------------------------------------------------------------------- /test/cpuinfo/xiaomi-redmi-note-4.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xiaomi-redmi-note-4.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/xiaomi-redmi-note-4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xiaomi-redmi-note-4.log -------------------------------------------------------------------------------- /test/cpuinfo/xperia-c4-dual.armeabi.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xperia-c4-dual.armeabi.log -------------------------------------------------------------------------------- /test/cpuinfo/xperia-c4-dual.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xperia-c4-dual.log -------------------------------------------------------------------------------- /test/cpuinfo/xperia-sl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/xperia-sl.log -------------------------------------------------------------------------------- /test/cpuinfo/zenfone-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/zenfone-2.log -------------------------------------------------------------------------------- /test/cpuinfo/zenfone-2e.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/zenfone-2e.log -------------------------------------------------------------------------------- /test/cpuinfo/zenfone-c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/cpuinfo/zenfone-c.log -------------------------------------------------------------------------------- /test/dmesg/alcatel-revvl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/alcatel-revvl.log -------------------------------------------------------------------------------- /test/dmesg/alldocube-iwork8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/alldocube-iwork8.log -------------------------------------------------------------------------------- /test/dmesg/blu-r1-hd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/blu-r1-hd.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-a3-2016-eu.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-a3-2016-eu.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-a8-2016-duos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-a8-2016-duos.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-a8-2018.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-a8-2018.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-c9-pro.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-c9-pro.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-grand-prime-value-edition.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-grand-prime-value-edition.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-j1-2016.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-j1-2016.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-j5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-j5.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-j7-prime.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-j7-prime.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-j7-tmobile.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-j7-tmobile.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-j7-uae.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-j7-uae.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-s5-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-s5-global.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-s5-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-s5-us.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-s6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-s6.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-s7-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-s7-global.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-s7-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-s7-us.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-s8-global.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-s8-global.log -------------------------------------------------------------------------------- /test/dmesg/galaxy-s8-us.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/galaxy-s8-us.log -------------------------------------------------------------------------------- /test/dmesg/huawei-mate-8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/huawei-mate-8.log -------------------------------------------------------------------------------- /test/dmesg/huawei-mate-9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/huawei-mate-9.log -------------------------------------------------------------------------------- /test/dmesg/huawei-p9-lite.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/huawei-p9-lite.log -------------------------------------------------------------------------------- /test/dmesg/iconia-one-10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/iconia-one-10.log -------------------------------------------------------------------------------- /test/dmesg/lenovo-a6600-plus.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/lenovo-a6600-plus.log -------------------------------------------------------------------------------- /test/dmesg/lg-k10-eu.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/lg-k10-eu.log -------------------------------------------------------------------------------- /test/dmesg/meizu-pro-6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/meizu-pro-6.log -------------------------------------------------------------------------------- /test/dmesg/meizu-pro-6s.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/meizu-pro-6s.log -------------------------------------------------------------------------------- /test/dmesg/meizu-pro-7-plus.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/meizu-pro-7-plus.log -------------------------------------------------------------------------------- /test/dmesg/moto-g-gen2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/moto-g-gen2.log -------------------------------------------------------------------------------- /test/dmesg/moto-g-gen3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/moto-g-gen3.log -------------------------------------------------------------------------------- /test/dmesg/moto-g-gen4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/moto-g-gen4.log -------------------------------------------------------------------------------- /test/dmesg/moto-g-gen5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/moto-g-gen5.log -------------------------------------------------------------------------------- /test/dmesg/nexus-s.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/nexus-s.log -------------------------------------------------------------------------------- /test/dmesg/nexus10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/nexus10.log -------------------------------------------------------------------------------- /test/dmesg/nexus4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/nexus4.log -------------------------------------------------------------------------------- /test/dmesg/nexus5x.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/nexus5x.log -------------------------------------------------------------------------------- /test/dmesg/nexus6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/nexus6.log -------------------------------------------------------------------------------- /test/dmesg/nexus6p.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/nexus6p.log -------------------------------------------------------------------------------- /test/dmesg/nexus9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/nexus9.log -------------------------------------------------------------------------------- /test/dmesg/oneplus-3t.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/oneplus-3t.log -------------------------------------------------------------------------------- /test/dmesg/oppo-a37.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/oppo-a37.log -------------------------------------------------------------------------------- /test/dmesg/oppo-r9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/oppo-r9.log -------------------------------------------------------------------------------- /test/dmesg/padcod-10.1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/padcod-10.1.log -------------------------------------------------------------------------------- /test/dmesg/pixel-xl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/pixel-xl.log -------------------------------------------------------------------------------- /test/dmesg/pixel.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/pixel.log -------------------------------------------------------------------------------- /test/dmesg/xiaomi-mi-5c.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/xiaomi-mi-5c.log -------------------------------------------------------------------------------- /test/dmesg/xiaomi-redmi-note-3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/xiaomi-redmi-note-3.log -------------------------------------------------------------------------------- /test/dmesg/xiaomi-redmi-note-4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/xiaomi-redmi-note-4.log -------------------------------------------------------------------------------- /test/dmesg/xperia-c4-dual.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/xperia-c4-dual.log -------------------------------------------------------------------------------- /test/dmesg/xperia-sl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/xperia-sl.log -------------------------------------------------------------------------------- /test/dmesg/zenfone-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/dmesg/zenfone-2.log -------------------------------------------------------------------------------- /test/get-current.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/get-current.cc -------------------------------------------------------------------------------- /test/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/init.cc -------------------------------------------------------------------------------- /test/mock/alcatel-revvl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/alcatel-revvl.cc -------------------------------------------------------------------------------- /test/mock/alcatel-revvl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/alcatel-revvl.h -------------------------------------------------------------------------------- /test/mock/alldocube-iwork8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/alldocube-iwork8.cc -------------------------------------------------------------------------------- /test/mock/alldocube-iwork8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/alldocube-iwork8.h -------------------------------------------------------------------------------- /test/mock/atm7029b-tablet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/atm7029b-tablet.cc -------------------------------------------------------------------------------- /test/mock/atm7029b-tablet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/atm7029b-tablet.h -------------------------------------------------------------------------------- /test/mock/blu-r1-hd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/blu-r1-hd.cc -------------------------------------------------------------------------------- /test/mock/blu-r1-hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/blu-r1-hd.h -------------------------------------------------------------------------------- /test/mock/galaxy-a3-2016-eu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-a3-2016-eu.cc -------------------------------------------------------------------------------- /test/mock/galaxy-a3-2016-eu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-a3-2016-eu.h -------------------------------------------------------------------------------- /test/mock/galaxy-a8-2016-duos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-a8-2016-duos.cc -------------------------------------------------------------------------------- /test/mock/galaxy-a8-2016-duos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-a8-2016-duos.h -------------------------------------------------------------------------------- /test/mock/galaxy-a8-2018.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-a8-2018.cc -------------------------------------------------------------------------------- /test/mock/galaxy-a8-2018.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-a8-2018.h -------------------------------------------------------------------------------- /test/mock/galaxy-c9-pro.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-c9-pro.cc -------------------------------------------------------------------------------- /test/mock/galaxy-c9-pro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-c9-pro.h -------------------------------------------------------------------------------- /test/mock/galaxy-grand-prime-value-edition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-grand-prime-value-edition.cc -------------------------------------------------------------------------------- /test/mock/galaxy-grand-prime-value-edition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-grand-prime-value-edition.h -------------------------------------------------------------------------------- /test/mock/galaxy-j1-2016.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j1-2016.cc -------------------------------------------------------------------------------- /test/mock/galaxy-j1-2016.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j1-2016.h -------------------------------------------------------------------------------- /test/mock/galaxy-j5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j5.cc -------------------------------------------------------------------------------- /test/mock/galaxy-j5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j5.h -------------------------------------------------------------------------------- /test/mock/galaxy-j7-prime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j7-prime.cc -------------------------------------------------------------------------------- /test/mock/galaxy-j7-prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j7-prime.h -------------------------------------------------------------------------------- /test/mock/galaxy-j7-tmobile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j7-tmobile.cc -------------------------------------------------------------------------------- /test/mock/galaxy-j7-tmobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j7-tmobile.h -------------------------------------------------------------------------------- /test/mock/galaxy-j7-uae.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j7-uae.cc -------------------------------------------------------------------------------- /test/mock/galaxy-j7-uae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-j7-uae.h -------------------------------------------------------------------------------- /test/mock/galaxy-s3-us.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s3-us.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s3-us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s3-us.h -------------------------------------------------------------------------------- /test/mock/galaxy-s4-us.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s4-us.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s4-us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s4-us.h -------------------------------------------------------------------------------- /test/mock/galaxy-s5-global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s5-global.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s5-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s5-global.h -------------------------------------------------------------------------------- /test/mock/galaxy-s5-us.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s5-us.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s5-us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s5-us.h -------------------------------------------------------------------------------- /test/mock/galaxy-s6.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s6.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s6.h -------------------------------------------------------------------------------- /test/mock/galaxy-s7-global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s7-global.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s7-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s7-global.h -------------------------------------------------------------------------------- /test/mock/galaxy-s7-us.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s7-us.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s7-us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s7-us.h -------------------------------------------------------------------------------- /test/mock/galaxy-s8-global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s8-global.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s8-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s8-global.h -------------------------------------------------------------------------------- /test/mock/galaxy-s8-us.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s8-us.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s8-us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s8-us.h -------------------------------------------------------------------------------- /test/mock/galaxy-s9-global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s9-global.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s9-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s9-global.h -------------------------------------------------------------------------------- /test/mock/galaxy-s9-us.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s9-us.cc -------------------------------------------------------------------------------- /test/mock/galaxy-s9-us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-s9-us.h -------------------------------------------------------------------------------- /test/mock/galaxy-tab-3-7.0.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-tab-3-7.0.cc -------------------------------------------------------------------------------- /test/mock/galaxy-tab-3-7.0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-tab-3-7.0.h -------------------------------------------------------------------------------- /test/mock/galaxy-tab-3-lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-tab-3-lite.cc -------------------------------------------------------------------------------- /test/mock/galaxy-tab-3-lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-tab-3-lite.h -------------------------------------------------------------------------------- /test/mock/galaxy-win-duos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-win-duos.cc -------------------------------------------------------------------------------- /test/mock/galaxy-win-duos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/galaxy-win-duos.h -------------------------------------------------------------------------------- /test/mock/huawei-ascend-p7.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-ascend-p7.cc -------------------------------------------------------------------------------- /test/mock/huawei-ascend-p7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-ascend-p7.h -------------------------------------------------------------------------------- /test/mock/huawei-honor-6.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-honor-6.cc -------------------------------------------------------------------------------- /test/mock/huawei-honor-6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-honor-6.h -------------------------------------------------------------------------------- /test/mock/huawei-mate-10.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-mate-10.cc -------------------------------------------------------------------------------- /test/mock/huawei-mate-10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-mate-10.h -------------------------------------------------------------------------------- /test/mock/huawei-mate-20.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-mate-20.cc -------------------------------------------------------------------------------- /test/mock/huawei-mate-20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-mate-20.h -------------------------------------------------------------------------------- /test/mock/huawei-mate-8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-mate-8.cc -------------------------------------------------------------------------------- /test/mock/huawei-mate-8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-mate-8.h -------------------------------------------------------------------------------- /test/mock/huawei-mate-9.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-mate-9.cc -------------------------------------------------------------------------------- /test/mock/huawei-mate-9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-mate-9.h -------------------------------------------------------------------------------- /test/mock/huawei-p20-pro.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-p20-pro.cc -------------------------------------------------------------------------------- /test/mock/huawei-p20-pro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-p20-pro.h -------------------------------------------------------------------------------- /test/mock/huawei-p8-lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-p8-lite.cc -------------------------------------------------------------------------------- /test/mock/huawei-p8-lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-p8-lite.h -------------------------------------------------------------------------------- /test/mock/huawei-p9-lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-p9-lite.cc -------------------------------------------------------------------------------- /test/mock/huawei-p9-lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/huawei-p9-lite.h -------------------------------------------------------------------------------- /test/mock/iconia-one-10.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/iconia-one-10.cc -------------------------------------------------------------------------------- /test/mock/iconia-one-10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/iconia-one-10.h -------------------------------------------------------------------------------- /test/mock/leagoo-t5c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/leagoo-t5c.cc -------------------------------------------------------------------------------- /test/mock/leagoo-t5c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/leagoo-t5c.h -------------------------------------------------------------------------------- /test/mock/lenovo-a6600-plus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/lenovo-a6600-plus.cc -------------------------------------------------------------------------------- /test/mock/lenovo-a6600-plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/lenovo-a6600-plus.h -------------------------------------------------------------------------------- /test/mock/lenovo-vibe-x2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/lenovo-vibe-x2.cc -------------------------------------------------------------------------------- /test/mock/lenovo-vibe-x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/lenovo-vibe-x2.h -------------------------------------------------------------------------------- /test/mock/lg-k10-eu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/lg-k10-eu.cc -------------------------------------------------------------------------------- /test/mock/lg-k10-eu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/lg-k10-eu.h -------------------------------------------------------------------------------- /test/mock/lg-optimus-g-pro.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/lg-optimus-g-pro.cc -------------------------------------------------------------------------------- /test/mock/lg-optimus-g-pro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/lg-optimus-g-pro.h -------------------------------------------------------------------------------- /test/mock/meizu-pro-6.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/meizu-pro-6.cc -------------------------------------------------------------------------------- /test/mock/meizu-pro-6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/meizu-pro-6.h -------------------------------------------------------------------------------- /test/mock/meizu-pro-6s.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/meizu-pro-6s.cc -------------------------------------------------------------------------------- /test/mock/meizu-pro-6s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/meizu-pro-6s.h -------------------------------------------------------------------------------- /test/mock/meizu-pro-7-plus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/meizu-pro-7-plus.cc -------------------------------------------------------------------------------- /test/mock/meizu-pro-7-plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/meizu-pro-7-plus.h -------------------------------------------------------------------------------- /test/mock/memo-pad-7.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/memo-pad-7.cc -------------------------------------------------------------------------------- /test/mock/memo-pad-7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/memo-pad-7.h -------------------------------------------------------------------------------- /test/mock/moto-e-gen1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-e-gen1.cc -------------------------------------------------------------------------------- /test/mock/moto-e-gen1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-e-gen1.h -------------------------------------------------------------------------------- /test/mock/moto-g-gen1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen1.cc -------------------------------------------------------------------------------- /test/mock/moto-g-gen1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen1.h -------------------------------------------------------------------------------- /test/mock/moto-g-gen2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen2.cc -------------------------------------------------------------------------------- /test/mock/moto-g-gen2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen2.h -------------------------------------------------------------------------------- /test/mock/moto-g-gen3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen3.cc -------------------------------------------------------------------------------- /test/mock/moto-g-gen3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen3.h -------------------------------------------------------------------------------- /test/mock/moto-g-gen4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen4.cc -------------------------------------------------------------------------------- /test/mock/moto-g-gen4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen4.h -------------------------------------------------------------------------------- /test/mock/moto-g-gen5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen5.cc -------------------------------------------------------------------------------- /test/mock/moto-g-gen5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/moto-g-gen5.h -------------------------------------------------------------------------------- /test/mock/nexus-s.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus-s.cc -------------------------------------------------------------------------------- /test/mock/nexus-s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus-s.h -------------------------------------------------------------------------------- /test/mock/nexus10.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus10.cc -------------------------------------------------------------------------------- /test/mock/nexus10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus10.h -------------------------------------------------------------------------------- /test/mock/nexus4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus4.cc -------------------------------------------------------------------------------- /test/mock/nexus4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus4.h -------------------------------------------------------------------------------- /test/mock/nexus5x.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus5x.cc -------------------------------------------------------------------------------- /test/mock/nexus5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus5x.h -------------------------------------------------------------------------------- /test/mock/nexus6.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus6.cc -------------------------------------------------------------------------------- /test/mock/nexus6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus6.h -------------------------------------------------------------------------------- /test/mock/nexus6p.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus6p.cc -------------------------------------------------------------------------------- /test/mock/nexus6p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus6p.h -------------------------------------------------------------------------------- /test/mock/nexus9.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus9.cc -------------------------------------------------------------------------------- /test/mock/nexus9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/nexus9.h -------------------------------------------------------------------------------- /test/mock/oneplus-3t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oneplus-3t.cc -------------------------------------------------------------------------------- /test/mock/oneplus-3t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oneplus-3t.h -------------------------------------------------------------------------------- /test/mock/oneplus-5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oneplus-5.cc -------------------------------------------------------------------------------- /test/mock/oneplus-5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oneplus-5.h -------------------------------------------------------------------------------- /test/mock/oneplus-5t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oneplus-5t.cc -------------------------------------------------------------------------------- /test/mock/oneplus-5t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oneplus-5t.h -------------------------------------------------------------------------------- /test/mock/oppo-a37.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oppo-a37.cc -------------------------------------------------------------------------------- /test/mock/oppo-a37.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oppo-a37.h -------------------------------------------------------------------------------- /test/mock/oppo-r15.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oppo-r15.cc -------------------------------------------------------------------------------- /test/mock/oppo-r15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oppo-r15.h -------------------------------------------------------------------------------- /test/mock/oppo-r9.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oppo-r9.cc -------------------------------------------------------------------------------- /test/mock/oppo-r9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/oppo-r9.h -------------------------------------------------------------------------------- /test/mock/padcod-10.1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/padcod-10.1.cc -------------------------------------------------------------------------------- /test/mock/padcod-10.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/padcod-10.1.h -------------------------------------------------------------------------------- /test/mock/pixel-2-xl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel-2-xl.cc -------------------------------------------------------------------------------- /test/mock/pixel-2-xl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel-2-xl.h -------------------------------------------------------------------------------- /test/mock/pixel-8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel-8.cc -------------------------------------------------------------------------------- /test/mock/pixel-8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel-8.h -------------------------------------------------------------------------------- /test/mock/pixel-c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel-c.cc -------------------------------------------------------------------------------- /test/mock/pixel-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel-c.h -------------------------------------------------------------------------------- /test/mock/pixel-xl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel-xl.cc -------------------------------------------------------------------------------- /test/mock/pixel-xl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel-xl.h -------------------------------------------------------------------------------- /test/mock/pixel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel.cc -------------------------------------------------------------------------------- /test/mock/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/pixel.h -------------------------------------------------------------------------------- /test/mock/scaleway.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/scaleway.cc -------------------------------------------------------------------------------- /test/mock/scaleway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/scaleway.h -------------------------------------------------------------------------------- /test/mock/xiaomi-mi-5c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xiaomi-mi-5c.cc -------------------------------------------------------------------------------- /test/mock/xiaomi-mi-5c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xiaomi-mi-5c.h -------------------------------------------------------------------------------- /test/mock/xiaomi-redmi-2a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xiaomi-redmi-2a.cc -------------------------------------------------------------------------------- /test/mock/xiaomi-redmi-2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xiaomi-redmi-2a.h -------------------------------------------------------------------------------- /test/mock/xiaomi-redmi-note-3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xiaomi-redmi-note-3.cc -------------------------------------------------------------------------------- /test/mock/xiaomi-redmi-note-3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xiaomi-redmi-note-3.h -------------------------------------------------------------------------------- /test/mock/xiaomi-redmi-note-4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xiaomi-redmi-note-4.cc -------------------------------------------------------------------------------- /test/mock/xiaomi-redmi-note-4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xiaomi-redmi-note-4.h -------------------------------------------------------------------------------- /test/mock/xperia-c4-dual.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xperia-c4-dual.cc -------------------------------------------------------------------------------- /test/mock/xperia-c4-dual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xperia-c4-dual.h -------------------------------------------------------------------------------- /test/mock/xperia-sl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xperia-sl.cc -------------------------------------------------------------------------------- /test/mock/xperia-sl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/xperia-sl.h -------------------------------------------------------------------------------- /test/mock/zenfone-2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/zenfone-2.cc -------------------------------------------------------------------------------- /test/mock/zenfone-2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/zenfone-2.h -------------------------------------------------------------------------------- /test/mock/zenfone-2e.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/zenfone-2e.cc -------------------------------------------------------------------------------- /test/mock/zenfone-2e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/zenfone-2e.h -------------------------------------------------------------------------------- /test/mock/zenfone-c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/zenfone-c.cc -------------------------------------------------------------------------------- /test/mock/zenfone-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/mock/zenfone-c.h -------------------------------------------------------------------------------- /test/name/android-properties-interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/name/android-properties-interface.c -------------------------------------------------------------------------------- /test/name/android-properties.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/name/android-properties.cc -------------------------------------------------------------------------------- /test/name/brand-string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/name/brand-string.cc -------------------------------------------------------------------------------- /test/name/proc-cpuinfo-hardware.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/name/proc-cpuinfo-hardware.cc -------------------------------------------------------------------------------- /test/name/ro-arch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/name/ro-arch.cc -------------------------------------------------------------------------------- /test/name/ro-board-platform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/name/ro-board-platform.cc -------------------------------------------------------------------------------- /test/name/ro-chipname.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/name/ro-chipname.cc -------------------------------------------------------------------------------- /test/name/ro-mediatek-platform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/name/ro-mediatek-platform.cc -------------------------------------------------------------------------------- /test/name/ro-product-board.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/name/ro-product-board.cc -------------------------------------------------------------------------------- /test/size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/test/size.c -------------------------------------------------------------------------------- /tools/auxv-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/tools/auxv-dump.c -------------------------------------------------------------------------------- /tools/cache-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/tools/cache-info.c -------------------------------------------------------------------------------- /tools/cpu-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/tools/cpu-info.c -------------------------------------------------------------------------------- /tools/cpuid-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/tools/cpuid-dump.c -------------------------------------------------------------------------------- /tools/cpuinfo-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/tools/cpuinfo-dump.c -------------------------------------------------------------------------------- /tools/gpu-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/tools/gpu-dump.c -------------------------------------------------------------------------------- /tools/isa-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/cpuinfo/HEAD/tools/isa-info.c --------------------------------------------------------------------------------