faiss/c_api/gpu/DeviceUtils_c.h
Ji Bin 9c7ad74814 Adaptation for compile c_api with CUDA 12 (#2656)
Summary:
Closes https://github.com/facebookresearch/faiss/issues/2655

Pull Request resolved: https://github.com/facebookresearch/faiss/pull/2656

Reviewed By: algoriddle

Differential Revision: D42471852

Pulled By: mdouze

fbshipit-source-id: 72162acc1590e565cdfcbd78510ae757c396e970
2023-01-12 00:15:36 -08:00

39 lines
863 B
C

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// Copyright 2004-present Facebook. All Rights Reserved.
// -*- c -*-
#ifndef FAISS_DEVICE_UTILS_C_H
#define FAISS_DEVICE_UTILS_C_H
#include <cublas_v2.h>
#include <cuda_runtime_api.h>
#include "../faiss_c.h"
#ifdef __cplusplus
extern "C" {
#endif
/// Returns the number of available GPU devices
int faiss_get_num_gpus(int* p_output);
/// Starts the CUDA profiler (exposed via SWIG)
int faiss_gpu_profiler_start();
/// Stops the CUDA profiler (exposed via SWIG)
int faiss_gpu_profiler_stop();
/// Synchronizes the CPU against all devices (equivalent to
/// cudaDeviceSynchronize for each device)
int faiss_gpu_sync_all_devices();
#ifdef __cplusplus
}
#endif
#endif