constants.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2021-2025, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
8 #pragma once
9 
10 namespace cuml {
11 namespace genetic {
12 
13 // Max number of threads per block to use with tournament and evaluation kernels
14 const int GENE_TPB = 256;
15 
16 // Max size of stack used for AST evaluation
17 const int MAX_STACK_SIZE = 20;
18 
19 } // namespace genetic
20 } // namespace cuml
const int MAX_STACK_SIZE
Definition: constants.h:17
const int GENE_TPB
Definition: constants.h:14
Definition: common.h:15