Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
590bb3b
Backed-out adjusted dim changes to test/3m4m.
fgvanzee May 24, 2015
1213f5c
POSIX thread bugfixes/edits to bli_init.c, _mem.c.
fgvanzee Jun 2, 2015
b6ee82a
Minor cleanup to bli_init() and friends.
fgvanzee Jun 3, 2015
d62ceec
Minor update to test/3m4m/runme.sh.
fgvanzee Jun 3, 2015
9135dfd
Minor updates to test/3m4m files.
fgvanzee Jun 5, 2015
ee129c6
Fixed bugs in _get_range(), _get_range_weighted().
fgvanzee Jun 10, 2015
5f93cbe
Introduced API-level initialization.
fgvanzee Jun 11, 2015
9848f25
Added early return to API-level _init() routines.
fgvanzee Jun 12, 2015
7cd01b7
Implemented dynamic allocation for packing buffers.
fgvanzee Jun 19, 2015
267253d
Version file update (0.1.7)
fgvanzee Jun 19, 2015
0b7255a
CHANGELOG update (0.1.7)
fgvanzee Jun 19, 2015
d4b8913
Added 'carrizo' configuration.
fgvanzee Jul 7, 2015
fdfe14f
Added support for Intel Haswell/Broadwell.
fgvanzee Jul 9, 2015
ef0fbbb
Merge branch 'master' of github.com:flame/blis
fgvanzee Jul 9, 2015
47caa33
Version file update (0.1.8)
fgvanzee Jul 29, 2015
ecc3ebb
CHANGELOG update (0.1.8)
fgvanzee Jul 29, 2015
12ffd56
Add Travis CI.
xianyi Aug 21, 2015
4dd9dd3
Fixed minor alignment ambiguity bug in bli_pool.c.
fgvanzee Aug 21, 2015
efa641e
Try to fix the compiling bug on travis.
xianyi Aug 21, 2015
fe3e355
Merge branch 'upstream_master'
xianyi Aug 21, 2015
e2e9d64
Load balance thread ranges for arbitrary diagonals.
fgvanzee Sep 24, 2015
bbebdb5
Replaced README with README.md.
fgvanzee Sep 25, 2015
5532990
Minor edits to README.md, testsuite.
fgvanzee Sep 27, 2015
e7e1f2f
Minor updates to CREDITS, README files.
fgvanzee Oct 2, 2015
d170574
Added "Getting Started" section to README.md.
fgvanzee Oct 12, 2015
276da36
Minor formatting change to README.md.
fgvanzee Oct 12, 2015
77ddb0b
Removed flop-counting mechanism.
fgvanzee Oct 13, 2015
4b0ac1a
Merge branch 'upstream_master'
xianyi Oct 14, 2015
4f88c29
Detect Intel Broadwell (using Haswell config).
xianyi Oct 14, 2015
7e03e45
Merge pull request #33 from xianyi/master
fgvanzee Oct 14, 2015
b489152
Use vzeroall in haswell micro-kernels.
fgvanzee Oct 21, 2015
d3159c5
Merge branch 'master' of github.com:flame/blis
fgvanzee Oct 21, 2015
a0a7b85
Fixed incomplete code in the double precision ARMv8 microkernel.
figual Oct 27, 2015
46294d8
Merge pull request #35 from figual/master
fgvanzee Oct 27, 2015
37e55ca
Fixed obscure 3m1/4m1a bugs in trmm[3] and trsm.
fgvanzee Oct 30, 2015
4a502fb
Laid groundwork for runtime memory pool resizing.
fgvanzee Nov 2, 2015
33557ec
add Travis CI build status icon to the README
jeffhammond Nov 2, 2015
3e116f0
Fixed imaginary bug in quadratic partitioning code.
fgvanzee Nov 2, 2015
0694b72
Merge branch 'master' of github.com:flame/blis
fgvanzee Nov 2, 2015
3e6dd11
Minor re-expression in quadratic partitioning code.
fgvanzee Nov 3, 2015
42810bb
Fixed minor bugs for uncommon obj_create cases.
fgvanzee Nov 12, 2015
f0a4f41
Fixed unimplemented case in core2 sgemm ukernel.
fgvanzee Nov 12, 2015
30e5eb2
Minor changes to treatment of rs, cs in bli_obj.c.
fgvanzee Nov 13, 2015
0b126de
Consolidated packm_blk_var1 and packm_blk_var2.
fgvanzee Nov 13, 2015
fcdd9d1
Merge branch 'upstream_master'
xianyi Dec 11, 2015
3b358fa
Relax the condition for dgemm AVX micro kernel column store branch.
xianyi Dec 11, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
language: c
sudo: false

compiler:
- gcc

env:
- RUN_TEST=1 BUILD_CONFIG="auto"
- RUN_TEST=1 BUILD_CONFIG="reference"
- RUN_TEST=1 BUILD_CONFIG="dunnington"
- RUN_TEST=0 BUILD_CONFIG="sandybridge"
- RUN_TEST=0 BUILD_CONFIG="haswell"
- RUN_TEST=0 BUILD_CONFIG="bulldozer"
- RUN_TEST=0 BUILD_CONFIG="piledriver"
- RUN_TEST=0 BUILD_CONFIG="carrizo"

install:
- if [ "$CC" = "gcc" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- clang



script:
- ./configure $BUILD_CONFIG
- make CC=gcc-4.8
- if [ $RUN_TEST -eq 1 ]; then make BLIS_ENABLE_TEST_OUTPUT=yes test; fi
- if [ $RUN_TEST -eq 1 ]; then ./build/check-test.sh ./output.testsuite; fi
Loading