#!/bin/bash
BUILD_DIR="/build"
cd ${BUILD_DIR}

cmake -S /source -B /build
make
./simple_hadamard_product


