fix BUILD_MOBILE_BENCHMARK typo (#48515)

Summary:
BUILD_MOBILE_BENCHMARKS in CMakeLists.txt should be BUILD_MOBILE_BENCHMARK.

Pull Request resolved: https://github.com/pytorch/pytorch/pull/48515

Reviewed By: albanD

Differential Revision: D25198724

Pulled By: mrshenli

fbshipit-source-id: 12765d10c272da04cb104202fcbabc6a0b007c5e
This commit is contained in:
Gemfield 2020-11-30 08:36:57 -08:00 committed by Facebook GitHub Bot
parent 5bb2a87a94
commit 3c9e71c9ad

View File

@ -138,7 +138,7 @@ cmake_dependent_option(
option(BUILD_TEST "Build C++ test binaries (need gtest and gbenchmark)" OFF)
option(BUILD_STATIC_RUNTIME_BENCHMARK "Build C++ binaries for static runtime benchmarks (need gbenchmark)" OFF)
option(BUILD_TENSOREXPR_BENCHMARK "Build C++ binaries for tensorexpr benchmarks (need gbenchmark)" OFF)
option(BUILD_MOBILE_BENCHMARKS "Build C++ test binaries for mobile (ARM) targets(need gtest and gbenchmark)" OFF)
option(BUILD_MOBILE_BENCHMARK "Build C++ test binaries for mobile (ARM) targets(need gtest and gbenchmark)" OFF)
option(BUILD_MOBILE_TEST "Build C++ test binaries for mobile (ARM) targets(need gtest and gbenchmark)" OFF)
option(BUILD_JNI "Build JNI bindings" OFF)
option(BUILD_MOBILE_AUTOGRAD "Build autograd function in mobile build (in development)" OFF)