nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at r-updates 12 lines 179 B view raw
1#include <assert.h> 2 3#include <mkl_cblas.h> 4 5int main() { 6 float u[] = {1., 2., 3.}; 7 float v[] = {4., 5., 6.}; 8 9 float dp = cblas_sdot(3, u, 1, v, 1); 10 11 assert(dp == 32.); 12}