Skip to content

Instantly share code, notes, and snippets.

View chez-shanpu's full-sized avatar

Tomoki Sugiura chez-shanpu

View GitHub Profile
@chez-shanpu
chez-shanpu / matmul.cpp
Last active December 17, 2020 13:08 — forked from keichi/matmul.cpp
#include <chrono>
#include <iostream>
#include <random>
const int N = 1000;
const int TRIALS = 10;
// [memo] When "N" equals 1000, # of flops is 2000000000
const double nFlops = 2.0 * 1000 * 1000 * 1000;