-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from nakatamaho/v2.0
v2.0 alpha
- Loading branch information
Showing
255 changed files
with
8,672 additions
and
1,284 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
2022/05/25 Nakata Maho <[email protected]> 2.0 branch | ||
* 2.0.0 alpha. | ||
|
||
2022/05/16 Nakata Maho <[email protected]> 2.0 branch | ||
* Disable Rgejsv, Cgejsv, Rgesvj and Cgesvj by dd/qd, since we cannot | ||
gurantee the precisions. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ FROM ubuntu:20.04 | |
ARG GIT_EMAIL="[email protected]" | ||
ARG GIT_NAME="NAKATA Maho" | ||
|
||
RUN apt update | ||
RUN apt -y update | ||
RUN apt -y upgrade | ||
RUN apt install -y sudo | ||
RUN apt install -y tzdata | ||
|
@@ -21,19 +21,13 @@ RUN apt install -y git wget ccache time | |
RUN apt install -y ng-common ng-cjk emacs-nox | ||
RUN sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1 | ||
|
||
RUN dpkg --add-architecture i386 && apt update -y | ||
RUN apt-get install -y software-properties-common gnupg2 | ||
RUN dpkg --add-architecture i386 | ||
RUN wget -nc https://dl.winehq.org/wine-builds/winehq.key | ||
RUN apt-key add winehq.key | ||
RUN apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main' | ||
RUN apt-get install -y --install-recommends winehq-stable winbind | ||
ENV WINEDEBUG=fixme-all | ||
ENV WINEARCH=win64 | ||
RUN winecfg | ||
RUN apt-get install -y cabextract | ||
RUN wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks | ||
RUN chmod +x winetricks | ||
RUN cp winetricks /usr/local/bin | ||
RUN mv winehq.key /usr/share/keyrings/winehq-archive.key | ||
RUN wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/focal/winehq-focal.sources | ||
RUN mv winehq-focal.sources /etc/apt/sources.list.d/ | ||
RUN apt update -y | ||
RUN apt install -y --install-recommends winehq-stable | ||
|
||
ARG DOCKER_UID=1000 | ||
ARG DOCKER_USER=docker | ||
|
@@ -47,10 +41,15 @@ RUN echo "\n\ | |
" > /home/$DOCKER_USER/.gitconfig | ||
|
||
RUN cd /home/$DOCKER_USER && echo "cd /home/$DOCKER_USER" >> .bashrc | ||
RUN cd /home/$DOCKER_USER && echo "export WINEPATH=\"/usr/x86_64-w64-mingw32/lib/;/usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/;/usr/lib/gcc/x86_64-w64-mingw32/9.3-posix;/home/docker/MPLAPACK/bin;/home/docker/MPLAPACK/lib\"" >> .bashrc | ||
RUN cd /home/$DOCKER_USER && echo "export WINEPATH=\"/usr/x86_64-w64-mingw32/lib/;/usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/;/usr/lib/gcc/x86_64-w64-mingw32/9.3-posix\"" >> .bashrc | ||
|
||
ARG WINEPATH="/usr/x86_64-w64-mingw32/lib/;/usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/;/usr/lib/gcc/x86_64-w64-mingw32/9.3-posix" | ||
RUN cd /home/$DOCKER_USER && git clone https://github.com/nakatamaho/mplapack.git | ||
RUN cd /home/$DOCKER_USER/mplapack && git checkout v1.0.1 && git log -1 | ||
RUN cd /home/$DOCKER_USER/mplapack && bash -x misc/reconfig.ubuntu20.04.mingw64.sh | ||
RUN cd /home/$DOCKER_USER/mplapack && make -j`getconf _NPROCESSORS_ONLN` | ||
RUN cd /home/$DOCKER_USER/mplapack && make install | ||
ARG WINEDEBUG="-all" | ||
|
||
ARG WORK=/home/$DOCKER_USER | ||
RUN cd ${WORK} && git clone https://github.com/nakatamaho/mplapack.git | ||
RUN cd ${WORK}/mplapack && git fetch origin v2.0 | ||
RUN cd ${WORK}/mplapack && git checkout v2.0 | ||
RUN cd ${WORK}/mplapack && git remote set-url origin [email protected]:nakatamaho/mplapack.git | ||
RUN cd ${WORK}/mplapack && git log -1 | ||
RUN cd /home/$DOCKER_USER/mplapack && bash -x misc/disttest_mingw.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
TOP=`pwd` | ||
|
||
cd $TOP | ||
cd mpblas/generic ; bash -x generate.sh | ||
|
||
cd $TOP | ||
cd mplapack | ||
DIRS=`ls -d */ | sed 's|generic/||g'` | ||
echo $DIRS | ||
|
||
for _dir in $DIRS; do | ||
cd $TOP | ||
cd mplapack/$_dir/generic ; bash -x ../../generic/generate.sh | ||
done |
Oops, something went wrong.