postproc_ops.hpp
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2023-2025, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 #pragma once
6 namespace ML {
7 namespace fil {
8 
10 enum struct row_op : unsigned char {
11  disable = 0b00100000,
12  softmax = 0b01000000,
13  max_index = 0b10000000
14 };
15 
17 enum struct element_op : unsigned char {
18  disable = 0b00000000,
19  signed_square = 0b00000001,
20  hinge = 0b00000010,
21  sigmoid = 0b00000100,
22  exponential = 0b00001000,
23  logarithm_one_plus_exp = 0b00010000
24 };
25 
26 } // namespace fil
27 } // namespace ML
row_op
Definition: postproc_ops.hpp:10
element_op
Definition: postproc_ops.hpp:17
Definition: dbscan.hpp:18