Skip to content

Commit

Permalink
folders renamed/qra64 qracodes folders from wjstx updated
Browse files Browse the repository at this point in the history
  • Loading branch information
iv3nwv committed Jul 3, 2016
1 parent f97ec91 commit 8ceda45
Show file tree
Hide file tree
Showing 58 changed files with 3,872 additions and 2,293 deletions.
Binary file added Release/qra64.exe
Binary file not shown.
Binary file modified Release/qra65.exe
Binary file not shown.
Binary file removed Release/qracodes-mt.exe
Binary file not shown.
Binary file added Release/qracodes-st.exe
Binary file not shown.
Binary file modified Release/qracodes.exe
Binary file not shown.
10 changes: 5 additions & 5 deletions qracodes-mt.sln → qra64.sln
@@ -1,18 +1,18 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qracodes-mt", "qracodes-mt\qracodes-mt.vcproj", "{272D3997-2EE4-4D21-9F03-CE07F40B6134}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qra64", "qra64\qra64.vcproj", "{8C6ACED4-B254-4959-9559-6A9F2306391F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{272D3997-2EE4-4D21-9F03-CE07F40B6134}.Debug|Win32.ActiveCfg = Debug|Win32
{272D3997-2EE4-4D21-9F03-CE07F40B6134}.Debug|Win32.Build.0 = Debug|Win32
{272D3997-2EE4-4D21-9F03-CE07F40B6134}.Release|Win32.ActiveCfg = Release|Win32
{272D3997-2EE4-4D21-9F03-CE07F40B6134}.Release|Win32.Build.0 = Release|Win32
{8C6ACED4-B254-4959-9559-6A9F2306391F}.Debug|Win32.ActiveCfg = Debug|Win32
{8C6ACED4-B254-4959-9559-6A9F2306391F}.Debug|Win32.Build.0 = Debug|Win32
{8C6ACED4-B254-4959-9559-6A9F2306391F}.Release|Win32.ActiveCfg = Release|Win32
{8C6ACED4-B254-4959-9559-6A9F2306391F}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Binary file added qra64.suo
Binary file not shown.
30 changes: 30 additions & 0 deletions qra64/Makefile.Win
@@ -0,0 +1,30 @@
FC = gfortran
CC = gcc
CFLAGS = -O2 -Wall -I. -D_WIN32

# Default rules
%.o: %.c
${CC} ${CFLAGS} -c $<
%.o: %.f
${FC} ${FFLAGS} -c $<
%.o: %.F
${FC} ${FFLAGS} -c $<
%.o: %.f90
${FC} ${FFLAGS} -c $<
%.o: %.F90
${FC} ${FFLAGS} -c $<

all: qra64.exe

OBJS1 = main.o qra64.o
qra64.exe: $(OBJS1)
${CC} -o qra64.exe $(OBJS1) ../qracodes/libqra64.a -lm

OBJS2 = qra64sim.o options.o wavhdr.o
qra64sim.exe: $(OBJS2)
${FC} -o qra64sim.exe $(OBJS2) ../qracodes/libqra64.a -lm

.PHONY : clean

clean:
$(RM) *.o qra64.exe qra64sim.exe
10 changes: 10 additions & 0 deletions qra64/build.sh
@@ -0,0 +1,10 @@
g++ -march=native -pthread -O3 -I../qracodes/ \
*.c \
../qracodes/normrnd.c \
../qracodes/npfwht.c \
../qracodes/pdmath.c \
../qracodes/qra12_63_64_irr_b.c \
../qracodes/qra13_64_64_irr_e.c \
../qracodes/qracodes.c \
-lpthread -o qra64

0 comments on commit 8ceda45

Please sign in to comment.