8 lines
No EOL
188 B
C++
8 lines
No EOL
188 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
using namespace std;
|
|
|
|
double norm(vector<double> const &x);
|
|
vector<double> init_norm(size_t N);
|
|
void benchmark_norm(vector<double> const &x, size_t NLOOPS); |