max_uva_threads.cc 399 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 *  Copyright (c) 2023 by Contributors
 *  Copyright (c) 2023, GT-TDAlab (Muhammed Fatih Balin & Umit V. Catalyurek)
 * @file cuda/max_uva_threads.cc
 * @brief Max uva threads variable setter function.
 */
#include "./max_uva_threads.h"

namespace graphbolt {
namespace cuda {

void set_max_uva_threads(int64_t count) { max_uva_threads = count; }

}  // namespace cuda
}  // namespace graphbolt