Skip to content

Commit 0c849ad

Browse files
committed
[Polly][docs] Avoid use of code-block:: guess.
The 'guess' language triggers a warning in the polly-sphinx-docs: https://lab.llvm.org/staging/#/builders/199/builds/209 which is treated as an error by default. This might be related to the Sphinx bug sphinx-doc/sphinx#7139
1 parent dc17043 commit 0c849ad

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

polly/docs/HowToManuallyUseTheIndividualPiecesOfPolly.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ performance improvement can be expected by an optimal automatic optimizer.
4747
4848
$ opt -basic-aa -polly-ast -analyze matmul.preopt.ll -polly-process-unprofitable -polly-use-llvm-names
4949
50-
.. code-block:: guess
50+
.. code-block:: text
5151
5252
:: isl ast :: init_array :: %for.cond1.preheader---%for.end19
5353
@@ -106,7 +106,7 @@ performance improvement can be expected by an optimal automatic optimizer.
106106
107107
$ opt -polly-use-llvm-names -basic-aa -polly-scops -analyze matmul.preopt.ll -polly-process-unprofitable
108108
109-
.. code-block:: guess
109+
.. code-block:: text
110110
111111
[...]Printing analysis 'Polly - Create polyhedral description of Scops' for region: 'for.cond1.preheader => for.end19' in function 'init_array':
112112
Function: init_array
@@ -196,7 +196,7 @@ performance improvement can be expected by an optimal automatic optimizer.
196196
197197
$ opt -basic-aa -polly-use-llvm-names -polly-dependences -analyze matmul.preopt.ll -polly-process-unprofitable
198198

199-
.. code-block:: guess
199+
.. code-block:: text
200200
201201
[...]Printing analysis 'Polly - Calculate dependences' for region: 'for.cond1.preheader => for.end19' in function 'init_array':
202202
RAW dependences:
@@ -228,7 +228,7 @@ performance improvement can be expected by an optimal automatic optimizer.
228228
229229
$ opt -basic-aa -polly-use-llvm-names -polly-export-jscop matmul.preopt.ll -polly-process-unprofitable
230230
231-
.. code-block:: guess
231+
.. code-block:: text
232232
233233
[...]Writing JScop '%for.cond1.preheader---%for.end19' in function 'init_array' to './init_array___%for.cond1.preheader---%for.end19.jscop'.
234234

@@ -389,7 +389,7 @@ performance improvement can be expected by an optimal automatic optimizer.
389389
390390
$ opt -S matmul.preopt.ll -basic-aa -polly-use-llvm-names -polly-import-jscop -polly-import-jscop-postfix=interchanged -polly-codegen -polly-process-unprofitable | opt -S -O3 -o matmul.polly.interchanged.ll
391391
392-
.. code-block:: guess
392+
.. code-block:: text
393393
394394
Reading JScop '%for.cond1.preheader---%for.end19' in function 'init_array' from './init_array___%for.cond1.preheader---%for.end19.jscop.interchanged'.
395395
File could not be read: No such file or directory
@@ -399,7 +399,7 @@ performance improvement can be expected by an optimal automatic optimizer.
399399
400400
$ opt -S matmul.preopt.ll -basic-aa -polly-use-llvm-names -polly-import-jscop -polly-import-jscop-postfix=interchanged+tiled -polly-codegen -polly-process-unprofitable | opt -S -O3 -o matmul.polly.interchanged+tiled.ll
401401
402-
.. code-block:: guess
402+
.. code-block:: text
403403
404404
Reading JScop '%for.cond1.preheader---%for.end19' in function 'init_array' from './init_array___%for.cond1.preheader---%for.end19.jscop.interchanged+tiled'.
405405
File could not be read: No such file or directory
@@ -409,7 +409,7 @@ performance improvement can be expected by an optimal automatic optimizer.
409409
410410
$ opt -S matmul.preopt.ll -basic-aa -polly-use-llvm-names -polly-import-jscop -polly-import-jscop-postfix=interchanged+tiled+vector -polly-codegen -polly-vectorizer=polly -polly-process-unprofitable | opt -S -O3 -o matmul.polly.interchanged+tiled+vector.ll
411411
412-
.. code-block:: guess
412+
.. code-block:: text
413413
414414
Reading JScop '%for.cond1.preheader---%for.end19' in function 'init_array' from './init_array___%for.cond1.preheader---%for.end19.jscop.interchanged+tiled+vector'.
415415
File could not be read: No such file or directory
@@ -419,7 +419,7 @@ performance improvement can be expected by an optimal automatic optimizer.
419419
420420
$ opt -S matmul.preopt.ll -basic-aa -polly-use-llvm-names -polly-import-jscop -polly-import-jscop-postfix=interchanged+tiled+vector -polly-codegen -polly-vectorizer=polly -polly-parallel -polly-process-unprofitable | opt -S -O3 -o matmul.polly.interchanged+tiled+openmp.ll
421421
422-
.. code-block:: guess
422+
.. code-block:: text
423423
424424
Reading JScop '%for.cond1.preheader---%for.end19' in function 'init_array' from './init_array___%for.cond1.preheader---%for.end19.jscop.interchanged+tiled+vector'.
425425
File could not be read: No such file or directory

0 commit comments

Comments
 (0)