https://github.com/Microsoft/CNTK
Raw File
Tip revision: 6a3512357b4583f9600295d70aae2a8bf7d28e16 authored by KeDengMS on 23 February 2018, 22:40:00 UTC
Fix Issue #2963
Tip revision: 6a35123
GPUWatcher.h
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//

#pragma once

#include "GPUMatrix.h"

class MATH_API GPUWatcher
{
public:
    static size_t GetFreeMemoryOnCUDADevice(int devId);
    static int GetGPUIdWithTheMostFreeMemory();
    GPUWatcher(void);
    ~GPUWatcher(void);
};
back to top