2018-12-20 00:48:35 +08:00
|
|
|
/**
|
2019-05-28 22:17:22 +08:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-12-20 00:48:35 +08:00
|
|
|
*
|
2019-05-28 22:17:22 +08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
2018-12-20 00:48:35 +08:00
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2019-09-21 00:59:10 +08:00
|
|
|
#include <faiss/utils/utils.h>
|
2018-12-20 00:48:35 +08:00
|
|
|
|
|
|
|
TEST(Threading, openmp) {
|
2021-02-25 20:44:50 +08:00
|
|
|
EXPECT_TRUE(faiss::check_openmp());
|
2018-12-20 00:48:35 +08:00
|
|
|
}
|