|
125 | 125 | '''
|
126 | 126 | This variable controls setuptools execution on windows
|
127 | 127 | to avoid automatically search and confirm workability of the compiler
|
128 |
| - If not set, error "Microsoft Visual C++ 14.0 or greater is required." appiars |
| 128 | + If not set, error "Microsoft Visual C++ 14.0 or greater is required." appears |
129 | 129 | '''
|
130 | 130 | os.environ["DISTUTILS_USE_SDK"] = "1"
|
131 | 131 |
|
|
145 | 145 | dpnp_algo = Extension(
|
146 | 146 | name="dpnp.dpnp_algo.dpnp_algo",
|
147 | 147 | sources=[os.path.join("dpnp", "dpnp_algo", "dpnp_algo.pyx")],
|
| 148 | + depends=[ |
| 149 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_linearalgebra.pyx"), |
| 150 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_manipulation.pyx"), |
| 151 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_counting.pyx"), |
| 152 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_statistics.pyx"), |
| 153 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_trigonometric.pyx"), |
| 154 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_sorting.pyx"), |
| 155 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_arraycreation.pyx"), |
| 156 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_mathematical.pyx"), |
| 157 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_searching.pyx"), |
| 158 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_indexing.pyx"), |
| 159 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_logic.pyx"), |
| 160 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_bitwise.pyx"), |
| 161 | + os.path.join("dpnp", "dpnp_algo", "dpnp_algo_special.pyx"), |
| 162 | + ], |
148 | 163 | **kwargs_common)
|
149 | 164 |
|
150 | 165 | dpnp_dparray = Extension(
|
|
0 commit comments