Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BenchUtils.h « bench - github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c16a06863d21040e81d5e202783dc84df5858a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) Facebook, Inc. and its affiliates.
 * All rights reserved.
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree.
 */
#pragma once
#include <vector>
#include "bench/AlignedVec.h"

namespace fbgemm {

template <typename T>
void randFill(aligned_vector<T> &vec, const int low, const int high);

void llc_flush(std::vector<char>& llc);

} // namespace fbgemm