forked from metric-space-ai/metric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetric.hpp
37 lines (27 loc) · 1.52 KB
/
metric.hpp
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
28
29
30
31
32
33
34
35
36
37
/*
PANDA presents
███╗ ███╗███████╗████████╗██████╗ ██╗ ██████╗
████╗ ████║██╔════╝╚══██╔══╝██╔══██╗██║██╔════╝
██╔████╔██║█████╗ ██║ ██████╔╝██║██║
██║╚██╔╝██║██╔══╝ ██║ ██╔══██╗██║██║
██║ ╚═╝ ██║███████╗ ██║ ██║ ██║██║╚██████╗
Licensed under MPL 2.0.
Michael Welsch (c) 2018.
a framework to process abritrary data
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
Copyright (c) 2018 Michael Welsch
*/
/*
blaze need additional linking to blas.
clang++ -std=c++17 main.cpp -o run.o -Ofast -L/usr/local/Cellar/openblas/0.3.5/lib -L/usr/local/Cellar/openblas/0.3.5/include -lopenblas
*/
#ifndef _PANDA_METRIC_HPP
#define _PANDA_METRIC_HPP
#include "modules/distance.hpp"
#include "modules/space.hpp"
#include "modules/correlation.hpp"
#include "modules/transform.hpp"
#include "modules/mapping.hpp"
#endif