Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:17

0001 all: auto
0002 
0003 auto: std_sym intr_sym
0004 
0005 clean:
0006         rm -f *.ah
0007 
0008 distclean: clean
0009 
0010 # ---------------------------------------------------------------- #
0011 
0012 std_sym:  std_sym_3x3.ah std_sym_6x6.ah
0013 
0014 intr_sym: intr_sym_3x3.ah intr_sym_6x6.ah 
0015 
0016 
0017 # ================================================================ #
0018 
0019 GM := ./gen_mul.pl
0020 
0021 std_sym_3x3.ah:
0022         ${GM} "mult_sym(3);" > $@
0023 
0024 std_sym_6x6.ah:
0025         ${GM} "mult_sym(6);" > $@
0026 
0027 intr_sym_3x3.ah:
0028         ${GM} "mult_sym_fma_intrinsic(3);" > $@
0029 
0030 intr_sym_6x6.ah:
0031         ${GM} "mult_sym_fma_intrinsic(6);" > $@