summaryrefslogtreecommitdiff
blob: b5d899c9ee8cc33824badf64d17a7b1db0b7e842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import os, btlbase
import subprocess as sp
import shlex
from os.path import join as pjoin

class BLASBase(btlbase.BTLBase):
    def _initialize(self):
        self.avail1 = ['axpy', 'axpby', 'rot']
        self.avail2 = ['matrix_vector','atv','symv', 'ger', 'syr2',
          'trisolve_vector']
        self.avail3 = ['matrix_matrix', 'aat', 'trisolve_matrix', 'trmm']
        self.avail = self.avail1 + self.avail2 + self.avail3
    
    def _parse_args(self, args):     
        # Parse arguments
        tests = []
        for i in args:
            if i == '1':
                tests += self.avail1
                continue
            if i == '2':
                tests += self.avail2
                continue
            if i == '3':
                tests += self.avail3
                continue
            if i in self.avail:
                tests.append(i)
                continue
            raise Exception("Argument not recognized: " + i)
        
        # Sort tests
        self.tests = [i for i in self.avail if i in tests]
        
        # If no test is specified, then choose four standard tests
        if len(self.tests) == 0:
            self.tests = ['axpy', 'matrix_vector', \
              'trisolve_vector', 'matrix_matrix']
        
        btlbase.BTLBase._parse_args(self, args)
        
    @staticmethod
    def _testClass():
        return BLASTest


class BLASTest(btlbase.BTLTest):
    @staticmethod
    def _btl_source():
        return "libs/BLAS/main.cpp"
    
    @staticmethod
    def _btl_includes():
        return ["libs/BLAS"]
    
    def _btl_defines(self):
        return ["CBLASNAME="+self.libname, self.libname.upper()+"_INTERFACE"]