File: polytest.g

package info (click to toggle)
gap 4r7p5-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 29,272 kB
  • ctags: 7,129
  • sloc: ansic: 107,802; xml: 46,868; sh: 3,548; perl: 2,329; makefile: 740; python: 94; asm: 62; awk: 6
file content (120 lines) | stat: -rw-r--r-- 3,287 bytes parent folder | download | duplicates (7)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#############################################################################
##                                                                         ##
##  Polynomial arithmetic timing tests                      Robert Arthur  ##
##                                                                         ##
#############################################################################

if IsBound(Permutations) then   # running GAP3
    # Without these, the parser doesn't like the GAP4 code's presence
    LaurentPolynomialByCoefficients:= x->x;
    ElementsFamily:= x->x;
    FamilyObj:= x->x;
    
    # require a function to test for zero polynomials
    polyIsZero:= function(p)
        return p = Polynomial(p.baseRing, []);
    end;
    # create a polynomial with base field f, coefficient list l
    PolynomialTest:= function(f, l)   # the actual call
        return Polynomial(f, l);
    end;
fi;
if not IsBound(Permutations) then   # running GAP4
    PolynomialTest:= function(f, l)
        return LaurentPolynomialByCoefficients(
                       ElementsFamily(FamilyObj(f)), l, 0);
    end;
    polyIsZero:= IsZero;
fi;

testfields:= [FiniteField(2), FiniteField(3), FiniteField(128), FiniteField(1013),
     Rationals];


# polys[l] will contain 100 random polynomials over testfields[l].
polys:= List(testfields, x->[]);

# Start the calculations!

ProdTest:=function()
local l,i,j,start,scratch;
  for l in [1..Length(testfields)] do
      start:= Runtime();
      for i in [1..100] do
	  for j in [1..100] do
	      scratch:= polys[l][i]*polys[l][j];
	  od;
      od;
      Print("Time for product over ",testfields[l],": ", Runtime()-start, "\n");
  od;
end;
      
AddTest:=function()
local l,i,j,start,scratch;
  for l in [1..Length(testfields)] do
      start:= Runtime();
      for i in [1..100] do
	  for j in [1..100] do
	      scratch:= polys[l][i]+polys[l][j];
	  od;
      od;
      Print("Time for addition over ",testfields[l],": ", Runtime()-start, "\n");
  od;
end;
      
SubTest:=function()
local l,i,j,start,scratch;
  for l in [1..Length(testfields)] do
      start:= Runtime();
      for i in [1..100] do
	  for j in [1..100] do
	      scratch:= polys[l][i]-polys[l][j];
	  od;
      od;
      Print("Time for subtraction over ",testfields[l],": ", Runtime()-start, "\n");
  od;
end;

# Division not defined for all pairs - we must make sure that p2 divides
# p1.   Timing only performed for final division.

DivTest:=function()
local p,l,i,j,start,scratch,total;
  p:= [];
  for l in [1..Length(testfields)] do
      total:= 0;
      for i in [1..100] do
	  for j in [1..100] do
	      p[j]:= polys[l][i]*polys[l][j];
	  od;
	  start:= Runtime();
	  for j in [1..100] do
	      if not polyIsZero(polys[l][i]) then
		  scratch:= p[j]/polys[l][i];
	      fi;
	  od;
	  total:= total + Runtime() - start;
      od;
      Print("Time for division over ", testfields[l],": ",total,"\n");
  od;

end;

DoTests:=function()
local i,j,a,l;
  for i in [1..100] do
      for j in [1..Length(testfields)] do
	  a:= Random([1..20]);
	  l:= List([1..a], x->Random(testfields[j]));
	  Add(polys[j], PolynomialTest(testfields[j], l));
      od;
  od;

  Print("Fields are: ", testfields, "\n");
  AddTest();
  SubTest();
  ProdTest();
  DivTest();
end;