-
Notifications
You must be signed in to change notification settings - Fork 549
Expand file tree
/
Copy pathtopk.cpp
More file actions
27 lines (23 loc) · 791 Bytes
/
topk.cpp
File metadata and controls
27 lines (23 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*******************************************************
* Copyright (c) 2018, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#include <af/array.h>
#include <af/dim4.hpp>
#include <af/statistics.h>
#include "common.hpp"
#include "error.hpp"
namespace af {
void topk(array &values, array &indices, const array &in, const int k,
const int dim, const topkFunction order) {
af_array af_vals = 0;
af_array af_idxs = 0;
AF_THROW(af_topk(&af_vals, &af_idxs, in.get(), k, dim, order));
values = array(af_vals);
indices = array(af_idxs);
}
} // namespace af