# Copyright (c) Facebook, Inc. and its affiliates. | |
# All rights reserved. | |
# | |
# Copyright 2019 Google LLC | |
# | |
# This source code is licensed under the BSD-style license found in the | |
# LICENSE file in the root directory of this source tree. | |
CMAKE_MINIMUM_REQUIRED(VERSION 3.5 FATAL_ERROR) | |
PROJECT(cpuinfo-download NONE) | |
INCLUDE(ExternalProject) | |
ExternalProject_Add(cpuinfo | |
URL https://github.com/pytorch/cpuinfo/archive/87d8234510367db49a65535021af5e1838a65ac2.zip | |
URL_HASH SHA256=609fc42c47482c1fc125dccac65e843f640e792540162581c4b7eb6ff81c826a | |
SOURCE_DIR "/content/XNNPACK/build/cpuinfo-source" | |
BINARY_DIR "/content/XNNPACK/build/cpuinfo" | |
CONFIGURE_COMMAND "" | |
PATCH_COMMAND "" | |
BUILD_COMMAND "" | |
INSTALL_COMMAND "" | |
TEST_COMMAND "" | |
) | |