File: checkblas.cpp

package info (click to toggle)
wsclean 3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 8,036 kB
  • sloc: cpp: 71,902; python: 9,239; ansic: 230; makefile: 175; sh: 172
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;
  }
}