https://github.com/JuliaLang/julia
Raw File
Tip revision: 553124038e3ef28ed0aa6d50c6ccc4c2e4349dc2 authored by Jake Bolewski on 30 September 2015, 19:34:16 UTC
peel off outer loop when using `@simd` with a multidim for loop
Tip revision: 5531240
commit-name.sh
#!/bin/bash
# This file is a part of Julia. License is MIT: http://julialang.org/license

last_tag=$(git describe --tags --abbrev=0)
echo -n "0.4.0-dev+"
git rev-list ${1-HEAD} ^$last_tag | wc -l | sed -e 's/[^[:digit:]]//g'
back to top