/ concept-collection / matmul-bench
Sign in
concept-collection / matmul-bench
matmul-bench / native / build.sh
5 lines · 170 BBlameHistoryRaw
1#!/usr/bin/env bash
2set -euo pipefail
3cd "$(dirname "$0")"
4gcc -O2 bench_native.c -o bench_native $(pkg-config --cflags --libs openblas)
5echo "Built native/bench_native"
moveopenescclose