File: checkblas.cpp

package info (click to toggle)
wsclean 3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,968 kB
  • sloc: cpp: 85,742; python: 3,526; sh: 245; makefile: 21
file content (13 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <aocommon/checkblas.h>

#include <iostream>

int main() {
  try {
    check_openblas_multithreading();
    return 0;
  } catch (std::runtime_error& e) {
    std::cout << e.what() << '\n';
    return 1;
  }
}