I hereby claim:
- I am nhdaly on github.
- I am nhdaly (https://keybase.io/nhdaly) on keybase.
- I have a public key ASBewO2D_hY2GfDqEOQRSO7gSDuEu2KCczAXo0tfBMirdQo
To claim this, I am signing this object:
*.pages diff=iworkpages |
Process: python3.5 [49546] | |
Path: /Users/USER/*/python | |
Identifier: python3.5 | |
Version: ??? | |
Code Type: X86-64 (Native) | |
Parent Process: bash [49305] | |
Responsible: python3.5 [49546] | |
User ID: 501 | |
Date/Time: 2017-05-05 19:40:18.857 -0500 |
I hereby claim:
To claim this, I am signing this object:
generic/zgemm3m_tcopy_4.c:68:25: warning: variable 'a5' set but not used [-Wunused-but-set-variable] | |
FLOAT a1, a2, a3, a4, a5, a6, a7, a8; | |
^ | |
generic/zgemm3m_tcopy_4.c:68:17: warning: variable 'a3' set but not used [-Wunused-but-set-variable] | |
FLOAT a1, a2, a3, a4, a5, a6, a7, a8; | |
^ | |
generic/zgemm3m_tcopy_4.c:68:9: warning: variable 'a1' set but not used [-Wunused-but-set-variable] | |
FLOAT a1, a2, a3, a4, a5, a6, a7, a8; | |
^ | |
[ 46%] Building CXX object lib/Transforms/InstCombine/CMakeFiles/LLVMInstCombine.dir/InstCombineCompares.cpp.o |
generic/zgemm3m_tcopy_4.c:68:25: warning: variable 'a5' set but not used [-Wunused-but-set-variable] | |
FLOAT a1, a2, a3, a4, a5, a6, a7, a8; | |
^ | |
generic/zgemm3m_tcopy_4.c:68:17: warning: variable 'a3' set but not used [-Wunused-but-set-variable] | |
FLOAT a1, a2, a3, a4, a5, a6, a7, a8; | |
^ | |
generic/zgemm3m_tcopy_4.c:68:9: warning: variable 'a1' set but not used [-Wunused-but-set-variable] | |
FLOAT a1, a2, a3, a4, a5, a6, a7, a8; | |
^ | |
[ 46%] Building CXX object lib/Transforms/InstCombine/CMakeFiles/LLVMInstCombine.dir/InstCombineCompares.cpp.o |
julia> m = "call( a( x()-1 ), 2+2 )" | |
>> "call( a( x()-1 ), 2+2 )" | |
julia> replace(m, r"a(\(((?>[^()]|(?1))*)\))" => s"@b \2") | |
>> "call( @b x()-1 , 2+2 )" | |
julia> # You can see the two capture groups here: the first around the parens (used for recursion), and the second inside the parens (for substitution). | |
julia> match(r"a(\(((?>[^()]|(?1))*)\))", m) | |
>> RegexMatch("a( x()-1 )", 1="( x()-1 )", 2=" x()-1 ") |
# Representation Comparisons | |
# | |
# This benchmark compares the performance of several numeric representations, over various | |
# numeric operations (+,-,*,/,÷...) on large arrays of numbers, in order to guide | |
# decision-making about how to represent fixed-decimal numbers. | |
# | |
# It compares fixed-decimal types against the builtin Int and Float types of various sizes. | |
# The output is written to a .csv file in the same directory as this file. | |
module DecimalBenchmarkComparisons |
# Decimal Representation Comparisons | |
# | |
# This benchmark compares the performance of several numeric representations, over various | |
# numeric operations (+,-,*,/,÷...) on large arrays of numbers, in order to guide | |
# decision-making about how to represent fixed-decimal numbers. | |
# | |
# It compares fixed-decimal types against the builtin Int and Float types of various sizes. | |
# The output is written to a .csv file in the same directory as this file. | |
module DecimalRepresentationComparisons |