pack.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2018-2021, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #pragma once
7 
8 namespace ML {
9 namespace Dbscan {
10 namespace AdjGraph {
11 
12 template <typename Index_ = int>
13 struct Pack {
19  Index_* vd;
21  bool* adj;
23  Index_* adj_graph;
24 
25  Index_ adjnnz;
26 
28  Index_* ex_scan;
30  Index_ N;
31 };
32 
33 } // namespace AdjGraph
34 } // namespace Dbscan
35 } // namespace ML
Definition: dbscan.hpp:18
Definition: pack.h:13
Index_ * vd
Definition: pack.h:19
Index_ N
Definition: pack.h:30
bool * adj
Definition: pack.h:21
Index_ adjnnz
Definition: pack.h:25
Index_ * ex_scan
Definition: pack.h:28
Index_ * adj_graph
Definition: pack.h:23