This repository was archived by the owner on Feb 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -80,9 +80,9 @@ Building on Linux with setuptools
8080~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8181::
8282
83- PYVER=<3.6 or 3.7>
84- NUMPYVER=<1.16 or 1.17>
85- conda create -n sdc-env -q -y -c intel/label/beta -c defaults -c intel -c conda-forge python=$PYVER numpy=$NUMPYVER numba=0.49 pandas=0.25.3 pyarrow=0.17.0 gcc_linux-64 gxx_linux-64
83+ export PYVER=<3.6 or 3.7>
84+ export NUMPYVER=<1.16 or 1.17>
85+ conda create -n sdc-env -q -y -c intel/label/beta -c defaults -c intel -c conda-forge python=$PYVER numpy=$NUMPYVER tbb-devel tbb4py numba=0.49 pandas=0.25.3 pyarrow=0.17.0 gcc_linux-64 gxx_linux-64
8686 source activate sdc-env
8787 git clone https://github.com/IntelPython/sdc.git
8888 cd sdc
@@ -120,7 +120,7 @@ Building on Windows with setuptools
120120
121121 set PYVER=<3.6 or 3.7>
122122 set NUMPYVER=<1.16 or 1.17>
123- conda create -n sdc-env -c intel/label/beta -c defaults -c intel -c conda-forge python=%PYVER% numpy=%NUMPYVER% numba=0.49 pandas=0.25.3 pyarrow=0.17.0
123+ conda create -n sdc-env -c intel/label/beta -c defaults -c intel -c conda-forge python=%PYVER% numpy=%NUMPYVER% tbb-devel tbb4py numba=0.49 pandas=0.25.3 pyarrow=0.17.0
124124 conda activate sdc-env
125125 set INCLUDE=%INCLUDE%;%CONDA_PREFIX%\Library\include
126126 set LIB=%LIB%;%CONDA_PREFIX%\Library\lib
Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ struct void_range
110110 using pointer = data_type*;
111111 using iterator_category = std::random_access_iterator_tag;
112112
113+ iterator () {}
114+
113115 iterator (void * ptr, uint64_t size): _ptr(ptr), _size(size) {}
114116
115117 iterator (const iterator& other): _ptr(other._ptr), _size(other._size) {}
Original file line number Diff line number Diff line change 3535#include < Windows.h>
3636
3737// no gettimeofday on Win32/Win64
38- int gettimeofday (struct timeval * tp, struct timezone * tzp)
38+ int gettimeofday (struct timeval * tp, void * tzp)
3939{
4040 static const uint64_t EPOCH = ((uint64_t )116444736000000000ULL );
4141
You can’t perform that action at this time.
0 commit comments