Skip to content

Commit

Permalink
Removed adddtional windows 32 references
Browse files Browse the repository at this point in the history
  • Loading branch information
kc611 committed Aug 1, 2023
1 parent 4f7d0f4 commit a29d025
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
11 changes: 5 additions & 6 deletions buildscripts/condarecipe.local/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build:
- lib/libiomp5.dylib # [osx]
ignore_run_exports:
# tbb-devel triggers hard dependency on tbb, this is not the case.
- tbb # [not (aarch64 or ppc64le or win32)]
- tbb # [not (aarch64 or ppc64le)]

requirements:
# build and run dependencies are duplicated to avoid setuptools issues
Expand All @@ -36,9 +36,8 @@ requirements:
# On channel https://anaconda.org/numba/
- llvmlite >=0.41.0dev0,<0.41
# TBB devel version is to match TBB libs.
# NOTE: ppc64le and aarch64 are pending testing so excluded for now, win32
# is not a supported parallel target.
- tbb-devel >=2021.6 # [not (aarch64 or ppc64le or win32)]
# NOTE: ppc64le and aarch64 are pending testing so excluded for now.
- tbb-devel >=2021.6 # [not (aarch64 or ppc64le)]
run:
- python >=3.8
# NumPy 1.22.0, 1.22.1, 1.22.2 are all broken for ufuncs, see #7756
Expand All @@ -48,7 +47,7 @@ requirements:
- llvmlite >=0.41.0dev0,<0.41
run_constrained:
# If TBB is present it must be at least version 2021.6
- tbb >=2021.6 # [not (aarch64 or ppc64le or win32)]
- tbb >=2021.6 # [not (aarch64 or ppc64le)]
# avoid confusion from openblas bugs
- libopenblas !=0.3.6 # [x86_64]
# 0.3.17 buggy on M1 silicon
Expand All @@ -73,7 +72,7 @@ test:
- ipython # [not aarch64]
# for pycc
- setuptools
- tbb >=2021.6 # [not (aarch64 or ppc64le or win32)]
- tbb >=2021.6 # [not (aarch64 or ppc64le)]
- llvm-openmp # [osx]
# This is for driving gdb tests
- pexpect # [linux64]
Expand Down
2 changes: 1 addition & 1 deletion docs/source/reference/envvars.rst
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ Compilation options

If set to non-zero, enable LLVM loop vectorization.

*Default value:* 1 (except on 32-bit Windows)
*Default value:* 1

.. envvar:: NUMBA_SLP_VECTORIZE

Expand Down
2 changes: 1 addition & 1 deletion docs/source/user/5minguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ part of your code can subsequently run at native machine code speed!

Out of the box Numba works with the following:

* OS: Windows (32 and 64 bit), OSX, Linux (64 bit). Unofficial support on
* OS: Windows (64 bit), OSX, Linux (64 bit). Unofficial support on
\*BSD.
* Architecture: x86, x86_64, ppc64le, armv8l (aarch64), M1/Arm64.
* GPUs: Nvidia CUDA.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Our supported platforms are:

* Linux x86_64
* Linux ppcle64 (POWER8, POWER9)
* Windows 7 and later (32-bit and 64-bit)
* Windows 10 and later (64-bit)
* OS X 10.9 and later (64-bit and unofficial support on M1/Arm64)
* \*BSD (unofficial support only)
* NVIDIA GPUs of compute capability 5.0 and later
Expand Down

0 comments on commit a29d025

Please sign in to comment.