├── BT ├── Makefile ├── bt.c ├── header.h └── inputbt.data.sample ├── CG ├── Makefile ├── README.carefully └── cg.c ├── Doc ├── README.install └── README.report ├── EP ├── Makefile ├── README └── ep.c ├── FT ├── Makefile ├── README ├── ft.c └── global.h ├── IS ├── Makefile ├── README ├── README.carefully └── is.c ├── LOG.omc ├── LU ├── Makefile ├── applu.h ├── inputlu.data.sample └── lu.c ├── MG ├── Makefile ├── README ├── globals.h ├── mg.c └── mg.input.sample ├── Makefile ├── README ├── README.omc ├── SP ├── Makefile ├── header.h ├── inputsp.data.sample └── sp.c ├── common ├── c_print_results.c ├── c_randdp.c ├── c_timers.c ├── npb-C.h ├── wtime.c ├── wtime.h └── wtime_sgi64.c ├── config ├── NAS.samples │ ├── README │ ├── make.def.dec_alpha │ ├── make.def.irix6.2 │ ├── make.def.sp2_babbage │ ├── make.def.sun_ultra_sparc │ ├── suite.def.bt │ ├── suite.def.cg │ ├── suite.def.ep │ ├── suite.def.ft │ ├── suite.def.is │ ├── suite.def.lu │ ├── suite.def.mg │ ├── suite.def.small │ └── suite.def.sp ├── make.def.template └── suite.def.template └── sys ├── Makefile ├── README ├── make.common ├── print_header ├── print_instructions └── setparams.c /BT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/BT/Makefile -------------------------------------------------------------------------------- /BT/bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/BT/bt.c -------------------------------------------------------------------------------- /BT/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/BT/header.h -------------------------------------------------------------------------------- /BT/inputbt.data.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/BT/inputbt.data.sample -------------------------------------------------------------------------------- /CG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/CG/Makefile -------------------------------------------------------------------------------- /CG/README.carefully: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/CG/README.carefully -------------------------------------------------------------------------------- /CG/cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/CG/cg.c -------------------------------------------------------------------------------- /Doc/README.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/Doc/README.install -------------------------------------------------------------------------------- /Doc/README.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/Doc/README.report -------------------------------------------------------------------------------- /EP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/EP/Makefile -------------------------------------------------------------------------------- /EP/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/EP/README -------------------------------------------------------------------------------- /EP/ep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/EP/ep.c -------------------------------------------------------------------------------- /FT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/FT/Makefile -------------------------------------------------------------------------------- /FT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/FT/README -------------------------------------------------------------------------------- /FT/ft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/FT/ft.c -------------------------------------------------------------------------------- /FT/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/FT/global.h -------------------------------------------------------------------------------- /IS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/IS/Makefile -------------------------------------------------------------------------------- /IS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/IS/README -------------------------------------------------------------------------------- /IS/README.carefully: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/IS/README.carefully -------------------------------------------------------------------------------- /IS/is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/IS/is.c -------------------------------------------------------------------------------- /LOG.omc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/LOG.omc -------------------------------------------------------------------------------- /LU/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/LU/Makefile -------------------------------------------------------------------------------- /LU/applu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/LU/applu.h -------------------------------------------------------------------------------- /LU/inputlu.data.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/LU/inputlu.data.sample -------------------------------------------------------------------------------- /LU/lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/LU/lu.c -------------------------------------------------------------------------------- /MG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/MG/Makefile -------------------------------------------------------------------------------- /MG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/MG/README -------------------------------------------------------------------------------- /MG/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/MG/globals.h -------------------------------------------------------------------------------- /MG/mg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/MG/mg.c -------------------------------------------------------------------------------- /MG/mg.input.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/MG/mg.input.sample -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/README -------------------------------------------------------------------------------- /README.omc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/README.omc -------------------------------------------------------------------------------- /SP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/SP/Makefile -------------------------------------------------------------------------------- /SP/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/SP/header.h -------------------------------------------------------------------------------- /SP/inputsp.data.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/SP/inputsp.data.sample -------------------------------------------------------------------------------- /SP/sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/SP/sp.c -------------------------------------------------------------------------------- /common/c_print_results.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/common/c_print_results.c -------------------------------------------------------------------------------- /common/c_randdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/common/c_randdp.c -------------------------------------------------------------------------------- /common/c_timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/common/c_timers.c -------------------------------------------------------------------------------- /common/npb-C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/common/npb-C.h -------------------------------------------------------------------------------- /common/wtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/common/wtime.c -------------------------------------------------------------------------------- /common/wtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/common/wtime.h -------------------------------------------------------------------------------- /common/wtime_sgi64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/common/wtime_sgi64.c -------------------------------------------------------------------------------- /config/NAS.samples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/README -------------------------------------------------------------------------------- /config/NAS.samples/make.def.dec_alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/make.def.dec_alpha -------------------------------------------------------------------------------- /config/NAS.samples/make.def.irix6.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/make.def.irix6.2 -------------------------------------------------------------------------------- /config/NAS.samples/make.def.sp2_babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/make.def.sp2_babbage -------------------------------------------------------------------------------- /config/NAS.samples/make.def.sun_ultra_sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/make.def.sun_ultra_sparc -------------------------------------------------------------------------------- /config/NAS.samples/suite.def.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/suite.def.bt -------------------------------------------------------------------------------- /config/NAS.samples/suite.def.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/suite.def.cg -------------------------------------------------------------------------------- /config/NAS.samples/suite.def.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/suite.def.ep -------------------------------------------------------------------------------- /config/NAS.samples/suite.def.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/suite.def.ft -------------------------------------------------------------------------------- /config/NAS.samples/suite.def.is: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/suite.def.is -------------------------------------------------------------------------------- /config/NAS.samples/suite.def.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/suite.def.lu -------------------------------------------------------------------------------- /config/NAS.samples/suite.def.mg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/suite.def.mg -------------------------------------------------------------------------------- /config/NAS.samples/suite.def.small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/suite.def.small -------------------------------------------------------------------------------- /config/NAS.samples/suite.def.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/NAS.samples/suite.def.sp -------------------------------------------------------------------------------- /config/make.def.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/make.def.template -------------------------------------------------------------------------------- /config/suite.def.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/config/suite.def.template -------------------------------------------------------------------------------- /sys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/sys/Makefile -------------------------------------------------------------------------------- /sys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/sys/README -------------------------------------------------------------------------------- /sys/make.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/sys/make.common -------------------------------------------------------------------------------- /sys/print_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/sys/print_header -------------------------------------------------------------------------------- /sys/print_instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/sys/print_instructions -------------------------------------------------------------------------------- /sys/setparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-subsetting/NPB3.0-omp-C/HEAD/sys/setparams.c --------------------------------------------------------------------------------