stationarity.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2019-2021, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #pragma once
7 
8 namespace raft {
9 class handle_t;
10 }
11 
12 namespace ML {
13 
14 namespace Stationarity {
15 
31 void kpss_test(const raft::handle_t& handle,
32  const float* d_y,
33  bool* results,
34  int batch_size,
35  int n_obs,
36  int d,
37  int D,
38  int s,
39  float pval_threshold);
40 void kpss_test(const raft::handle_t& handle,
41  const double* d_y,
42  bool* results,
43  int batch_size,
44  int n_obs,
45  int d,
46  int D,
47  int s,
48  double pval_threshold);
49 
50 } // namespace Stationarity
51 } // namespace ML
void kpss_test(const raft::handle_t &handle, const float *d_y, bool *results, int batch_size, int n_obs, int d, int D, int s, float pval_threshold)
Perform the KPSS stationarity test on the data differenced according to the given order.
Definition: dbscan.hpp:18
Definition: dbscan.hpp:14