- Time of benchmark: 10 Nov 2018 - 22:51
- Package commit: a9745c
- Julia commit: a4cb80
- Julia command flags: None
- Environment variables: None
This file contains hidden or 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
# name xfree x ≤|≥ ≤ x ≤ x = Ax ≤|≥ ≤ Ax ≤ Ax =. c ≤|≥ ≤ c ≤ c = | |
10FOLDTR 1000 0 0 0 0 0 998 0 0 2 NOR2-AN-V-0 | |
AIRCRFTA 5 0 0 3 0 0 0 0 0 5 NOR2-RN-8-5 | |
ARGAUSS 3 0 0 0 0 0 0 0 0 15 NOR2-AN-3-15 | |
ARGTRIG 200 0 0 0 0 0 0 0 0 200 NOR2-AN-V-V | |
ARTIF 5000 0 0 2 0 0 0 0 0 5000 NOR2-AN-V-V | |
ARWHDNE 500 0 0 0 0 0 499 0 0 499 NOR2-AN-V-V | |
BA-L1 57 0 0 0 0 0 0 0 0 12 NOR2-MN-57-12 | |
BA-L16 66462 0 0 0 0 0 0 0 0 167436 NOR2-MN-66462-83718 | |
BA-L1 |
This file contains hidden or 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
# name xfree x ≤|≥ ≤ x ≤ x = Ax ≤|≥ ≤ Ax ≤ Ax = c ≤|≥ ≤ c ≤ c = | |
10FOLDTR 1000 0 0 0 0 0 998 0 0 2 NOR2-AN-V-0 | |
3PK 0 30 0 0 0 0 0 0 0 0 SBR2-MN-30-0 | |
A0ENDNDL 10002 10000 0 25004 0 0 15002 0 0 0 QLR2-AN-45006-15002 | |
A0ENINDL 10002 10000 0 25004 0 0 15002 0 0 0 QLR2-AN-45006-15002 | |
A0ENSNDL 10002 10000 0 25004 0 0 15002 0 0 0 QLR2-AN-45006-15002 | |
A0ESDNDL 10002 10000 0 25004 0 0 15002 0 0 0 QLR2-AN-45006-15002 | |
A0ESINDL 10002 10000 0 25004 0 0 15002 0 0 0 QLR2-AN-45006-15002 | |
A0ESSNDL 10002 10000 0 25004 0 0 15002 0 0 |
This file contains hidden or 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
# name xfree x ≤|≥ ≤ x ≤ x = Ax ≤|≥ ≤ Ax ≤ Ax = c ≤|≥ ≤ c ≤ c = |
This file contains hidden or 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
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... ./install-sh -c -d | |
checking for gawk... no | |
checking for mawk... no | |
checking for nawk... no | |
checking for awk... awk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking for gfortran... gfortran |
This file contains hidden or 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
using BinaryProvider # requires BinaryProvider 0.3.0 or later | |
# Parse some basic command-line arguments | |
const verbose = "--verbose" in ARGS | |
const prefix = Prefix(get([a for a in ARGS if a != "--verbose"], 1, joinpath(@__DIR__, "usr"))) | |
products = [ | |
LibraryProduct(prefix, ["libopenblas", "libopenblas64_"], :libopenblas), | |
] | |
# Download binaries from hosted location |
This file contains hidden or 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
#include <stdio.h> | |
#include "asl_pfgh.h" | |
// prototypes | |
real *allocate(ASL *asl, int size); | |
ASL *asl_init(const char *stub); | |
void asl_finalize(ASL *asl); | |
int asl_nvar( ASL *asl); | |
int asl_ncon( ASL *asl); | |
int asl_nnzj(ASL *asl); |