Skip to content

Commit c30ca2e

Browse files
authored
Merge pull request #40 from IntelPython/fix-build
Fixing demo build issues
2 parents 2d49238 + 9a14f28 commit c30ca2e

File tree

11 files changed

+6
-14
lines changed

11 files changed

+6
-14
lines changed

demos/mandelbrot/conda-recipe/meta.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ about:
4545
- LICENSE
4646
summary: "Mandelbort Set demo using numpy, numba, dpnp, numba-dpex"
4747
description: |
48-
The Mandelbrot set is the set of complex numbers c for which the function f(z)=z*z + c
49-
does not diverge to infinity when iterated from z=0, i.e., for which the sequence
50-
f(0), f(f(0)), etc., remains bounded in absolute value. Images of the Mandelbrot set exhibit
51-
an elaborate and infinitely complicated boundary that reveals progressively ever-finer
48+
The Mandelbrot set is the set of complex numbers c for which the function f(z)=z*z + c
49+
does not diverge to infinity when iterated from z=0, i.e., for which the sequence
50+
f(0), f(f(0)), etc., remains bounded in absolute value. Images of the Mandelbrot set exhibit
51+
an elaborate and infinitely complicated boundary that reveals progressively ever-finer
5252
recursive detail at increasing magnifications
5353
5454
extra:

demos/mandelbrot/mandelbrot_demo/impl/impl_dpnp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import dpnp as np
2-
32
from mandelbrot_demo.impl.settings import MAX_ITER
43

54
c1 = np.asarray([0.0, 0.0, 0.2])

demos/mandelbrot/mandelbrot_demo/impl/impl_numba.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import numba as nb
22
import numpy as np
3-
43
from mandelbrot_demo.impl.settings import MAX_ITER
54

65
nb.config.THREADING_LAYER = "omp"

demos/mandelbrot/mandelbrot_demo/impl/impl_numba_dpex.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import dpnp as np
22
import numba_dpex as nb
3-
43
from mandelbrot_demo.impl.settings import MAX_ITER
54

65
nb.config.THREADING_LAYER = "omp"

demos/mandelbrot/mandelbrot_demo/impl/impl_numpy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import numpy as np
2-
32
from mandelbrot_demo.impl.settings import MAX_ITER
43

54
c1 = np.asarray([0.0, 0.0, 0.2])

demos/mandelbrot/mandelbrot_demo/tests/test_dpnp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import dpnp as np
2-
32
from mandelbrot_demo.impl.impl_dpnp import mandelbrot
43

54

demos/mandelbrot/mandelbrot_demo/tests/test_numba.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import numpy as np
2-
32
from mandelbrot_demo.impl.impl_numba import mandelbrot
43

54

demos/mandelbrot/mandelbrot_demo/tests/test_numba_dpex.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import dpnp as np
2-
32
from mandelbrot_demo.impl.impl_numba_dpex import mandelbrot
43

54

demos/mandelbrot/mandelbrot_demo/tests/test_numpy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import numpy as np
2-
32
from mandelbrot_demo.impl.impl_numpy import mandelbrot
43

54

demos/mcpi/conda-recipe/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ about:
4242
- LICENSE
4343
summary: "Monte Carlo demo to compute Pi using numpy, numba, dpnp, numba-dpex"
4444
description: |
45-
This is a "Hello, World" application in Monte Carlo methods.
46-
It stresses random number generation along with some other math
45+
This is a "Hello, World" application in Monte Carlo methods.
46+
It stresses random number generation along with some other math
4747
required for implementation of the Acceptance-Rejection technique.
4848
4949
extra:

0 commit comments

Comments
 (0)