blob: a63bfe513994a33f594a00257802b2cb71110bef (
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
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
|
'// =============================================================================' Comment.Single
'\n' Text.Whitespace
'// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab' Comment.Single
'\n' Text.Whitespace
'// Copyright (C) 2007-2008 - INRIA' Comment.Single
'\n' Text.Whitespace
'//' Comment.Single
'\n' Text.Whitespace
'// This file is distributed under the same license as the Scilab package.' Comment.Single
'\n' Text.Whitespace
'// =============================================================================' Comment.Single
'\n\n' Text.Whitespace
'//==============================================================================' Comment.Single
'\n' Text.Whitespace
'// Benchmark for chol function' Comment.Single
'\n' Text.Whitespace
'//==============================================================================' Comment.Single
'\n\n' Text.Whitespace
'// <-- BENCH NB RUN : 10 -->' Comment.Single
'\n\n' Text.Whitespace
'stacksize' Name.Builtin
'(' Punctuation
'30000000' Literal.Number.Integer
');' Punctuation
'\n\n' Text.Whitespace
'a' Name
' ' Text.Whitespace
'=' Punctuation
' ' Text.Whitespace
'0' Literal.Number.Integer
';' Punctuation
'\n' Text.Whitespace
'b' Name
' ' Text.Whitespace
'=' Punctuation
' ' Text.Whitespace
'0' Literal.Number.Integer
';' Punctuation
'\n' Text.Whitespace
'a' Name
' ' Text.Whitespace
'=' Punctuation
' ' Text.Whitespace
'rand' Name.Builtin
'(' Punctuation
'900' Literal.Number.Integer
',' Punctuation
' ' Text.Whitespace
'900' Literal.Number.Integer
',' Punctuation
' ' Text.Whitespace
"'" Literal.String
"n'" Literal.String
');' Punctuation
'\n' Text.Whitespace
'a' Name
' ' Text.Whitespace
'=' Punctuation
' ' Text.Whitespace
'a' Name
"'" Operator
'*' Operator
'a' Name
';' Punctuation
'\n\n' Text.Whitespace
'// <-- BENCH START -->' Comment.Single
'\n' Text.Whitespace
'b' Name
' ' Text.Whitespace
'=' Punctuation
' ' Text.Whitespace
'chol' Name.Builtin
'(' Punctuation
'a' Name
');' Punctuation
'\n' Text.Whitespace
'// <-- BENCH END -->' Comment.Single
'\n' Text.Whitespace
|