From cb12e456f94c196c093e52f02a7cbca0032fc86e Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Tue, 8 Jul 2014 10:07:46 -0500 Subject: [PATCH 01/19] Fixed possible level-3 inf/NaN issue when beta=0. Details: - Redefined xpbys_mxn and xpbys_mxn_u/_l macros to employ a copy (instead of scaling by beta) when beta is zero. This will stamp out any possible infs or NaNs in the output matrix, if it happens to be uninitialized. Thanks to Tony Kelman for isolating this bug. --- frame/include/level0/bli_xpbys_mxn.h | 80 ++++++--- frame/include/level0/bli_xpbys_mxn_uplo.h | 192 +++++++++++++++------- 2 files changed, 196 insertions(+), 76 deletions(-) diff --git a/frame/include/level0/bli_xpbys_mxn.h b/frame/include/level0/bli_xpbys_mxn.h index 0f857f156..511e0b452 100644 --- a/frame/include/level0/bli_xpbys_mxn.h +++ b/frame/include/level0/bli_xpbys_mxn.h @@ -46,44 +46,84 @@ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ - for ( i = 0; i < m; ++i ) \ - bli_sssxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_seq0( *beta ) ) \ + { \ + bli_sscopys_mxn( m, n, \ + x, rs_x, cs_x, \ + y, rs_y, cs_y ); \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + bli_sssxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ } #define bli_dddxpbys_mxn( m, n, x, rs_x, cs_x, beta, y, rs_y, cs_y ) \ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ - for ( i = 0; i < m; ++i ) \ - bli_dddxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_deq0( *beta ) ) \ + { \ + bli_ddcopys_mxn( m, n, \ + x, rs_x, cs_x, \ + y, rs_y, cs_y ); \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + bli_dddxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ } #define bli_cccxpbys_mxn( m, n, x, rs_x, cs_x, beta, y, rs_y, cs_y ) \ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ - for ( i = 0; i < m; ++i ) \ - bli_cccxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_ceq0( *beta ) ) \ + { \ + bli_cccopys_mxn( m, n, \ + x, rs_x, cs_x, \ + y, rs_y, cs_y ); \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + bli_cccxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ } #define bli_zzzxpbys_mxn( m, n, x, rs_x, cs_x, beta, y, rs_y, cs_y ) \ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ - for ( i = 0; i < m; ++i ) \ - bli_zzzxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_zeq0( *beta ) ) \ + { \ + bli_zzcopys_mxn( m, n, \ + x, rs_x, cs_x, \ + y, rs_y, cs_y ); \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + bli_zzzxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ } diff --git a/frame/include/level0/bli_xpbys_mxn_uplo.h b/frame/include/level0/bli_xpbys_mxn_uplo.h index 584ca78cd..b2681e333 100644 --- a/frame/include/level0/bli_xpbys_mxn_uplo.h +++ b/frame/include/level0/bli_xpbys_mxn_uplo.h @@ -41,16 +41,26 @@ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_seq0( *beta ) ) \ { \ + for ( j = 0; j < n; ++j ) \ for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i >= diagoff ) \ { \ - if ( (doff_t)j - (doff_t)i >= diagoff ) \ - { \ - bli_sssxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ - } \ + bli_sscopys( *(x + i*rs_x + j*cs_x), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i >= diagoff ) \ + { \ + bli_sssxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ } \ } \ } @@ -59,16 +69,26 @@ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_deq0( *beta ) ) \ { \ + for ( j = 0; j < n; ++j ) \ for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i >= diagoff ) \ { \ - if ( (doff_t)j - (doff_t)i >= diagoff ) \ - { \ - bli_dddxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ - } \ + bli_ddcopys( *(x + i*rs_x + j*cs_x), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i >= diagoff ) \ + { \ + bli_dddxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ } \ } \ } @@ -77,16 +97,26 @@ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_ceq0( *beta ) ) \ { \ + for ( j = 0; j < n; ++j ) \ for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i >= diagoff ) \ { \ - if ( (doff_t)j - (doff_t)i >= diagoff ) \ - { \ - bli_cccxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ - } \ + bli_cccopys( *(x + i*rs_x + j*cs_x), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i >= diagoff ) \ + { \ + bli_cccxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ } \ } \ } @@ -95,16 +125,26 @@ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_zeq0( *beta ) ) \ { \ + for ( j = 0; j < n; ++j ) \ for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i >= diagoff ) \ { \ - if ( (doff_t)j - (doff_t)i >= diagoff ) \ - { \ - bli_zzzxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ - } \ + bli_zzcopys( *(x + i*rs_x + j*cs_x), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i >= diagoff ) \ + { \ + bli_zzzxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ } \ } \ } @@ -115,16 +155,26 @@ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_seq0( *beta ) ) \ { \ + for ( j = 0; j < n; ++j ) \ for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i <= diagoff ) \ { \ - if ( (doff_t)j - (doff_t)i <= diagoff ) \ - { \ - bli_sssxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ - } \ + bli_sscopys( *(x + i*rs_x + j*cs_x), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i <= diagoff ) \ + { \ + bli_sssxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ } \ } \ } @@ -133,16 +183,26 @@ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_deq0( *beta ) ) \ { \ + for ( j = 0; j < n; ++j ) \ for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i <= diagoff ) \ { \ - if ( (doff_t)j - (doff_t)i <= diagoff ) \ - { \ - bli_dddxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ - } \ + bli_ddcopys( *(x + i*rs_x + j*cs_x), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i <= diagoff ) \ + { \ + bli_dddxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ } \ } \ } @@ -151,16 +211,26 @@ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_ceq0( *beta ) ) \ { \ + for ( j = 0; j < n; ++j ) \ for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i <= diagoff ) \ { \ - if ( (doff_t)j - (doff_t)i <= diagoff ) \ - { \ - bli_cccxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ - } \ + bli_cccopys( *(x + i*rs_x + j*cs_x), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i <= diagoff ) \ + { \ + bli_cccxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ } \ } \ } @@ -169,16 +239,26 @@ { \ dim_t i, j; \ \ - for ( j = 0; j < n; ++j ) \ + /* If beta is zero, overwrite y with x (in case y has infs or NaNs). */ \ + if ( bli_zeq0( *beta ) ) \ { \ + for ( j = 0; j < n; ++j ) \ for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i <= diagoff ) \ { \ - if ( (doff_t)j - (doff_t)i <= diagoff ) \ - { \ - bli_zzzxpbys( *(x + i*rs_x + j*cs_x), \ - *(beta), \ - *(y + i*rs_y + j*cs_y) ); \ - } \ + bli_zzcopys( *(x + i*rs_x + j*cs_x), \ + *(y + i*rs_y + j*cs_y) ); \ + } \ + } \ + else \ + { \ + for ( j = 0; j < n; ++j ) \ + for ( i = 0; i < m; ++i ) \ + if ( (doff_t)j - (doff_t)i <= diagoff ) \ + { \ + bli_zzzxpbys( *(x + i*rs_x + j*cs_x), \ + *(beta), \ + *(y + i*rs_y + j*cs_y) ); \ } \ } \ } From caa6507ff3724c80d60987f309b8bbc5b50a9841 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Tue, 8 Jul 2014 10:25:27 -0500 Subject: [PATCH 02/19] Minor cleanup to standalone test drivers. Details: - Very minor code changes to standalone test drivers in 'test' directory. - Added *.so files to '.gitignore'. --- .gitignore | 1 + test/test_gemm.c | 6 +----- test/test_gemv.c | 6 +----- test/test_ger.c | 5 +---- test/test_hemm.c | 6 +----- test/test_hemv.c | 12 ++---------- test/test_her.c | 8 ++------ test/test_her2.c | 10 ++-------- test/test_her2k.c | 6 +----- test/test_herk.c | 5 +---- test/test_trmm.c | 6 +----- test/test_trmv.c | 4 +--- test/test_trsm.c | 11 +++-------- test/test_trsv.c | 4 +--- 14 files changed, 19 insertions(+), 71 deletions(-) diff --git a/.gitignore b/.gitignore index 69e5f00be..153b3cc13 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ # NOTE: This will result in git also exluding the top-level lib directory # since its only contents are .a files. *.a +*.so # test executables *.x *.pexe diff --git a/test/test_gemm.c b/test/test_gemm.c index ad2a63a7b..3b9e304c7 100644 --- a/test/test_gemm.c +++ b/test/test_gemm.c @@ -81,11 +81,7 @@ int main( int argc, char** argv ) #endif #if 1 - dt_a = BLIS_DOUBLE; - dt_b = BLIS_DOUBLE; - dt_c = BLIS_DOUBLE; - dt_alpha = BLIS_DOUBLE; - dt_beta = BLIS_DOUBLE; + dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_DOUBLE; #else dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_DCOMPLEX; #endif diff --git a/test/test_gemv.c b/test/test_gemv.c index 22f24585d..f12b1d7e3 100644 --- a/test/test_gemv.c +++ b/test/test_gemv.c @@ -77,11 +77,7 @@ int main( int argc, char** argv ) n_input = 15; #endif - dt_a = BLIS_DOUBLE; - dt_x = BLIS_DOUBLE; - dt_y = BLIS_DOUBLE; - dt_alpha = BLIS_DOUBLE; - dt_beta = BLIS_DOUBLE; + dt_a = dt_x = dt_y = dt_alpha = dt_beta = BLIS_DOUBLE; for ( p = p_begin; p <= p_end; p += p_inc ) { diff --git a/test/test_ger.c b/test/test_ger.c index a416997d6..ade6d8999 100644 --- a/test/test_ger.c +++ b/test/test_ger.c @@ -77,10 +77,7 @@ int main( int argc, char** argv ) n_input = 15; #endif - dt_alpha = BLIS_DOUBLE; - dt_x = BLIS_DOUBLE; - dt_y = BLIS_DOUBLE; - dt_a = BLIS_DOUBLE; + dt_alpha = dt_x = dt_y = dt_a = BLIS_DOUBLE; for ( p = p_begin; p <= p_end; p += p_inc ) { diff --git a/test/test_hemm.c b/test/test_hemm.c index c2d96dbc3..1b0c0604f 100644 --- a/test/test_hemm.c +++ b/test/test_hemm.c @@ -80,11 +80,7 @@ int main( int argc, char** argv ) #endif #if 1 - dt_a = BLIS_DOUBLE; - dt_b = BLIS_DOUBLE; - dt_c = BLIS_DOUBLE; - dt_alpha = BLIS_DOUBLE; - dt_beta = BLIS_DOUBLE; + dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_DOUBLE; #else dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_DCOMPLEX; #endif diff --git a/test/test_hemv.c b/test/test_hemv.c index ac54fe287..aaaa2a053 100644 --- a/test/test_hemv.c +++ b/test/test_hemv.c @@ -77,17 +77,9 @@ int main( int argc, char** argv ) #endif #if 1 - dt_a = BLIS_DOUBLE; - dt_x = BLIS_DOUBLE; - dt_y = BLIS_DOUBLE; - dt_alpha = BLIS_DOUBLE; - dt_beta = BLIS_DOUBLE; + dt_a = dt_x = dt_y = dt_alpha = dt_beta = BLIS_DOUBLE; #else - dt_a = BLIS_DCOMPLEX; - dt_x = BLIS_DCOMPLEX; - dt_y = BLIS_DCOMPLEX; - dt_alpha = BLIS_DCOMPLEX; - dt_beta = BLIS_DCOMPLEX; + dt_a = dt_x = dt_y = dt_alpha = dt_beta = BLIS_DCOMPLEX; #endif uplo = BLIS_LOWER; diff --git a/test/test_her.c b/test/test_her.c index 4a1994233..839dc19e4 100644 --- a/test/test_her.c +++ b/test/test_her.c @@ -78,13 +78,9 @@ int main( int argc, char** argv ) #endif #if 1 - dt_alpha = BLIS_DOUBLE; - dt_x = BLIS_DOUBLE; - dt_a = BLIS_DOUBLE; + dt_alpha = dt_x = dt_a = BLIS_DOUBLE; #else - dt_alpha = BLIS_DCOMPLEX; - dt_x = BLIS_DCOMPLEX; - dt_a = BLIS_DCOMPLEX; + dt_alpha = dt_x = dt_a = BLIS_DCOMPLEX; #endif uplo = BLIS_LOWER; diff --git a/test/test_her2.c b/test/test_her2.c index b923036b7..29f5cc3ba 100644 --- a/test/test_her2.c +++ b/test/test_her2.c @@ -77,15 +77,9 @@ int main( int argc, char** argv ) #endif #if 1 - dt_alpha = BLIS_DOUBLE; - dt_x = BLIS_DOUBLE; - dt_y = BLIS_DOUBLE; - dt_a = BLIS_DOUBLE; + dt_alpha = dt_x = dt_y = dt_a = BLIS_DOUBLE; #else - dt_alpha = BLIS_DCOMPLEX; - dt_x = BLIS_DCOMPLEX; - dt_y = BLIS_DCOMPLEX; - dt_a = BLIS_DCOMPLEX; + dt_alpha = dt_x = dt_y = dt_a = BLIS_DCOMPLEX; #endif uplo = BLIS_LOWER; diff --git a/test/test_her2k.c b/test/test_her2k.c index fb8f00103..55c40fbbb 100644 --- a/test/test_her2k.c +++ b/test/test_her2k.c @@ -79,11 +79,7 @@ int main( int argc, char** argv ) k_input = 10; #endif - dt_a = BLIS_DOUBLE; - dt_b = BLIS_DOUBLE; - dt_c = BLIS_DOUBLE; - dt_alpha = BLIS_DOUBLE; - dt_beta = BLIS_DOUBLE; + dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_DOUBLE; uplo = BLIS_LOWER; diff --git a/test/test_herk.c b/test/test_herk.c index fa2cb4c57..c3c93071e 100644 --- a/test/test_herk.c +++ b/test/test_herk.c @@ -79,10 +79,7 @@ int main( int argc, char** argv ) k_input = 13; #endif - dt_a = BLIS_DOUBLE; - dt_c = BLIS_DOUBLE; - dt_alpha = BLIS_DOUBLE; - dt_beta = BLIS_DOUBLE; + dt_a = dt_c = dt_alpha = dt_beta = BLIS_DOUBLE; uplo = BLIS_LOWER; diff --git a/test/test_trmm.c b/test/test_trmm.c index d43e8ba38..e3df7a407 100644 --- a/test/test_trmm.c +++ b/test/test_trmm.c @@ -80,11 +80,7 @@ int main( int argc, char** argv ) #endif #if 1 - dt_a = BLIS_DOUBLE; - dt_b = BLIS_DOUBLE; - dt_c = BLIS_DOUBLE; - dt_alpha = BLIS_DOUBLE; - dt_beta = BLIS_DOUBLE; + dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_DOUBLE; #else dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_DCOMPLEX; #endif diff --git a/test/test_trmv.c b/test/test_trmv.c index 4a803232a..4f65d2fc6 100644 --- a/test/test_trmv.c +++ b/test/test_trmv.c @@ -77,9 +77,7 @@ int main( int argc, char** argv ) n_input = 15; #endif - dt_alpha = BLIS_DOUBLE; - dt_a = BLIS_DOUBLE; - dt_x = BLIS_DOUBLE; + dt_alpha = dt_a = dt_x = BLIS_DOUBLE; uplo = BLIS_LOWER; diff --git a/test/test_trsm.c b/test/test_trsm.c index c0c9cd73c..a4abb2b8d 100644 --- a/test/test_trsm.c +++ b/test/test_trsm.c @@ -79,15 +79,10 @@ int main( int argc, char** argv ) n_input = 4 ; #endif -#if 0 - dt_a = BLIS_DOUBLE; - dt_b = BLIS_DOUBLE; - dt_c = BLIS_DOUBLE; - dt_alpha = BLIS_DOUBLE; - dt_beta = BLIS_DOUBLE; +#if 1 + dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_DOUBLE; #else - dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_FLOAT; - //dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_SCOMPLEX; + dt_a = dt_b = dt_c = dt_alpha = dt_beta = BLIS_DCOMPLEX; #endif side = BLIS_LEFT; diff --git a/test/test_trsv.c b/test/test_trsv.c index d9b15dbaf..d48fbdc52 100644 --- a/test/test_trsv.c +++ b/test/test_trsv.c @@ -77,9 +77,7 @@ int main( int argc, char** argv ) n_input = 15; #endif - dt_alpha = BLIS_DOUBLE; - dt_a = BLIS_DOUBLE; - dt_x = BLIS_DOUBLE; + dt_alpha = dt_a = dt_x = BLIS_DOUBLE; uplo = BLIS_LOWER; From 8ccdfaef4c42ad8957af8607a1a9ee29b9277d4b Mon Sep 17 00:00:00 2001 From: Marat Dukhan Date: Tue, 8 Jul 2014 23:14:36 -0700 Subject: [PATCH 03/19] Replicated logic from testsuite/Makefile in top-level Makefile to support make test --- Makefile | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 67 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 8c49a2d6c..97648b48d 100644 --- a/Makefile +++ b/Makefile @@ -394,7 +394,17 @@ MK_TESTSUITE_OBJS := $(patsubst $(TESTSUITE_SRC_PATH)/%.c, \ $(wildcard $(TESTSUITE_SRC_PATH)/*.c)) # The test suite binary executable filename. -TESTSUITE_BIN := $(TESTSUITE_NAME).x +ifeq ($(CONFIG_NAME),pnacl) +# Linked executable +MK_TESTSUITE_BIN_UNSTABLE := $(BASE_OBJ_TESTSUITE_PATH)/test_libblis.unstable.pexe +# Finalized executable +MK_TESTSUITE_BIN_PNACL := $(BASE_OBJ_TESTSUITE_PATH)/test_libblis.pexe +# Translated executable (for x86-64) +TESTSUITE_BIN := test_libblis.x86-64.nexe +else +# Binary executable name. +TESTSUITE_BIN := test_libblis.x +endif @@ -524,15 +534,65 @@ else @$(CC) $(CFLAGS) -c $< -o $@ endif -$(TESTSUITE_BIN): $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) -ifeq ($(FLA_ENABLE_VERBOSE_MAKE_OUTPUT),yes) +ifeq ($(CONFIG_NAME),pnacl) + +# Link executable (produces unstable LLVM bitcode) +$(MK_TESTSUITE_BIN_UNSTABLE): $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) +ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) $(LINKER) $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) $(LDFLAGS) -o $@ else @echo "Linking $@ against '$(MK_BLIS_LIB) $(LDFLAGS)'" @$(LINKER) $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) $(LDFLAGS) -o $@ endif +# Finalize PNaCl executable (i.e. convert from LLVM bitcode to PNaCl bitcode) +$(MK_TESTSUITE_BIN_PNACL): $(MK_TESTSUITE_BIN_UNSTABLE) +ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) + $(FINALIZER) $(FINFLAGS) -o $@ $< +else + @echo "Finalizing $@" + @$(FINALIZER) $(FINFLAGS) -o $@ $< +endif + +# Translate PNaCl executable to x86-64 NaCl executable +$(TESTSUITE_BIN): $(MK_TESTSUITE_BIN_PNACL) +ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) + $(TRANSLATOR) $(TRNSFLAGS) $(TRNSAMD64FLAGS) $< -o $@ +else + @echo "Translating $< -> $@" + @$(TRANSLATOR) $(TRNSFLAGS) $(TRNSAMD64FLAGS) $< -o $@ +endif + +else # Non-PNaCl case + +# Link executable normally +$(TESTSUITE_BIN): $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) +ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) + $(LINKER) $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) $(LDFLAGS) -o $@ +else + @echo "Linking $@ against '$(MK_BLIS_LIB) $(LDFLAGS)'" + @$(LINKER) $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) $(LDFLAGS) -o $@ +endif + +endif + testsuite-run: testsuite-bin +ifeq ($(CONFIG_NAME),pnacl) +ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) + $(NACL_SDK_ROOT)/tools/sel_ldr_x86_64 -a -c -q \ + -B $(NACL_SDK_ROOT)/tools/irt_core_x86_64.nexe -- \ + $(TESTSUITE_BIN) -g $(TESTSUITE_CONF_GEN_PATH) \ + -o $(TESTSUITE_CONF_OPS_PATH) \ + > $(TESTSUITE_OUT_FILE) +else + @echo "Running $(TESTSUITE_BIN) with output redirected to '$(TESTSUITE_OUT_FILE)'" + @$(NACL_SDK_ROOT)/tools/sel_ldr_x86_64 -a -c -q \ + -B $(NACL_SDK_ROOT)/tools/irt_core_x86_64.nexe -- \ + $(TESTSUITE_BIN) -g $(TESTSUITE_CONF_GEN_PATH) \ + -o $(TESTSUITE_CONF_OPS_PATH) \ + > $(TESTSUITE_OUT_FILE) +endif +else ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) ./$(TESTSUITE_BIN) -g $(TESTSUITE_CONF_GEN_PATH) \ -o $(TESTSUITE_CONF_OPS_PATH) \ @@ -543,7 +603,7 @@ else -o $(TESTSUITE_CONF_OPS_PATH) \ > $(TESTSUITE_OUT_FILE) endif - +endif # --- Install rules --- @@ -634,11 +694,11 @@ endif cleantest: check-env ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) - - $(FIND) $(BASE_OBJ_TESTSUITE_PATH) -name "*.o" | $(XARGS) $(RM_F) + - $(FIND) $(BASE_OBJ_TESTSUITE_PATH) -name "*.o" -name "*.pexe" | $(XARGS) $(RM_F) - $(RM_RF) $(TESTSUITE_BIN) else - @echo "Removing .o files from $(BASE_OBJ_TESTSUITE_PATH)." - @- $(FIND) $(BASE_OBJ_TESTSUITE_PATH) -name "*.o" | $(XARGS) $(RM_F) + @echo "Removing object files from $(BASE_OBJ_TESTSUITE_PATH)." + @- $(FIND) $(BASE_OBJ_TESTSUITE_PATH) -name "*.o" -name "*.pexe" | $(XARGS) $(RM_F) @echo "Removing $(TESTSUITE_BIN) binary." @- $(RM_RF) $(TESTSUITE_BIN) endif From 970b43141697d8c31a033f59513bb59d7cc78ab0 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Thu, 10 Jul 2014 09:30:00 -0500 Subject: [PATCH 04/19] Minor bugfixes to BLAS compatibility layer. Details: - Changed bla_amax.c so that i?amax() routines now correctly return 0 if ( n < 1 || incx <= 0 ). - Changed bla_rotg.c and bla_rotmg.c to use bli_fabs() macro instead of f2c's abs() macro for float and double cases. - Thanks to Murtaza Ali for suggesting the two fixes above. - Updated label of fnormv to normfv in testsuite/input.operations. --- frame/compat/bla_amax.c | 6 ++++++ frame/compat/f2c/bla_rotg.c | 16 ++++++++-------- frame/compat/f2c/bla_rotmg.c | 12 ++++++------ testsuite/input.operations | 4 ++-- 4 files changed, 22 insertions(+), 16 deletions(-) diff --git a/frame/compat/bla_amax.c b/frame/compat/bla_amax.c index 5e1a84c64..3758dd683 100644 --- a/frame/compat/bla_amax.c +++ b/frame/compat/bla_amax.c @@ -52,6 +52,12 @@ f77_int PASTEF772(i,chx,blasname)( \ gint_t bli_index; \ f77_int f77_index; \ err_t init_result; \ +\ + /* If the vector is empty, return an index of zero. This early check + is needed to emulate netlib BLAS. Without it, bli_?amaxv() will + return 0, which ends up getting incremented to 1 (below) before + being returned, which is not what we want. */ \ + if ( *n < 1 || *incx <= 0 ) return 0; \ \ /* Initialize BLIS (if it is not already initialized). */ \ bli_init_safe( &init_result ); \ diff --git a/frame/compat/f2c/bla_rotg.c b/frame/compat/f2c/bla_rotg.c index 32acbdfd1..e1c78489c 100644 --- a/frame/compat/f2c/bla_rotg.c +++ b/frame/compat/f2c/bla_rotg.c @@ -62,10 +62,10 @@ static real sc_b4 = 1.f; roe = *sb; - if (abs(*sa) > abs(*sb)) { + if (bli_fabs(*sa) > bli_fabs(*sb)) { roe = *sa; } - scale = abs(*sa) + abs(*sb); + scale = bli_fabs(*sa) + bli_fabs(*sb); if (scale != 0.f) { goto L10; } @@ -84,10 +84,10 @@ L10: *c__ = *sa / r__; *s = *sb / r__; z__ = 1.f; - if (abs(*sa) > abs(*sb)) { + if (bli_fabs(*sa) > bli_fabs(*sb)) { z__ = *s; } - if (abs(*sb) >= abs(*sa) && *c__ != 0.f) { + if (bli_fabs(*sb) >= bli_fabs(*sa) && *c__ != 0.f) { z__ = 1.f / *c__; } L20: @@ -122,10 +122,10 @@ static doublereal dc_b4 = 1.; roe = *db; - if (abs(*da) > abs(*db)) { + if (bli_fabs(*da) > bli_fabs(*db)) { roe = *da; } - scale = abs(*da) + abs(*db); + scale = bli_fabs(*da) + bli_fabs(*db); if (scale != 0.) { goto L10; } @@ -144,10 +144,10 @@ L10: *c__ = *da / r__; *s = *db / r__; z__ = 1.; - if (abs(*da) > abs(*db)) { + if (bli_fabs(*da) > bli_fabs(*db)) { z__ = *s; } - if (abs(*db) >= abs(*da) && *c__ != 0.) { + if (bli_fabs(*db) >= bli_fabs(*da) && *c__ != 0.) { z__ = 1. / *c__; } L20: diff --git a/frame/compat/f2c/bla_rotmg.c b/frame/compat/f2c/bla_rotmg.c index ae8497484..522b74e21 100644 --- a/frame/compat/f2c/bla_rotmg.c +++ b/frame/compat/f2c/bla_rotmg.c @@ -107,7 +107,7 @@ L20: sq2 = sp2 * *sy1; sq1 = sp1 * *sx1; - if (! (abs(sq1) > abs(sq2))) { + if (! (bli_fabs(sq1) > bli_fabs(sq2))) { goto L40; } sh21 = -(*sy1) / *sx1; @@ -219,7 +219,7 @@ L150: goto L140; L160: L170: - if (! (abs(*sd2) <= rgamsq)) { + if (! (bli_fabs(*sd2) <= rgamsq)) { goto L190; } if (*sd2 == zero) { @@ -237,7 +237,7 @@ L180: goto L170; L190: L200: - if (! (abs(*sd2) >= gamsq)) { + if (! (bli_fabs(*sd2) >= gamsq)) { goto L220; } igo = 3; @@ -347,7 +347,7 @@ L20: dq2 = dp2 * *dy1; dq1 = dp1 * *dx1; - if (! (abs(dq1) > abs(dq2))) { + if (! (bli_fabs(dq1) > bli_fabs(dq2))) { goto L40; } dh21 = -(*dy1) / *dx1; @@ -459,7 +459,7 @@ L150: goto L140; L160: L170: - if (! (abs(*dd2) <= rgamsq)) { + if (! (bli_fabs(*dd2) <= rgamsq)) { goto L190; } if (*dd2 == zero) { @@ -477,7 +477,7 @@ L180: goto L170; L190: L200: - if (! (abs(*dd2) >= gamsq)) { + if (! (bli_fabs(*dd2) >= gamsq)) { goto L220; } igo = 3; diff --git a/testsuite/input.operations b/testsuite/input.operations index 094287382..c651d33f6 100644 --- a/testsuite/input.operations +++ b/testsuite/input.operations @@ -124,7 +124,7 @@ -1 # dimensions: m ?? # parameters: conjx conjy -1 # fnormv +1 # normfv 1 # test sequential front-end -1 # dimensions: m @@ -165,7 +165,7 @@ -1 -2 # dimensions: m n ? # parameters: transa -1 # fnormm +1 # normfm 1 # test sequential front-end -1 -2 # dimensions: m n From 26cd81990631ff799791629206e068126ff9e3a1 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Thu, 10 Jul 2014 13:16:07 -0500 Subject: [PATCH 05/19] Added bli_info_*() query functions. Details: - Added a new API family, bli_info_*(), which can be used to query information about how BLIS was configured. Most of these values are returned as gint_t, with the exception of the version string which is char*. - Changed how the testsuite driver queries information about how BLIS was configured (from using macro constants directly to using the new bli_info API). - Removed bli_version.c and its header file. - Added STRINGIFY_INT() macro to bli_macro_defs.h - Renamed info_t type in bli_type_defs.h to objbits_t (not because of an actual naming conflict, but because the name 'info_t' would now be somewhat misleading in the presence of the new bli_info API, as the two are unrelated). --- frame/base/bli_info.c | 532 +++++++++++++++++++++++++++++++++ frame/base/bli_info.h | 189 ++++++++++++ frame/base/bli_version.c | 48 --- frame/base/bli_version.h | 36 --- frame/include/bli_macro_defs.h | 1 + frame/include/bli_type_defs.h | 12 +- frame/include/blis.h | 2 +- testsuite/src/test_libblis.c | 268 ++++++++--------- 8 files changed, 853 insertions(+), 235 deletions(-) create mode 100644 frame/base/bli_info.c create mode 100644 frame/base/bli_info.h delete mode 100644 frame/base/bli_version.c delete mode 100644 frame/base/bli_version.h diff --git a/frame/base/bli_info.c b/frame/base/bli_info.c new file mode 100644 index 000000000..9d7498a7b --- /dev/null +++ b/frame/base/bli_info.c @@ -0,0 +1,532 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +#include "blis.h" + + +// NOTE: The values handled here may be queried even before bli_init() +// is called! + + + +// -- General library information ---------------------------------------------- + +// This string gets defined via -D on the command line when BLIS is compiled. +// This string is (or rather, should be) only used here. +static char* bli_version_str = BLIS_VERSION_STRING; +static char* bli_int_type_size_str = STRINGIFY_INT( BLIS_INT_TYPE_SIZE ); + +char* bli_info_get_version_str( void ) { return bli_version_str; } +char* bli_info_get_int_type_size_str( void ) { return bli_int_type_size_str; } + + + +// -- bli_config.h ------------------------------------------------------------- + +gint_t bli_info_get_int_type_size( void ) { return BLIS_INT_TYPE_SIZE; } +gint_t bli_info_get_num_fp_types( void ) { return BLIS_NUM_FP_TYPES; } +gint_t bli_info_get_max_type_size( void ) { return BLIS_MAX_TYPE_SIZE; } +gint_t bli_info_get_max_num_threads( void ) { return BLIS_MAX_NUM_THREADS; } +gint_t bli_info_get_num_mc_x_kc_blocks( void ) { return BLIS_NUM_MC_X_KC_BLOCKS; } +gint_t bli_info_get_num_kc_x_nc_blocks( void ) { return BLIS_NUM_KC_X_NC_BLOCKS; } +gint_t bli_info_get_num_mc_x_nc_blocks( void ) { return BLIS_NUM_MC_X_NC_BLOCKS; } +gint_t bli_info_get_max_preload_byte_offset( void ) { return BLIS_MAX_PRELOAD_BYTE_OFFSET; } +gint_t bli_info_get_simd_align_size( void ) { return BLIS_SIMD_ALIGN_SIZE; } +gint_t bli_info_get_stack_buf_align_size( void ) { return BLIS_STACK_BUF_ALIGN_SIZE; } +gint_t bli_info_get_heap_addr_align_size( void ) { return BLIS_HEAP_ADDR_ALIGN_SIZE; } +gint_t bli_info_get_heap_stride_align_size( void ) { return BLIS_HEAP_STRIDE_ALIGN_SIZE; } +gint_t bli_info_get_contig_addr_align_size( void ) { return BLIS_CONTIG_ADDR_ALIGN_SIZE; } +gint_t bli_info_get_enable_stay_auto_init( void ) +{ +#ifdef BLIS_ENABLE_STAY_AUTO_INITIALIZED + return 1; +#else + return 0; +#endif +} +gint_t bli_info_get_enable_blas2blis( void ) +{ +#ifdef BLIS_ENABLE_BLAS2BLIS + return 1; +#else + return 0; +#endif +} +gint_t bli_info_get_blas2blis_int_type_size( void ) { return BLIS_BLAS2BLIS_INT_TYPE_SIZE; } + + + +// -- bli_kernel.h ------------------------------------------------------------- + +// -- 4m status -- + +gint_t bli_info_get_enable_scomplex_via_4m( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return TRUE; +#else + return FALSE; +#endif +} +gint_t bli_info_get_enable_dcomplex_via_4m( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return TRUE; +#else + return FALSE; +#endif +} + + +// -- Default cache blocksizes -- + +// MC default blocksizes + +gint_t bli_info_get_default_mc( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_default_mc_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_default_mc_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_default_mc_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_default_mc_z(); + else return 0; +} +gint_t bli_info_get_default_mc_s( void ) { return BLIS_DEFAULT_MC_S; } +gint_t bli_info_get_default_mc_d( void ) { return BLIS_DEFAULT_MC_D; } +gint_t bli_info_get_default_mc_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_MC_C; +#else + return BLIS_DEFAULT_MC_C; +#endif +} +gint_t bli_info_get_default_mc_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_MC_Z; +#else + return BLIS_DEFAULT_MC_Z; +#endif +} + + +// KC default blocksizes + +gint_t bli_info_get_default_kc( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_default_kc_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_default_kc_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_default_kc_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_default_kc_z(); + else return 0; +} +gint_t bli_info_get_default_kc_s( void ) { return BLIS_DEFAULT_KC_S; } +gint_t bli_info_get_default_kc_d( void ) { return BLIS_DEFAULT_KC_D; } +gint_t bli_info_get_default_kc_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_KC_C; +#else + return BLIS_DEFAULT_KC_C; +#endif +} +gint_t bli_info_get_default_kc_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_KC_Z; +#else + return BLIS_DEFAULT_KC_Z; +#endif +} + + +// NC default blocksizes + +gint_t bli_info_get_default_nc( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_default_nc_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_default_nc_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_default_nc_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_default_nc_z(); + else return 0; +} +gint_t bli_info_get_default_nc_s( void ) { return BLIS_DEFAULT_NC_S; } +gint_t bli_info_get_default_nc_d( void ) { return BLIS_DEFAULT_NC_D; } +gint_t bli_info_get_default_nc_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_NC_C; +#else + return BLIS_DEFAULT_NC_C; +#endif +} +gint_t bli_info_get_default_nc_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_NC_Z; +#else + return BLIS_DEFAULT_NC_Z; +#endif +} + + +// -- Cache blocksize extensions -- + +// MC blocksize extensions + +gint_t bli_info_get_extend_mc( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_extend_mc_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_extend_mc_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_extend_mc_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_extend_mc_z(); + else return 0; +} +gint_t bli_info_get_extend_mc_s( void ) { return BLIS_EXTEND_MC_S; } +gint_t bli_info_get_extend_mc_d( void ) { return BLIS_EXTEND_MC_D; } +gint_t bli_info_get_extend_mc_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_MC_C; +#else + return BLIS_EXTEND_MC_C; +#endif +} +gint_t bli_info_get_extend_mc_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_MC_Z; +#else + return BLIS_EXTEND_MC_Z; +#endif +} + + +// KC blocksize extensions + +gint_t bli_info_get_extend_kc( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_extend_kc_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_extend_kc_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_extend_kc_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_extend_kc_z(); + else return 0; +} +gint_t bli_info_get_extend_kc_s( void ) { return BLIS_EXTEND_KC_S; } +gint_t bli_info_get_extend_kc_d( void ) { return BLIS_EXTEND_KC_D; } +gint_t bli_info_get_extend_kc_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_KC_C; +#else + return BLIS_EXTEND_KC_C; +#endif +} +gint_t bli_info_get_extend_kc_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_KC_Z; +#else + return BLIS_EXTEND_KC_Z; +#endif +} + + +// NC blocksize extensions + +gint_t bli_info_get_extend_nc( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_extend_nc_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_extend_nc_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_extend_nc_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_extend_nc_z(); + else return 0; +} +gint_t bli_info_get_extend_nc_s( void ) { return BLIS_EXTEND_NC_S; } +gint_t bli_info_get_extend_nc_d( void ) { return BLIS_EXTEND_NC_D; } +gint_t bli_info_get_extend_nc_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_NC_C; +#else + return BLIS_EXTEND_NC_C; +#endif +} +gint_t bli_info_get_extend_nc_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_NC_Z; +#else + return BLIS_EXTEND_NC_Z; +#endif +} + + +// -- Default register blocksizes -- + +// MR default blocksizes + +gint_t bli_info_get_default_mr( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_default_mr_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_default_mr_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_default_mr_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_default_mr_z(); + else return 0; +} +gint_t bli_info_get_default_mr_s( void ) { return BLIS_DEFAULT_MR_S; } +gint_t bli_info_get_default_mr_d( void ) { return BLIS_DEFAULT_MR_D; } +gint_t bli_info_get_default_mr_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_MR_C; +#else + return BLIS_DEFAULT_MR_C; +#endif +} +gint_t bli_info_get_default_mr_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_MR_Z; +#else + return BLIS_DEFAULT_MR_Z; +#endif +} + + +// KR default blocksizes + +gint_t bli_info_get_default_kr( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_default_kr_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_default_kr_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_default_kr_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_default_kr_z(); + else return 0; +} +gint_t bli_info_get_default_kr_s( void ) { return BLIS_DEFAULT_KR_S; } +gint_t bli_info_get_default_kr_d( void ) { return BLIS_DEFAULT_KR_D; } +gint_t bli_info_get_default_kr_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_KR_C; +#else + return BLIS_DEFAULT_KR_C; +#endif +} +gint_t bli_info_get_default_kr_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_KR_Z; +#else + return BLIS_DEFAULT_KR_Z; +#endif +} + + +// NR default blocksizes + +gint_t bli_info_get_default_nr( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_default_nr_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_default_nr_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_default_nr_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_default_nr_z(); + else return 0; +} +gint_t bli_info_get_default_nr_s( void ) { return BLIS_DEFAULT_NR_S; } +gint_t bli_info_get_default_nr_d( void ) { return BLIS_DEFAULT_NR_D; } +gint_t bli_info_get_default_nr_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_NR_C; +#else + return BLIS_DEFAULT_NR_C; +#endif +} +gint_t bli_info_get_default_nr_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_DEFAULT_4M_NR_Z; +#else + return BLIS_DEFAULT_NR_Z; +#endif +} + + +// -- Register blocksize extensions -- + +// MR blocksize extensions + +gint_t bli_info_get_extend_mr( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_extend_mr_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_extend_mr_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_extend_mr_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_extend_mr_z(); + else return 0; +} +gint_t bli_info_get_extend_mr_s( void ) { return BLIS_EXTEND_MR_S; } +gint_t bli_info_get_extend_mr_d( void ) { return BLIS_EXTEND_MR_D; } +gint_t bli_info_get_extend_mr_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_MR_C; +#else + return BLIS_EXTEND_MR_C; +#endif +} +gint_t bli_info_get_extend_mr_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_MR_Z; +#else + return BLIS_EXTEND_MR_Z; +#endif +} + + +// NR blocksize extensions + +gint_t bli_info_get_extend_nr( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_extend_nr_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_extend_nr_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_extend_nr_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_extend_nr_z(); + else return 0; +} +gint_t bli_info_get_extend_nr_s( void ) { return BLIS_EXTEND_NR_S; } +gint_t bli_info_get_extend_nr_d( void ) { return BLIS_EXTEND_NR_D; } +gint_t bli_info_get_extend_nr_c( void ) { +#ifdef BLIS_ENABLE_SCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_NR_C; +#else + return BLIS_EXTEND_NR_C; +#endif +} +gint_t bli_info_get_extend_nr_z( void ) { +#ifdef BLIS_ENABLE_DCOMPLEX_VIA_4M + return BLIS_EXTEND_4M_NR_Z; +#else + return BLIS_EXTEND_NR_Z; +#endif +} + + +// -- Level-2 cache blocksizes -- + +// m dimension default blocksizes + +gint_t bli_info_get_default_l2_mc( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_default_l2_mc_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_default_l2_mc_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_default_l2_mc_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_default_l2_mc_z(); + else return 0; +} +gint_t bli_info_get_default_l2_mc_s( void ) { return BLIS_DEFAULT_L2_MC_S; } +gint_t bli_info_get_default_l2_mc_d( void ) { return BLIS_DEFAULT_L2_MC_D; } +gint_t bli_info_get_default_l2_mc_c( void ) { return BLIS_DEFAULT_L2_MC_C; } +gint_t bli_info_get_default_l2_mc_z( void ) { return BLIS_DEFAULT_L2_MC_Z; } + + +// n dimension default blocksizes + +gint_t bli_info_get_default_l2_nc( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_default_l2_nc_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_default_l2_nc_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_default_l2_nc_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_default_l2_nc_z(); + else return 0; +} +gint_t bli_info_get_default_l2_nc_s( void ) { return BLIS_DEFAULT_L2_NC_S; } +gint_t bli_info_get_default_l2_nc_d( void ) { return BLIS_DEFAULT_L2_NC_D; } +gint_t bli_info_get_default_l2_nc_c( void ) { return BLIS_DEFAULT_L2_NC_C; } +gint_t bli_info_get_default_l2_nc_z( void ) { return BLIS_DEFAULT_L2_NC_Z; } + + +// -- Level-1f fusing factors -- + +// default + +gint_t bli_info_get_default_l1f_fuse_fac( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_default_l1f_fuse_fac_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_default_l1f_fuse_fac_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_default_l1f_fuse_fac_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_default_l1f_fuse_fac_z(); + else return 0; +} +gint_t bli_info_get_default_l1f_fuse_fac_s( void ) { return BLIS_L1F_FUSE_FAC_S; } +gint_t bli_info_get_default_l1f_fuse_fac_d( void ) { return BLIS_L1F_FUSE_FAC_D; } +gint_t bli_info_get_default_l1f_fuse_fac_c( void ) { return BLIS_L1F_FUSE_FAC_C; } +gint_t bli_info_get_default_l1f_fuse_fac_z( void ) { return BLIS_L1F_FUSE_FAC_Z; } + + +// axpyf + +gint_t bli_info_get_axpyf_fuse_fac( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_axpyf_fuse_fac_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_axpyf_fuse_fac_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_axpyf_fuse_fac_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_axpyf_fuse_fac_z(); + else return 0; +} +gint_t bli_info_get_axpyf_fuse_fac_s( void ) { return BLIS_AXPYF_FUSE_FAC_S; } +gint_t bli_info_get_axpyf_fuse_fac_d( void ) { return BLIS_AXPYF_FUSE_FAC_D; } +gint_t bli_info_get_axpyf_fuse_fac_c( void ) { return BLIS_AXPYF_FUSE_FAC_C; } +gint_t bli_info_get_axpyf_fuse_fac_z( void ) { return BLIS_AXPYF_FUSE_FAC_Z; } + + +// dotxf + +gint_t bli_info_get_dotxf_fuse_fac( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_dotxf_fuse_fac_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_dotxf_fuse_fac_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_dotxf_fuse_fac_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_dotxf_fuse_fac_z(); + else return 0; +} +gint_t bli_info_get_dotxf_fuse_fac_s( void ) { return BLIS_DOTXF_FUSE_FAC_S; } +gint_t bli_info_get_dotxf_fuse_fac_d( void ) { return BLIS_DOTXF_FUSE_FAC_D; } +gint_t bli_info_get_dotxf_fuse_fac_c( void ) { return BLIS_DOTXF_FUSE_FAC_C; } +gint_t bli_info_get_dotxf_fuse_fac_z( void ) { return BLIS_DOTXF_FUSE_FAC_Z; } + + +// dotxf + +gint_t bli_info_get_dotxaxpyf_fuse_fac( num_t dt ) +{ + if ( bli_is_float ( dt ) ) return bli_info_get_dotxaxpyf_fuse_fac_s(); + else if ( bli_is_double ( dt ) ) return bli_info_get_dotxaxpyf_fuse_fac_d(); + else if ( bli_is_scomplex( dt ) ) return bli_info_get_dotxaxpyf_fuse_fac_c(); + else if ( bli_is_dcomplex( dt ) ) return bli_info_get_dotxaxpyf_fuse_fac_z(); + else return 0; +} +gint_t bli_info_get_dotxaxpyf_fuse_fac_s( void ) { return BLIS_DOTXAXPYF_FUSE_FAC_S; } +gint_t bli_info_get_dotxaxpyf_fuse_fac_d( void ) { return BLIS_DOTXAXPYF_FUSE_FAC_D; } +gint_t bli_info_get_dotxaxpyf_fuse_fac_c( void ) { return BLIS_DOTXAXPYF_FUSE_FAC_C; } +gint_t bli_info_get_dotxaxpyf_fuse_fac_z( void ) { return BLIS_DOTXAXPYF_FUSE_FAC_Z; } + + + +// -- bli_mem_pool_macro_defs.h ------------------------------------------------ + +gint_t bli_info_get_mk_pool_size( void ) { return BLIS_MK_POOL_SIZE; } +gint_t bli_info_get_kn_pool_size( void ) { return BLIS_KN_POOL_SIZE; } +gint_t bli_info_get_mn_pool_size( void ) { return BLIS_MN_POOL_SIZE; } + diff --git a/frame/base/bli_info.h b/frame/base/bli_info.h new file mode 100644 index 000000000..4c5ccb120 --- /dev/null +++ b/frame/base/bli_info.h @@ -0,0 +1,189 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + + +// -- General library information ---------------------------------------------- + +char* bli_info_get_version_str( void ); +char* bli_info_get_int_type_size_str( void ); + + +// -- bli_config.h ------------------------------------------------------------- + +gint_t bli_info_get_int_type_size( void ); +gint_t bli_info_get_num_fp_types( void ); +gint_t bli_info_get_max_type_size( void ); +gint_t bli_info_get_max_num_threads( void ); +gint_t bli_info_get_num_mc_x_kc_blocks( void ); +gint_t bli_info_get_num_kc_x_nc_blocks( void ); +gint_t bli_info_get_num_mc_x_nc_blocks( void ); +gint_t bli_info_get_max_preload_byte_offset( void ); +gint_t bli_info_get_simd_align_size( void ); +gint_t bli_info_get_stack_buf_align_size( void ); +gint_t bli_info_get_heap_addr_align_size( void ); +gint_t bli_info_get_heap_stride_align_size( void ); +gint_t bli_info_get_contig_addr_align_size( void ); +gint_t bli_info_get_enable_stay_auto_init( void ); +gint_t bli_info_get_enable_blas2blis( void ); +gint_t bli_info_get_blas2blis_int_type_size( void ); + + +// -- bli_kernel.h ------------------------------------------------------------- + +// -- 4m status -- + +gint_t bli_info_get_enable_scomplex_via_4m( void ); +gint_t bli_info_get_enable_dcomplex_via_4m( void ); + +// -- Default cache blocksizes -- + +gint_t bli_info_get_default_mc( num_t dt ); +gint_t bli_info_get_default_mc_s( void ); +gint_t bli_info_get_default_mc_d( void ); +gint_t bli_info_get_default_mc_c( void ); +gint_t bli_info_get_default_mc_z( void ); + +gint_t bli_info_get_default_kc( num_t dt ); +gint_t bli_info_get_default_kc_s( void ); +gint_t bli_info_get_default_kc_d( void ); +gint_t bli_info_get_default_kc_c( void ); +gint_t bli_info_get_default_kc_z( void ); + +gint_t bli_info_get_default_nc( num_t dt ); +gint_t bli_info_get_default_nc_s( void ); +gint_t bli_info_get_default_nc_d( void ); +gint_t bli_info_get_default_nc_c( void ); +gint_t bli_info_get_default_nc_z( void ); + +// -- Cache blocksize extensions -- + +gint_t bli_info_get_extend_mc( num_t dt ); +gint_t bli_info_get_extend_mc_s( void ); +gint_t bli_info_get_extend_mc_d( void ); +gint_t bli_info_get_extend_mc_c( void ); +gint_t bli_info_get_extend_mc_z( void ); + +gint_t bli_info_get_extend_kc( num_t dt ); +gint_t bli_info_get_extend_kc_s( void ); +gint_t bli_info_get_extend_kc_d( void ); +gint_t bli_info_get_extend_kc_c( void ); +gint_t bli_info_get_extend_kc_z( void ); + +gint_t bli_info_get_extend_nc( num_t dt ); +gint_t bli_info_get_extend_nc_s( void ); +gint_t bli_info_get_extend_nc_d( void ); +gint_t bli_info_get_extend_nc_c( void ); +gint_t bli_info_get_extend_nc_z( void ); + +// -- Default register blocksizes -- + +gint_t bli_info_get_default_mr( num_t dt ); +gint_t bli_info_get_default_mr_s( void ); +gint_t bli_info_get_default_mr_d( void ); +gint_t bli_info_get_default_mr_c( void ); +gint_t bli_info_get_default_mr_z( void ); + +gint_t bli_info_get_default_kr( num_t dt ); +gint_t bli_info_get_default_kr_s( void ); +gint_t bli_info_get_default_kr_d( void ); +gint_t bli_info_get_default_kr_c( void ); +gint_t bli_info_get_default_kr_z( void ); + +gint_t bli_info_get_default_nr( num_t dt ); +gint_t bli_info_get_default_nr_s( void ); +gint_t bli_info_get_default_nr_d( void ); +gint_t bli_info_get_default_nr_c( void ); +gint_t bli_info_get_default_nr_z( void ); + +// -- Register blocksize extensions -- + +gint_t bli_info_get_extend_mr( num_t dt ); +gint_t bli_info_get_extend_mr_s( void ); +gint_t bli_info_get_extend_mr_d( void ); +gint_t bli_info_get_extend_mr_c( void ); +gint_t bli_info_get_extend_mr_z( void ); + +gint_t bli_info_get_extend_nr( num_t dt ); +gint_t bli_info_get_extend_nr_s( void ); +gint_t bli_info_get_extend_nr_d( void ); +gint_t bli_info_get_extend_nr_c( void ); +gint_t bli_info_get_extend_nr_z( void ); + + +// -- Level-2 cache blocksizes -- + +gint_t bli_info_get_default_l2_mc_s( void ); +gint_t bli_info_get_default_l2_mc_d( void ); +gint_t bli_info_get_default_l2_mc_c( void ); +gint_t bli_info_get_default_l2_mc_z( void ); + +gint_t bli_info_get_default_l2_nc_s( void ); +gint_t bli_info_get_default_l2_nc_d( void ); +gint_t bli_info_get_default_l2_nc_c( void ); +gint_t bli_info_get_default_l2_nc_z( void ); + + +// -- Level-1f fusing factors -- + +gint_t bli_info_get_default_l1f_fuse_fac( num_t dt ); +gint_t bli_info_get_default_l1f_fuse_fac_s( void ); +gint_t bli_info_get_default_l1f_fuse_fac_d( void ); +gint_t bli_info_get_default_l1f_fuse_fac_c( void ); +gint_t bli_info_get_default_l1f_fuse_fac_z( void ); + +gint_t bli_info_get_axpyf_fuse_fac( num_t dt ); +gint_t bli_info_get_axpyf_fuse_fac_s( void ); +gint_t bli_info_get_axpyf_fuse_fac_d( void ); +gint_t bli_info_get_axpyf_fuse_fac_c( void ); +gint_t bli_info_get_axpyf_fuse_fac_z( void ); + +gint_t bli_info_get_dotxf_fuse_fac( num_t dt ); +gint_t bli_info_get_dotxf_fuse_fac_s( void ); +gint_t bli_info_get_dotxf_fuse_fac_d( void ); +gint_t bli_info_get_dotxf_fuse_fac_c( void ); +gint_t bli_info_get_dotxf_fuse_fac_z( void ); + +gint_t bli_info_get_dotxaxpyf_fuse_fac( num_t dt ); +gint_t bli_info_get_dotxaxpyf_fuse_fac_s( void ); +gint_t bli_info_get_dotxaxpyf_fuse_fac_d( void ); +gint_t bli_info_get_dotxaxpyf_fuse_fac_c( void ); +gint_t bli_info_get_dotxaxpyf_fuse_fac_z( void ); + + +// -- bli_mem_pool_macro_defs.h ------------------------------------------------ + +gint_t bli_info_get_mk_pool_size( void ); +gint_t bli_info_get_kn_pool_size( void ); +gint_t bli_info_get_mn_pool_size( void ); + diff --git a/frame/base/bli_version.c b/frame/base/bli_version.c deleted file mode 100644 index 2dc313165..000000000 --- a/frame/base/bli_version.c +++ /dev/null @@ -1,48 +0,0 @@ -/* - - BLIS - An object-based framework for developing high-performance BLAS-like - libraries. - - Copyright (C) 2014, The University of Texas - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -*/ - -#include "blis.h" - -// This string gets defined via -D on the command line when BLIS is compiled. -// This string is (or rather, should be) only used here. Once a BLIS library is -// instantiated, the application can query the version string at any time via -// bli_version(). -static char* bli_version_string = BLIS_VERSION_STRING; - - -char* bli_version( void ) -{ - return bli_version_string; -} - diff --git a/frame/base/bli_version.h b/frame/base/bli_version.h deleted file mode 100644 index ddb073544..000000000 --- a/frame/base/bli_version.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - - BLIS - An object-based framework for developing high-performance BLAS-like - libraries. - - Copyright (C) 2014, The University of Texas - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -*/ - -char* bli_version( void ); - diff --git a/frame/include/bli_macro_defs.h b/frame/include/bli_macro_defs.h index b779bde19..e3bc91cea 100644 --- a/frame/include/bli_macro_defs.h +++ b/frame/include/bli_macro_defs.h @@ -87,6 +87,7 @@ #define PASTECH(ch,op) PASTECH_(ch,op) #define MKSTR(s1) #s1 +#define STRINGIFY_INT( s ) MKSTR( s ) // -- Include other groups of macros diff --git a/frame/include/bli_type_defs.h b/frame/include/bli_type_defs.h index 609b38931..7fb4f1d52 100644 --- a/frame/include/bli_type_defs.h +++ b/frame/include/bli_type_defs.h @@ -82,12 +82,12 @@ typedef gint_t bool_t; // interoperability with BLIS. #ifndef _DEFINED_DIM_T #define _DEFINED_DIM_T -typedef gint_t dim_t; // dimension type +typedef gint_t dim_t; // dimension type #endif -typedef gint_t inc_t; // increment/stride type -typedef gint_t doff_t; // diagonal offset type -typedef guint_t siz_t; // byte size type -typedef guint_t info_t; // object information bit field +typedef gint_t inc_t; // increment/stride type +typedef gint_t doff_t; // diagonal offset type +typedef guint_t siz_t; // byte size type +typedef guint_t objbits_t; // object information bit field // -- Real types -- @@ -505,7 +505,7 @@ typedef struct obj_s dim_t n; doff_t diag_off; - info_t info; + objbits_t info; siz_t elem_size; void* buffer; diff --git a/frame/include/blis.h b/frame/include/blis.h index 52052733a..df30b58a7 100644 --- a/frame/include/blis.h +++ b/frame/include/blis.h @@ -110,7 +110,7 @@ extern "C" { #include "bli_error.h" #include "bli_f2c.h" #include "bli_machval.h" -#include "bli_version.h" +#include "bli_info.h" #include "bli_getopt.h" // Control tree definitions. diff --git a/testsuite/src/test_libblis.c b/testsuite/src/test_libblis.c index f37e7ac43..e6aee4239 100644 --- a/testsuite/src/test_libblis.c +++ b/testsuite/src/test_libblis.c @@ -535,44 +535,63 @@ void libblis_test_output_section_overrides( FILE* os, test_ops_t* ops ) void libblis_test_output_params_struct( FILE* os, test_params_t* params ) { - int i; - char intsize_str[8]; + int i; + //char int_type_size_str[8]; + gint_t int_type_size; - // If BLIS_INT_TYPE_SIZE is 32 or 64, the size is forced. Otherwise, the - // size is chosen automatically. We query the result of that automatic - // choice via sizeof(gint_t). - if ( BLIS_INT_TYPE_SIZE == 32 || BLIS_INT_TYPE_SIZE == 64 ) - sprintf( intsize_str, "%d", ( int )BLIS_INT_TYPE_SIZE ); + // If bli_info_get_int_type_size() returns 32 or 64, the size is forced. + // Otherwise, the size is chosen automatically. We query the result of + // that automatic choice via sizeof(gint_t). +/* + if ( bli_info_get_int_type_size() == 32 || + bli_info_get_int_type_size() == 64 ) + sprintf( int_type_size_str, "%d", ( int )bli_info_get_int_type_size() ); else - sprintf( intsize_str, "%d", ( int )sizeof(gint_t) * 8 ); + sprintf( int_type_size_str, "%d", ( int )sizeof(gint_t) * 8 ); +*/ + if ( bli_info_get_int_type_size() == 32 || + bli_info_get_int_type_size() == 64 ) + int_type_size = bli_info_get_int_type_size(); + else + int_type_size = sizeof(gint_t) * 8; // Output some system parameters. libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "--- BLIS library info -------------------------------------\n" ); libblis_test_fprintf_c( os, "\n" ); - libblis_test_fprintf_c( os, "version string %s\n", bli_version() ); + libblis_test_fprintf_c( os, "version string %s\n", bli_info_get_version_str() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "--- BLIS config header ---\n" ); libblis_test_fprintf_c( os, "\n" ); - libblis_test_fprintf_c( os, "integer type size (bits) %s\n", intsize_str ); + libblis_test_fprintf_c( os, "integer type size (bits) %d\n", ( int )int_type_size ); + libblis_test_fprintf_c( os, "# of floating-point types %d\n", ( int )bli_info_get_num_fp_types() ); + libblis_test_fprintf_c( os, "maximum type size %d\n", ( int )bli_info_get_max_type_size() ); + libblis_test_fprintf_c( os, "\n" ); + libblis_test_fprintf_c( os, "maximum number of threads %d\n", ( int )bli_info_get_max_num_threads() ); + libblis_test_fprintf_c( os, "\n" ); + libblis_test_fprintf_c( os, "SIMD alignment (bytes) %d\n", ( int )bli_info_get_simd_align_size() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "stack memory allocation \n" ); - libblis_test_fprintf_c( os, " address alignment (bytes) %u\n", BLIS_STACK_BUF_ALIGN_SIZE ); + libblis_test_fprintf_c( os, " address alignment (bytes) %d\n", ( int )bli_info_get_stack_buf_align_size() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "dynamic memory allocation \n" ); - libblis_test_fprintf_c( os, " address alignment %u\n", BLIS_HEAP_ADDR_ALIGN_SIZE ); - libblis_test_fprintf_c( os, " stride alignment %u\n", BLIS_HEAP_STRIDE_ALIGN_SIZE ); + libblis_test_fprintf_c( os, " address alignment %d\n", ( int )bli_info_get_heap_addr_align_size() ); + libblis_test_fprintf_c( os, " stride alignment %d\n", ( int )bli_info_get_heap_stride_align_size() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "contiguous memory allocation \n" ); - libblis_test_fprintf_c( os, " # of mc x kc blocks %u\n", BLIS_NUM_MC_X_KC_BLOCKS ); - libblis_test_fprintf_c( os, " # of kc x nc blocks %u\n", BLIS_NUM_KC_X_NC_BLOCKS ); - libblis_test_fprintf_c( os, " # of mc x nc blocks %u\n", BLIS_NUM_MC_X_NC_BLOCKS ); - libblis_test_fprintf_c( os, " block address alignment %u\n", BLIS_CONTIG_ADDR_ALIGN_SIZE ); - libblis_test_fprintf_c( os, " max preload byte offset %u\n", BLIS_MAX_PRELOAD_BYTE_OFFSET ); + libblis_test_fprintf_c( os, " # of mc x kc blocks %d\n", ( int )bli_info_get_num_mc_x_kc_blocks() ); + libblis_test_fprintf_c( os, " # of kc x nc blocks %d\n", ( int )bli_info_get_num_kc_x_nc_blocks() ); + libblis_test_fprintf_c( os, " # of mc x nc blocks %d\n", ( int )bli_info_get_num_mc_x_nc_blocks() ); + libblis_test_fprintf_c( os, " block address alignment %d\n", ( int )bli_info_get_contig_addr_align_size() ); + libblis_test_fprintf_c( os, " max preload byte offset %d\n", ( int )bli_info_get_max_preload_byte_offset() ); libblis_test_fprintf_c( os, " actual pool sizes (bytes) \n" ); - libblis_test_fprintf_c( os, " for mc x kc blocks of A %u\n", BLIS_MK_POOL_SIZE ); - libblis_test_fprintf_c( os, " for kc x nc panels of B %u\n", BLIS_KN_POOL_SIZE ); - libblis_test_fprintf_c( os, " for mc x nc panels of C %u\n", BLIS_MN_POOL_SIZE ); + libblis_test_fprintf_c( os, " for mc x kc blocks of A %d\n", ( int )bli_info_get_mk_pool_size() ); + libblis_test_fprintf_c( os, " for kc x nc panels of B %d\n", ( int )bli_info_get_kn_pool_size() ); + libblis_test_fprintf_c( os, " for mc x nc panels of C %d\n", ( int )bli_info_get_mn_pool_size() ); + libblis_test_fprintf_c( os, "\n" ); + libblis_test_fprintf_c( os, "BLAS compatibility layer \n" ); + libblis_test_fprintf_c( os, " enabled? %d\n", ( int )bli_info_get_enable_blas2blis() ); + libblis_test_fprintf_c( os, " integer type size (bits) %d\n", ( int )bli_info_get_blas2blis_int_type_size() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "--- BLIS kernel header ---\n" ); libblis_test_fprintf_c( os, "\n" ); @@ -582,140 +601,101 @@ void libblis_test_output_params_struct( FILE* os, test_params_t* params ) sizeof(scomplex), sizeof(dcomplex) ); libblis_test_fprintf_c( os, "\n" ); + libblis_test_fprintf_c( os, "complex via 4m\n" ); + libblis_test_fprintf_c( os, " enabled for scomplex? %d\n", ( int )bli_info_get_enable_scomplex_via_4m() ); + libblis_test_fprintf_c( os, " enabled for dcomplex? %d\n", ( int )bli_info_get_enable_dcomplex_via_4m() ); + libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "level-3 cache blocksizes s d c z \n" ); - libblis_test_fprintf_c( os, " m dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_MC_S, - BLIS_DEFAULT_MC_D, - BLIS_DEFAULT_MC_C, - BLIS_DEFAULT_MC_Z ); - libblis_test_fprintf_c( os, " k dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_KC_S, - BLIS_DEFAULT_KC_D, - BLIS_DEFAULT_KC_C, - BLIS_DEFAULT_KC_Z ); - libblis_test_fprintf_c( os, " n dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_NC_S, - BLIS_DEFAULT_NC_D, - BLIS_DEFAULT_NC_C, - BLIS_DEFAULT_NC_Z ); + libblis_test_fprintf_c( os, " m dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_default_mc_s(), + ( int )bli_info_get_default_mc_d(), + ( int )bli_info_get_default_mc_c(), + ( int )bli_info_get_default_mc_z() ); + libblis_test_fprintf_c( os, " k dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_default_kc_s(), + ( int )bli_info_get_default_kc_d(), + ( int )bli_info_get_default_kc_c(), + ( int )bli_info_get_default_kc_z() ); + libblis_test_fprintf_c( os, " n dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_default_nc_s(), + ( int )bli_info_get_default_nc_d(), + ( int )bli_info_get_default_nc_c(), + ( int )bli_info_get_default_nc_z() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "level-3 cache blksz exts s d c z \n" ); - libblis_test_fprintf_c( os, " m dimension %5u %5u %5u %5u\n", - BLIS_EXTEND_MC_S, - BLIS_EXTEND_MC_D, - BLIS_EXTEND_MC_C, - BLIS_EXTEND_MC_Z ); - libblis_test_fprintf_c( os, " k dimension %5u %5u %5u %5u\n", - BLIS_EXTEND_KC_S, - BLIS_EXTEND_KC_D, - BLIS_EXTEND_KC_C, - BLIS_EXTEND_KC_Z ); - libblis_test_fprintf_c( os, " n dimension %5u %5u %5u %5u\n", - BLIS_EXTEND_NC_S, - BLIS_EXTEND_NC_D, - BLIS_EXTEND_NC_C, - BLIS_EXTEND_NC_Z ); - libblis_test_fprintf_c( os, "\n" ); - libblis_test_fprintf_c( os, "4m/3m cache blocksizes 4c 4z 3c 3z \n" ); - libblis_test_fprintf_c( os, " m dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_4M_MC_C, - BLIS_DEFAULT_4M_MC_Z, - BLIS_DEFAULT_3M_MC_C, - BLIS_DEFAULT_3M_MC_Z ); - libblis_test_fprintf_c( os, " k dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_4M_KC_C, - BLIS_DEFAULT_4M_KC_Z, - BLIS_DEFAULT_3M_KC_C, - BLIS_DEFAULT_3M_KC_Z ); - libblis_test_fprintf_c( os, " n dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_4M_NC_C, - BLIS_DEFAULT_4M_NC_Z, - BLIS_DEFAULT_3M_NC_C, - BLIS_DEFAULT_3M_NC_Z ); - libblis_test_fprintf_c( os, "\n" ); - libblis_test_fprintf_c( os, "4m/3m cache blksz exts 4c 4z 3c 3z \n" ); - libblis_test_fprintf_c( os, " m dimension %5u %5u %5u %5u\n", - BLIS_EXTEND_4M_MC_C, - BLIS_EXTEND_4M_MC_Z, - BLIS_EXTEND_3M_MC_C, - BLIS_EXTEND_3M_MC_Z ); - libblis_test_fprintf_c( os, " k dimension %5u %5u %5u %5u\n", - BLIS_EXTEND_4M_KC_C, - BLIS_EXTEND_4M_KC_Z, - BLIS_EXTEND_3M_KC_C, - BLIS_EXTEND_3M_KC_Z ); - libblis_test_fprintf_c( os, " n dimension %5u %5u %5u %5u\n", - BLIS_EXTEND_4M_NC_C, - BLIS_EXTEND_4M_NC_Z, - BLIS_EXTEND_3M_NC_C, - BLIS_EXTEND_3M_NC_Z ); + libblis_test_fprintf_c( os, " m dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_extend_mc_s(), + ( int )bli_info_get_extend_mc_d(), + ( int )bli_info_get_extend_mc_c(), + ( int )bli_info_get_extend_mc_z() ); + libblis_test_fprintf_c( os, " k dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_extend_kc_s(), + ( int )bli_info_get_extend_kc_d(), + ( int )bli_info_get_extend_kc_c(), + ( int )bli_info_get_extend_kc_z() ); + libblis_test_fprintf_c( os, " n dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_extend_nc_s(), + ( int )bli_info_get_extend_nc_d(), + ( int )bli_info_get_extend_nc_c(), + ( int )bli_info_get_extend_nc_z() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "level-3 register blocksizes s d c z \n" ); - libblis_test_fprintf_c( os, " m dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_MR_S, - BLIS_DEFAULT_MR_D, - BLIS_DEFAULT_MR_C, - BLIS_DEFAULT_MR_Z ); - libblis_test_fprintf_c( os, " n dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_NR_S, - BLIS_DEFAULT_NR_D, - BLIS_DEFAULT_NR_C, - BLIS_DEFAULT_NR_Z ); + libblis_test_fprintf_c( os, " m dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_default_mr_s(), + ( int )bli_info_get_default_mr_d(), + ( int )bli_info_get_default_mr_c(), + ( int )bli_info_get_default_mr_z() ); + libblis_test_fprintf_c( os, " n dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_default_nr_s(), + ( int )bli_info_get_default_nr_d(), + ( int )bli_info_get_default_nr_c(), + ( int )bli_info_get_default_nr_z() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "level-3 register blksz exts s d c z \n" ); - libblis_test_fprintf_c( os, " m dimension %5u %5u %5u %5u\n", - BLIS_EXTEND_MR_S, - BLIS_EXTEND_MR_D, - BLIS_EXTEND_MR_C, - BLIS_EXTEND_MR_Z ); - libblis_test_fprintf_c( os, " n dimension %5u %5u %5u %5u\n", - BLIS_EXTEND_NR_S, - BLIS_EXTEND_NR_D, - BLIS_EXTEND_NR_C, - BLIS_EXTEND_NR_Z ); -/* - libblis_test_fprintf_c( os, "\n" ); - libblis_test_fprintf_c( os, "level-3 incremental packing blocksizes \n" ); - libblis_test_fprintf_c( os, " n dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_NI_S, - BLIS_DEFAULT_NI_D, - BLIS_DEFAULT_NI_C, - BLIS_DEFAULT_NI_Z ); -*/ + libblis_test_fprintf_c( os, " m dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_extend_mr_s(), + ( int )bli_info_get_extend_mr_d(), + ( int )bli_info_get_extend_mr_c(), + ( int )bli_info_get_extend_mr_z() ); + libblis_test_fprintf_c( os, " n dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_extend_nr_s(), + ( int )bli_info_get_extend_nr_d(), + ( int )bli_info_get_extend_nr_c(), + ( int )bli_info_get_extend_nr_z() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "level-2 cache blocksizes s d c z \n" ); - libblis_test_fprintf_c( os, " m dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_L2_MC_S, - BLIS_DEFAULT_L2_MC_D, - BLIS_DEFAULT_L2_MC_C, - BLIS_DEFAULT_L2_MC_Z ); - libblis_test_fprintf_c( os, " n dimension %5u %5u %5u %5u\n", - BLIS_DEFAULT_L2_NC_S, - BLIS_DEFAULT_L2_NC_D, - BLIS_DEFAULT_L2_NC_C, - BLIS_DEFAULT_L2_NC_Z ); + libblis_test_fprintf_c( os, " m dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_default_l2_mc_s(), + ( int )bli_info_get_default_l2_mc_d(), + ( int )bli_info_get_default_l2_mc_c(), + ( int )bli_info_get_default_l2_mc_z() ); + libblis_test_fprintf_c( os, " n dimension %5d %5d %5d %5d\n", + ( int )bli_info_get_default_l2_nc_s(), + ( int )bli_info_get_default_l2_nc_d(), + ( int )bli_info_get_default_l2_nc_c(), + ( int )bli_info_get_default_l2_nc_z() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf_c( os, "level-1f fusing factors s d c z \n" ); - libblis_test_fprintf_c( os, " default %5u %5u %5u %5u\n", - BLIS_L1F_FUSE_FAC_S, - BLIS_L1F_FUSE_FAC_D, - BLIS_L1F_FUSE_FAC_C, - BLIS_L1F_FUSE_FAC_Z ); - libblis_test_fprintf_c( os, " axpyf %5u %5u %5u %5u\n", - BLIS_AXPYF_FUSE_FAC_S, - BLIS_AXPYF_FUSE_FAC_D, - BLIS_AXPYF_FUSE_FAC_C, - BLIS_AXPYF_FUSE_FAC_Z ); - libblis_test_fprintf_c( os, " dotxf %5u %5u %5u %5u\n", - BLIS_DOTXF_FUSE_FAC_S, - BLIS_DOTXF_FUSE_FAC_D, - BLIS_DOTXF_FUSE_FAC_C, - BLIS_DOTXF_FUSE_FAC_Z ); - libblis_test_fprintf_c( os, " dotxaxpyf %5u %5u %5u %5u\n", - BLIS_DOTXAXPYF_FUSE_FAC_S, - BLIS_DOTXAXPYF_FUSE_FAC_D, - BLIS_DOTXAXPYF_FUSE_FAC_C, - BLIS_DOTXAXPYF_FUSE_FAC_Z ); + libblis_test_fprintf_c( os, " default %5d %5d %5d %5d\n", + ( int )bli_info_get_default_l1f_fuse_fac_s(), + ( int )bli_info_get_default_l1f_fuse_fac_d(), + ( int )bli_info_get_default_l1f_fuse_fac_c(), + ( int )bli_info_get_default_l1f_fuse_fac_z() ); + libblis_test_fprintf_c( os, " axpyf %5d %5d %5d %5d\n", + ( int )bli_info_get_axpyf_fuse_fac_s(), + ( int )bli_info_get_axpyf_fuse_fac_d(), + ( int )bli_info_get_axpyf_fuse_fac_c(), + ( int )bli_info_get_axpyf_fuse_fac_z() ); + libblis_test_fprintf_c( os, " dotxf %5d %5d %5d %5d\n", + ( int )bli_info_get_dotxf_fuse_fac_s(), + ( int )bli_info_get_dotxf_fuse_fac_d(), + ( int )bli_info_get_dotxf_fuse_fac_c(), + ( int )bli_info_get_dotxf_fuse_fac_z() ); + libblis_test_fprintf_c( os, " dotxaxpyf %5d %5d %5d %5d\n", + ( int )bli_info_get_dotxaxpyf_fuse_fac_s(), + ( int )bli_info_get_dotxaxpyf_fuse_fac_d(), + ( int )bli_info_get_dotxaxpyf_fuse_fac_c(), + ( int )bli_info_get_dotxaxpyf_fuse_fac_z() ); libblis_test_fprintf_c( os, "\n" ); libblis_test_fprintf( os, "\n" ); From 570a154581bdb353fa13a219c7cb3c81d3dceffd Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Sat, 12 Jul 2014 17:51:05 -0500 Subject: [PATCH 06/19] Comment/formatting updates to build scripts. Details: - Minor updates to comments and formatting in bump-version.sh and update-version-file.sh scripts. --- build/bump-version.sh | 14 +++++++++----- build/update-version-file.sh | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/build/bump-version.sh b/build/bump-version.sh index 4b0fece2f..4ef897699 100755 --- a/build/bump-version.sh +++ b/build/bump-version.sh @@ -53,7 +53,14 @@ print_usage() echo " Field G. Van Zee" echo " " echo " Performs a series of actions needed when incrementing (bumping) the" - echo " BLIS version number." + echo " BLIS version number:" + echo " 1. Overwrite the version file with the version string passed" + echo " into this script (new_vers)." + echo " 2. Commit the updated version file." + echo " 3. Create a new tag (named the same as new_vers) which refers to" + echo " the commit created in (2)." + echo " 4. Update the CHANGELOG file." + echo " 5. Commit the updated CHANGELOG file." echo " " echo " Usage:" echo " ${script_name} [options] new_vers" @@ -148,9 +155,8 @@ main() echo "${script_name}: found '${gitdir}' directory; assuming git clone." - #echo "${script_name}: executing: git describe --always." git_commit_str=$(git describe --always) - echo "${script_name}: starting commit: ${git_commit_str}." + echo "${script_name}: initial commit: ${git_commit_str}." echo "${script_name}: updating version file '${version_file}'." if [ -z "$dry_run_flag" ]; then @@ -162,7 +168,6 @@ main() git commit -m "Version file update (${new_version_str})" ${version_file} fi - #echo "${script_name}: executing: git describe --always." git_commit_str=$(git describe --always) echo "${script_name}: commit to be tagged: ${git_commit_str}." @@ -181,7 +186,6 @@ main() git commit -m "CHANGELOG update (${new_version_str})" ${changelog_file} fi - #echo "${script_name}: executing: git describe --always." git_commit_str=$(git describe --always) echo "${script_name}: latest commit: ${git_commit_str}." diff --git a/build/update-version-file.sh b/build/update-version-file.sh index e432929ef..dda44e34d 100755 --- a/build/update-version-file.sh +++ b/build/update-version-file.sh @@ -145,7 +145,7 @@ main() echo "${script_name}: found '${gitdir}' directory; assuming git clone." - echo "${script_name}: executing git describe --tags." + echo "${script_name}: executing: git describe --tags." # Query git for the version string, which is simply the current tag, # followed by a number signifying how many commits have transpired From 255668ddd1004552c6cc65035ec6486671ce99bb Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Sun, 13 Jul 2014 17:30:44 -0500 Subject: [PATCH 07/19] Inserted gemv beta-scaling bug into compat layer. Details: - BLAS has a peculiar bug (or feature) whereby calling gemv on a vector y of non-zero length and a vector x of zero length results in no action. Given that the operation is y := beta*y + A*x, many (most?) individuals would expect vector y to still be scaled by beta. BLIS, when called natively, handles these cases intuitively (with beta scaling). Unfortunately, many BLAS test suites actually check for the way this situation is handled. Therefore, we have decided to implement this "bug" in the compatibility layer so as to provide "bug-for-bug" compatibility with BLAS. --- frame/compat/bla_gemv.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/frame/compat/bla_gemv.c b/frame/compat/bla_gemv.c index 5221bee37..5dd5ca275 100644 --- a/frame/compat/bla_gemv.c +++ b/frame/compat/bla_gemv.c @@ -85,6 +85,24 @@ void PASTEF77(ch,blasname)( \ /* Determine the dimensions of x and y so we can adjust the increments, if necessary.*/ \ bli_set_dims_with_trans( blis_transa, m0, n0, m_y, n_x ); \ +\ + /* BLAS handles cases where trans(A) has no columns, and x has no elements, + in a peculiar way. In these situations, BLAS returns without performing + any action, even though most sane interpretations of gemv would have the + the operation reduce to y := beta * y. Here, we catch those cases that + BLAS would normally mishandle and emulate the BLAS exactly so as to + provide "bug-for-bug" compatibility. Note that this extreme level of + compatibility would not be as much of an issue if it weren't for the + fact that some BLAS test suites actually test for these cases. Also, it + should be emphasized that BLIS, if called natively, does NOT exhibit + this quirky behavior; it will scale y by beta, as one would expect. */ \ + if ( m_y > 0 && n_x == 0 ) \ + { \ + /* Finalize BLIS (if it was initialized above). */ \ + bli_finalize_safe( init_result ); \ +\ + return; \ + } \ \ /* If the input increments are negative, adjust the pointers so we can use positive increments instead. */ \ From 6a515e988f2ae1628258a6dec2c0e9cf2d04790f Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Sun, 13 Jul 2014 17:38:33 -0500 Subject: [PATCH 08/19] Implemented dsdot() and sdsdot() in compat layer. Details: - Replaced "not yet implemented" error messages in dsdot() and sdsdot() with actual implementations. (These routines are so rarely used that this log message will probably lead to some people learning of their existence for the first time.) --- frame/compat/bla_dot.c | 40 +++++++++++++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/frame/compat/bla_dot.c b/frame/compat/bla_dot.c index e58bee5d7..440a63f97 100644 --- a/frame/compat/bla_dot.c +++ b/frame/compat/bla_dot.c @@ -93,9 +93,9 @@ float PASTEF77(sd,sdot)( f77_int* n, float* y, f77_int* incy ) { - bli_check_error_code( BLIS_NOT_YET_IMPLEMENTED ); - - return 0.0F; + return ( float )PASTEF77(d,sdot)( n, + x, incx, + y, incy ); } // Input vectors stored in single precision, computed in double precision, @@ -105,9 +105,39 @@ double PASTEF77(d,sdot)( f77_int* n, float* y, f77_int* incy ) { - bli_check_error_code( BLIS_NOT_YET_IMPLEMENTED ); + dim_t n0; + float* x0; + float* y0; + inc_t incx0; + inc_t incy0; + double rho; + dim_t i; - return 0.0; + /* Initialization of BLIS is not required. */ + + /* Convert/typecast negative values of n to zero. */ + bli_convert_blas_dim1( *n, n0 ); + + /* If the input increments are negative, adjust the pointers so we can + use positive increments instead. */ + bli_convert_blas_incv( n0, x, *incx, x0, incx0 ); + bli_convert_blas_incv( n0, y, *incy, y0, incy0 ); + + rho = 0.0; + + for ( i = 0; i < n0; i++ ) + { + float* chi1 = x0 + (i )*incx0; + float* psi1 = y0 + (i )*incy0; + + bli_ddots( (( double )(*chi1)), + (( double )(*psi1)), rho ); + } + + /* Finalization of BLIS is not required, because initialization was + not required. */ + + return rho; } #endif From 20690fe3018ce17c8df61ce0bffecaa7911dc3a5 Mon Sep 17 00:00:00 2001 From: Marat Dukhan Date: Sun, 13 Jul 2014 22:50:56 -0700 Subject: [PATCH 09/19] Emscripten port --- .gitignore | 5 +- Makefile | 33 +++++- config/emscripten/bli_config.h | 165 ++++++++++++++++++++++++++ config/emscripten/bli_kernel.h | 210 +++++++++++++++++++++++++++++++++ config/emscripten/make_defs.mk | 111 +++++++++++++++++ 5 files changed, 521 insertions(+), 3 deletions(-) create mode 100644 config/emscripten/bli_config.h create mode 100644 config/emscripten/bli_kernel.h create mode 100644 config/emscripten/make_defs.mk diff --git a/.gitignore b/.gitignore index 153b3cc13..b11c60676 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,9 @@ *.x *.pexe *.nexe +*.js +# link map files +*.map # -- build system files -- @@ -33,4 +36,4 @@ config.mk # -- misc. -- - +output.testsuite diff --git a/Makefile b/Makefile index 97648b48d..c940d99a4 100644 --- a/Makefile +++ b/Makefile @@ -402,9 +402,14 @@ MK_TESTSUITE_BIN_PNACL := $(BASE_OBJ_TESTSUITE_PATH)/test_libblis.pexe # Translated executable (for x86-64) TESTSUITE_BIN := test_libblis.x86-64.nexe else +ifeq ($(CONFIG_NAME),emscripten) +# JS script name. +TESTSUITE_BIN := test_libblis.js +else # Binary executable name. TESTSUITE_BIN := test_libblis.x -endif +endif # emscripten +endif # pnacl @@ -565,6 +570,20 @@ endif else # Non-PNaCl case +ifeq ($(CONFIG_NAME),emscripten) +# Generate JavaScript and embed testsuite resources normally +$(TESTSUITE_BIN): $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) $(TESTSUITE_CONF_GEN_PATH) $(TESTSUITE_CONF_OPS_PATH) +ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) + $(LINKER) $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) $(LDFLAGS) -o $@ \ + --embed-file $(TESTSUITE_CONF_GEN_PATH)@input.general \ + --embed-file $(TESTSUITE_CONF_OPS_PATH)@input.operations +else + @echo "Linking $@ against '$(MK_BLIS_LIB) $(LDFLAGS)'" + @$(LINKER) $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) $(LDFLAGS) -o $@ \ + --embed-file $(TESTSUITE_CONF_GEN_PATH)@input.general \ + --embed-file $(TESTSUITE_CONF_OPS_PATH)@input.operations +endif +else # Link executable normally $(TESTSUITE_BIN): $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) @@ -573,6 +592,7 @@ else @echo "Linking $@ against '$(MK_BLIS_LIB) $(LDFLAGS)'" @$(LINKER) $(MK_TESTSUITE_OBJS) $(MK_BLIS_LIB) $(LDFLAGS) -o $@ endif +endif endif @@ -593,6 +613,14 @@ else > $(TESTSUITE_OUT_FILE) endif else +ifeq ($(CONFIG_NAME),emscripten) +ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) + $(JSINT) $(TESTSUITE_BIN) +else + @echo "Running $(TESTSUITE_BIN)" + @$(JSINT) $(TESTSUITE_BIN) +endif +else ifeq ($(BLIS_ENABLE_VERBOSE_MAKE_OUTPUT),yes) ./$(TESTSUITE_BIN) -g $(TESTSUITE_CONF_GEN_PATH) \ -o $(TESTSUITE_CONF_OPS_PATH) \ @@ -603,7 +631,8 @@ else -o $(TESTSUITE_CONF_OPS_PATH) \ > $(TESTSUITE_OUT_FILE) endif -endif +endif # emscripten +endif # pnacl # --- Install rules --- diff --git a/config/emscripten/bli_config.h b/config/emscripten/bli_config.h new file mode 100644 index 000000000..f6be2e573 --- /dev/null +++ b/config/emscripten/bli_config.h @@ -0,0 +1,165 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +#ifndef BLIS_CONFIG_H +#define BLIS_CONFIG_H + + +// -- OPERATING SYSTEM --------------------------------------------------------- + + + +// -- INTEGER PROPERTIES ------------------------------------------------------- + +// The bit size of the integer type used to track values such as dimensions, +// strides, diagonal offsets. A value of 32 results in BLIS using 32-bit signed +// integers while 64 results in 64-bit integers. Any other value results in use +// of the C99 type "long int". Note that this ONLY affects integers used +// internally within BLIS as well as those exposed in the native BLAS-like BLIS +// interface. +#define BLIS_INT_TYPE_SIZE 32 + + + +// -- FLOATING-POINT PROPERTIES ------------------------------------------------ + +// Define the number of floating-point types supported, and the size of the +// largest type. +#define BLIS_NUM_FP_TYPES 4 +#define BLIS_MAX_TYPE_SIZE sizeof(dcomplex) + +// Enable use of built-in C99 "float complex" and "double complex" types and +// associated overloaded operations and functions? Disabling results in +// scomplex and dcomplex being defined in terms of simple structs. +//#define BLIS_ENABLE_C99_COMPLEX + + + +// -- MULTITHREADING ----------------------------------------------------------- + +// The maximum number of BLIS threads that will run concurrently. +#define BLIS_MAX_NUM_THREADS 1 + + + +// -- MEMORY ALLOCATION -------------------------------------------------------- + +// -- Contiguous (static) memory allocator -- + +// The number of MC x KC, KC x NC, and MC x NC blocks to reserve in the +// contiguous memory pools. +#define BLIS_NUM_MC_X_KC_BLOCKS BLIS_MAX_NUM_THREADS +#define BLIS_NUM_KC_X_NC_BLOCKS BLIS_MAX_NUM_THREADS +#define BLIS_NUM_MC_X_NC_BLOCKS 0 + +// The maximum preload byte offset is used to pad the end of the contiguous +// memory pools so that the micro-kernel, when computing with the end of the +// last block, can exceed the bounds of the usable portion of the memory +// region without causing a segmentation fault. +#define BLIS_MAX_PRELOAD_BYTE_OFFSET 128 + +// -- Memory alignment -- + +// It is sometimes useful to define the various memory alignments in terms +// of some other characteristics of the system, such as the cache line size +// and the page size. +#define BLIS_CACHE_LINE_SIZE 64 +#define BLIS_PAGE_SIZE 4096 + +// Alignment size needed by the instruction set for aligned SIMD/vector +// instructions. +#define BLIS_SIMD_ALIGN_SIZE 16 + +// Alignment size used to align local stack buffers within macro-kernel +// functions. +#define BLIS_STACK_BUF_ALIGN_SIZE BLIS_SIMD_ALIGN_SIZE + +// Alignment size used when allocating memory dynamically from the operating +// system (eg: posix_memalign()). To disable heap alignment and just use +// malloc() instead, set this to 1. +#define BLIS_HEAP_ADDR_ALIGN_SIZE BLIS_SIMD_ALIGN_SIZE + +// Alignment size used when sizing leading dimensions of dynamically +// allocated memory. +#define BLIS_HEAP_STRIDE_ALIGN_SIZE BLIS_CACHE_LINE_SIZE + +// Alignment size used when allocating entire blocks of contiguous memory +// from the contiguous memory allocator. +#define BLIS_CONTIG_ADDR_ALIGN_SIZE BLIS_PAGE_SIZE + + + +// -- MIXED DATATYPE SUPPORT --------------------------------------------------- + +// Basic (homogeneous) datatype support always enabled. + +// Enable mixed domain operations? +//#define BLIS_ENABLE_MIXED_DOMAIN_SUPPORT + +// Enable extra mixed precision operations? +//#define BLIS_ENABLE_MIXED_PRECISION_SUPPORT + + + +// -- MISCELLANEOUS OPTIONS ---------------------------------------------------- + +// Stay initialized after auto-initialization, unless and until the user +// explicitly calls bli_finalize(). +#define BLIS_ENABLE_STAY_AUTO_INITIALIZED + + + +// -- BLAS-to-BLIS COMPATIBILITY LAYER ----------------------------------------- + +// Enable the BLAS compatibility layer? +#define BLIS_ENABLE_BLAS2BLIS + +// The bit size of the integer type used to track values such as dimensions and +// leading dimensions (ie: column strides) within the BLAS compatibility layer. +// A value of 32 results in the compatibility layer using 32-bit signed integers +// while 64 results in 64-bit integers. Any other value results in use of the +// C99 type "long int". Note that this ONLY affects integers used within the +// BLAS compatibility layer. +#define BLIS_BLAS2BLIS_INT_TYPE_SIZE 32 + +// Fortran-77 name-mangling macros. +#define PASTEF770(name) name ## _ +#define PASTEF77(ch1,name) ch1 ## name ## _ +#define PASTEF772(ch1,ch2,name) ch1 ## ch2 ## name ## _ + + + + +#endif + diff --git a/config/emscripten/bli_kernel.h b/config/emscripten/bli_kernel.h new file mode 100644 index 000000000..64ac9d962 --- /dev/null +++ b/config/emscripten/bli_kernel.h @@ -0,0 +1,210 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +#ifndef BLIS_KERNEL_H +#define BLIS_KERNEL_H + +/* Use the same parameters as non-SIMD PNaCl */ + +// -- LEVEL-3 MICRO-KERNEL CONSTANTS ------------------------------------------- + +// -- Cache blocksizes -- + +// +// Constraints: +// +// (1) MC must be a multiple of: +// (a) MR (for zero-padding purposes) +// (b) NR (for zero-padding purposes when MR and NR are "swapped") +// (2) NC must be a multiple of +// (a) NR (for zero-padding purposes) +// (b) MR (for zero-padding purposes when MR and NR are "swapped") +// (3) KC must be a multiple of +// (a) MR and +// (b) NR (for triangular operations such as trmm and trsm). +// + +#define BLIS_DEFAULT_MC_S 252 +#define BLIS_DEFAULT_KC_S 264 +#define BLIS_DEFAULT_NC_S 8196 + +#define BLIS_DEFAULT_MC_D 1080 +#define BLIS_DEFAULT_KC_D 120 +#define BLIS_DEFAULT_NC_D 8400 + +#define BLIS_DEFAULT_MC_C 120 +#define BLIS_DEFAULT_KC_C 264 +#define BLIS_DEFAULT_NC_C 4092 + +#define BLIS_DEFAULT_MC_Z 60 +#define BLIS_DEFAULT_KC_Z 264 +#define BLIS_DEFAULT_NC_Z 2040 + +// -- Register blocksizes -- + +#define BLIS_DEFAULT_MR_S 4 +#define BLIS_DEFAULT_NR_S 3 + +#define BLIS_DEFAULT_MR_D 4 +#define BLIS_DEFAULT_NR_D 3 + +#define BLIS_DEFAULT_MR_C 2 +#define BLIS_DEFAULT_NR_C 3 + +#define BLIS_DEFAULT_MR_Z 2 +#define BLIS_DEFAULT_NR_Z 3 + +// NOTE: If the micro-kernel, which is typically unrolled to a factor +// of f, handles leftover edge cases (ie: when k % f > 0) then these +// register blocksizes in the k dimension can be defined to 1. + +//#define BLIS_DEFAULT_KR_S 1 +//#define BLIS_DEFAULT_KR_D 1 +//#define BLIS_DEFAULT_KR_C 1 +//#define BLIS_DEFAULT_KR_Z 1 + +// -- Cache blocksize extensions (for optimizing edge cases) -- + +// NOTE: These cache blocksize "extensions" have the same constraints as +// the corresponding default blocksizes above. When these values are +// non-zero, blocksizes used at edge cases are extended (enlarged) if +// such an extension would encompass the remaining portion of the +// matrix dimension. + +//#define BLIS_EXTEND_MC_S 0 //(BLIS_DEFAULT_MC_S/4) +//#define BLIS_EXTEND_KC_S 0 //(BLIS_DEFAULT_KC_S/4) +//#define BLIS_EXTEND_NC_S 0 //(BLIS_DEFAULT_NC_S/4) + +//#define BLIS_EXTEND_MC_D 0 //(BLIS_DEFAULT_MC_D/4) +//#define BLIS_EXTEND_KC_D 0 //(BLIS_DEFAULT_KC_D/4) +//#define BLIS_EXTEND_NC_D 0 //(BLIS_DEFAULT_NC_D/4) + +//#define BLIS_EXTEND_MC_C 0 //(BLIS_DEFAULT_MC_C/4) +//#define BLIS_EXTEND_KC_C 0 //(BLIS_DEFAULT_KC_C/4) +//#define BLIS_EXTEND_NC_C 0 //(BLIS_DEFAULT_NC_C/4) + +//#define BLIS_EXTEND_MC_Z 0 //(BLIS_DEFAULT_MC_Z/4) +//#define BLIS_EXTEND_KC_Z 0 //(BLIS_DEFAULT_KC_Z/4) +//#define BLIS_EXTEND_NC_Z 0 //(BLIS_DEFAULT_NC_Z/4) + +// -- Register blocksize extensions (for packed micro-panels) -- + +// NOTE: These register blocksize "extensions" determine whether the +// leading dimensions used within the packed micro-panels are equal to +// or greater than their corresponding register blocksizes above. + +//#define BLIS_EXTEND_MR_S 0 +//#define BLIS_EXTEND_NR_S 0 + +//#define BLIS_EXTEND_MR_D 0 +//#define BLIS_EXTEND_NR_D 0 + +//#define BLIS_EXTEND_MR_C 0 +//#define BLIS_EXTEND_NR_C 0 + +//#define BLIS_EXTEND_MR_Z 0 +//#define BLIS_EXTEND_NR_Z 0 + + + +// -- LEVEL-2 KERNEL CONSTANTS ------------------------------------------------- + + + + +// -- LEVEL-1F KERNEL CONSTANTS ------------------------------------------------ + + + + +// -- LEVEL-3 KERNEL DEFINITIONS ----------------------------------------------- + +// -- gemm -- + +// -- trsm-related -- + + + + +// -- LEVEL-1M KERNEL DEFINITIONS ---------------------------------------------- + +// -- packm -- + +// -- unpackm -- + + + + +// -- LEVEL-1F KERNEL DEFINITIONS ---------------------------------------------- + +// -- axpy2v -- + +// -- dotaxpyv -- + +// -- axpyf -- + +// -- dotxf -- + +// -- dotxaxpyf -- + + + + +// -- LEVEL-1V KERNEL DEFINITIONS ---------------------------------------------- + +// -- addv -- + +// -- axpyv -- + +// -- copyv -- + +// -- dotv -- + +// -- dotxv -- + +// -- invertv -- + +// -- scal2v -- + +// -- scalv -- + +// -- setv -- + +// -- subv -- + +// -- swapv -- + + + +#endif diff --git a/config/emscripten/make_defs.mk b/config/emscripten/make_defs.mk new file mode 100644 index 000000000..aef9489a1 --- /dev/null +++ b/config/emscripten/make_defs.mk @@ -0,0 +1,111 @@ +#!/bin/bash +# +# BLIS +# An object-based framework for developing high-performance BLAS-like +# libraries. +# +# Copyright (C) 2014, The University of Texas +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# - Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# - Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# - Neither the name of The University of Texas nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# + +# Only include this block of code once. +ifndef MAKE_DEFS_MK_INCLUDED +MAKE_DEFS_MK_INCLUDED := yes + + + +# +# --- Build definitions -------------------------------------------------------- +# + +# Variables corresponding to other configure-time options. +BLIS_ENABLE_VERBOSE_MAKE_OUTPUT := no +BLIS_ENABLE_STATIC_BUILD := yes +BLIS_ENABLE_DYNAMIC_BUILD := no + + + +# +# --- Utility program definitions ---------------------------------------------- +# + +SH := /bin/sh +MV := mv +MKDIR := mkdir -p +RM_F := rm -f +RM_RF := rm -rf +SYMLINK := ln -sf +FIND := find +GREP := grep +XARGS := xargs +RANLIB := emranlib +INSTALL := install -c + +# Used to refresh CHANGELOG. +GIT := git +GIT_LOG := $(GIT) log --decorate + + + +# +# --- Development tools definitions -------------------------------------------- +# + +# --- Determine the C compiler and related flags --- +CC := emcc +# Enable IEEE Standard 1003.1-2004 (POSIX.1d). +# NOTE: This is needed to enable posix_memalign(). +CPPROCFLAGS := -D_POSIX_C_SOURCE=200112L +CMISCFLAGS := -std=c99 +CPICFLAGS := -fPIC +CDBGFLAGS := #-g4 +CWARNFLAGS := -Wall +COPTFLAGS := -O2 +CKOPTFLAGS := -O3 +CVECFLAGS := + +# Aggregate all of the flags into multiple groups: one for standard +# compilation, and one for each of the supported "special" compilation +# modes. +CFLAGS := $(CDBGFLAGS) $(COPTFLAGS) $(CVECFLAGS) $(CWARNFLAGS) $(CPICFLAGS) $(CMISCFLAGS) $(CPPROCFLAGS) +CFLAGS_KERNELS := $(CDBGFLAGS) $(CKOPTFLAGS) $(CVECFLAGS) $(CWARNFLAGS) $(CPICFLAGS) $(CMISCFLAGS) $(CPPROCFLAGS) +CFLAGS_NOOPT := $(CDBGFLAGS) $(CWARNFLAGS) $(CPICFLAGS) $(CMISCFLAGS) $(CPPROCFLAGS) + +# --- Determine the archiver and related flags --- +AR := emar +ARFLAGS := cru + +# --- Determine the linker and related flags --- +LINKER := $(CC) +SOFLAGS := -shared +LDFLAGS := -O3 -s TOTAL_MEMORY=67108864 -s FORCE_ALIGNED_MEMORY=1 -s PRECISE_F32=2 -s GC_SUPPORT=0 + +# --- Determine JS interpreter --- +JSINT := node + +# end of ifndef MAKE_DEFS_MK_INCLUDED conditional block +endif From 94c0df797eda377931f29a41ba6a89c0ed58daca Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Mon, 14 Jul 2014 11:24:36 -0500 Subject: [PATCH 10/19] Changed order of zero dim / error checking. Details: - Updated level-2 and level-3 internal back-ends so that the operation's _check() function is called BEFORE any attempt to return early due to the presence of zero dimensions. This ordering makes more sense because (for example) object dimensions should match even if one of them is zero. Previously, a dimension mismatch could result in an early return with no error message. - Updated bli_check_object_buffer() so that NULL buffers result in an error only if the object is dimensionally non-empty (i.e., only if both of the object's dimensions are non-zero). This allows BLIS operations to be performed on dimensionally empty objects (i.e., where at least one dimension is zero). - Updated the error message associated with bli_check_object_buffer() to mention the newly relaxed constraint mentioned above, vis-a-vis non-zero dimensions. --- frame/2/gemv/bli_gemv_int.c | 21 ++++++++++----------- frame/2/ger/bli_ger_int.c | 13 +++++-------- frame/2/hemv/bli_hemv_int.c | 13 ++++++------- frame/2/her/bli_her_int.c | 8 ++++---- frame/2/her2/bli_her2_int.c | 8 ++++---- frame/2/trmv/bli_trmv_int.c | 8 ++++---- frame/2/trsv/bli_trsv_int.c | 8 ++++---- frame/3/gemm/bli_gemm_check.c | 8 +++----- frame/3/gemm/bli_gemm_int.c | 8 ++++---- frame/3/herk/bli_herk_int.c | 8 ++++---- frame/3/trmm/bli_trmm_int.c | 8 ++++---- frame/3/trsm/bli_trsm_int.c | 8 ++++---- frame/base/bli_check.c | 3 +++ frame/base/bli_error.c | 2 +- 14 files changed, 60 insertions(+), 64 deletions(-) diff --git a/frame/2/gemv/bli_gemv_int.c b/frame/2/gemv/bli_gemv_int.c index 66f2e3ab4..16b5515a6 100644 --- a/frame/2/gemv/bli_gemv_int.c +++ b/frame/2/gemv/bli_gemv_int.c @@ -66,17 +66,6 @@ void bli_gemv_int( trans_t transa, obj_t a_local; obj_t x_local; - // If y has a zero dimension, return early. - if ( bli_obj_has_zero_dim( *y ) ) return; - - // If A or x has a zero dimension, scale y by beta and return early. - if ( bli_obj_has_zero_dim( *a ) || - bli_obj_has_zero_dim( *x ) ) - { - bli_scalm( beta, y ); - return; - } - // Apply the trans and/or conj parameters to aliases of the objects. bli_obj_alias_with_trans( transa, *a, a_local ); bli_obj_alias_with_conj( conjx, *x, x_local ); @@ -86,6 +75,16 @@ void bli_gemv_int( trans_t transa, if ( bli_error_checking_is_enabled() ) bli_gemv_int_check( alpha, &a_local, &x_local, beta, y, cntl ); + // If y has a zero dimension, return early. + if ( bli_obj_has_zero_dim( *y ) ) return; + + // If x has a zero dimension, scale y by beta and return early. + if ( bli_obj_has_zero_dim( *x ) ) + { + bli_scalm( beta, y ); + return; + } + // Extract the variant number and implementation type. n = cntl_var_num( cntl ); i = cntl_impl_type( cntl ); diff --git a/frame/2/ger/bli_ger_int.c b/frame/2/ger/bli_ger_int.c index 6a7b3190f..ebbed2b2f 100644 --- a/frame/2/ger/bli_ger_int.c +++ b/frame/2/ger/bli_ger_int.c @@ -67,19 +67,16 @@ void bli_ger_int( conj_t conjx, obj_t y_local; obj_t a_local; + // Check parameters. + if ( bli_error_checking_is_enabled() ) + bli_ger_int_check( alpha, x, y, a, cntl ); + // If A has a zero dimension, return early. if ( bli_obj_has_zero_dim( *a ) ) return; // If x or y has a zero dimension, return early. if ( bli_obj_has_zero_dim( *x ) || - bli_obj_has_zero_dim( *y ) ) - { - return; - } - - // Check parameters. - if ( bli_error_checking_is_enabled() ) - bli_ger_int_check( alpha, x, y, a, cntl ); + bli_obj_has_zero_dim( *y ) ) return; // Alias the objects, applying conjx and conjy to x and y, respectively. bli_obj_alias_with_conj( conjx, *x, x_local ); diff --git a/frame/2/hemv/bli_hemv_int.c b/frame/2/hemv/bli_hemv_int.c index c2a46f387..3eea28a85 100644 --- a/frame/2/hemv/bli_hemv_int.c +++ b/frame/2/hemv/bli_hemv_int.c @@ -66,21 +66,20 @@ void bli_hemv_int( conj_t conjh, FUNCPTR_T f; obj_t a_local; + // Check parameters. + if ( bli_error_checking_is_enabled() ) + bli_hemv_int_check( conjh, alpha, a, x, beta, y, cntl ); + // If y has a zero dimension, return early. if ( bli_obj_has_zero_dim( *y ) ) return; - // If A or x has a zero dimension, scale y by beta and return early. - if ( bli_obj_has_zero_dim( *a ) || - bli_obj_has_zero_dim( *x ) ) + // If x has a zero dimension, scale y by beta and return early. + if ( bli_obj_has_zero_dim( *x ) ) { bli_scalm( beta, y ); return; } - // Check parameters. - if ( bli_error_checking_is_enabled() ) - bli_hemv_int_check( conjh, alpha, a, x, beta, y, cntl ); - // Alias A in case we need to induce the upper triangular case. bli_obj_alias_to( *a, a_local ); diff --git a/frame/2/her/bli_her_int.c b/frame/2/her/bli_her_int.c index 3bb0ff15f..6f13dd64a 100644 --- a/frame/2/her/bli_her_int.c +++ b/frame/2/her/bli_her_int.c @@ -63,14 +63,14 @@ void bli_her_int( conj_t conjh, obj_t x_local; obj_t c_local; - // If C or x has a zero dimension, return early. - if ( bli_obj_has_zero_dim( *c ) ) return; - if ( bli_obj_has_zero_dim( *x ) ) return; - // Check parameters. if ( bli_error_checking_is_enabled() ) bli_her_int_check( conjh, alpha, x, c, cntl ); + // If C or x has a zero dimension, return early. + if ( bli_obj_has_zero_dim( *c ) ) return; + if ( bli_obj_has_zero_dim( *x ) ) return; + // Alias the operands in case we need to apply conjugations. bli_obj_alias_to( *x, x_local ); bli_obj_alias_to( *c, c_local ); diff --git a/frame/2/her2/bli_her2_int.c b/frame/2/her2/bli_her2_int.c index d80d05eb1..efb5dc1ab 100644 --- a/frame/2/her2/bli_her2_int.c +++ b/frame/2/her2/bli_her2_int.c @@ -70,15 +70,15 @@ void bli_her2_int( conj_t conjh, obj_t y_local; obj_t c_local; + // Check parameters. + if ( bli_error_checking_is_enabled() ) + bli_her2_int_check( conjh, alpha, x, y, c, cntl ); + // If C, x, or y has a zero dimension, return early. if ( bli_obj_has_zero_dim( *c ) ) return; if ( bli_obj_has_zero_dim( *x ) ) return; if ( bli_obj_has_zero_dim( *y ) ) return; - // Check parameters. - if ( bli_error_checking_is_enabled() ) - bli_her2_int_check( conjh, alpha, x, y, c, cntl ); - // Alias the operands in case we need to apply conjugations. bli_obj_alias_to( *x, x_local ); bli_obj_alias_to( *y, y_local ); diff --git a/frame/2/trmv/bli_trmv_int.c b/frame/2/trmv/bli_trmv_int.c index 758986b01..11ff3deed 100644 --- a/frame/2/trmv/bli_trmv_int.c +++ b/frame/2/trmv/bli_trmv_int.c @@ -70,14 +70,14 @@ void bli_trmv_int( obj_t* alpha, FUNCPTR_T f; obj_t a_local; - // If A or x has a zero dimension, return early. - if ( bli_obj_has_zero_dim( *a ) ) return; - if ( bli_obj_has_zero_dim( *x ) ) return; - // Check parameters. if ( bli_error_checking_is_enabled() ) bli_trmv_int_check( alpha, a, x, cntl ); + // If A or x has a zero dimension, return early. + if ( bli_obj_has_zero_dim( *a ) ) return; + if ( bli_obj_has_zero_dim( *x ) ) return; + // Alias A in case we need to induce a transformation (ie: transposition). bli_obj_alias_to( *a, a_local ); diff --git a/frame/2/trsv/bli_trsv_int.c b/frame/2/trsv/bli_trsv_int.c index 36814e807..e4a0e216a 100644 --- a/frame/2/trsv/bli_trsv_int.c +++ b/frame/2/trsv/bli_trsv_int.c @@ -70,14 +70,14 @@ void bli_trsv_int( obj_t* alpha, FUNCPTR_T f; obj_t a_local; - // If A or x has a zero dimension, return early. - if ( bli_obj_has_zero_dim( *a ) ) return; - if ( bli_obj_has_zero_dim( *x ) ) return; - // Check parameters. if ( bli_error_checking_is_enabled() ) bli_trsv_int_check( alpha, a, x, cntl ); + // If A or x has a zero dimension, return early. + if ( bli_obj_has_zero_dim( *a ) ) return; + if ( bli_obj_has_zero_dim( *x ) ) return; + // Alias A in case we need to induce a transformation (ie: transposition). bli_obj_alias_to( *a, a_local ); diff --git a/frame/3/gemm/bli_gemm_check.c b/frame/3/gemm/bli_gemm_check.c index a8723d9ed..1e8cbab43 100644 --- a/frame/3/gemm/bli_gemm_check.c +++ b/frame/3/gemm/bli_gemm_check.c @@ -81,11 +81,9 @@ void bli_gemm_basic_check( obj_t* alpha, // Check matrix structure. - // We don't enforce general structure in matrix A so we can use gemm to - // implement hemm/symm. Instead, we only check this from the front-end. - - //e_val = bli_check_general_object( b ); - //bli_check_error_code( e_val ); + // We don't enforce general structure in matrices A or B so we can use + // gemm to implement hemm/symm. Instead, we only check this from the + // front-end. e_val = bli_check_general_object( c ); bli_check_error_code( e_val ); diff --git a/frame/3/gemm/bli_gemm_int.c b/frame/3/gemm/bli_gemm_int.c index d2cc838e1..5f59c43c8 100644 --- a/frame/3/gemm/bli_gemm_int.c +++ b/frame/3/gemm/bli_gemm_int.c @@ -68,6 +68,10 @@ void bli_gemm_int( obj_t* alpha, impl_t i; FUNCPTR_T f; + // Check parameters. + if ( bli_error_checking_is_enabled() ) + bli_gemm_int_check( alpha, a, b, beta, c, cntl ); + // If C has a zero dimension, return early. if ( bli_obj_has_zero_dim( *c ) ) return; @@ -81,10 +85,6 @@ void bli_gemm_int( obj_t* alpha, return; } - // Check parameters. - if ( bli_error_checking_is_enabled() ) - bli_gemm_int_check( alpha, a, b, beta, c, cntl ); - // If A or B is marked as being filled with zeros, scale C by beta and // return early. if ( bli_obj_is_zeros( *a ) || diff --git a/frame/3/herk/bli_herk_int.c b/frame/3/herk/bli_herk_int.c index bdd869093..f604a55c6 100644 --- a/frame/3/herk/bli_herk_int.c +++ b/frame/3/herk/bli_herk_int.c @@ -78,6 +78,10 @@ void bli_herk_int( obj_t* alpha, bool_t uplo; FUNCPTR_T f; + // Check parameters. + if ( bli_error_checking_is_enabled() ) + bli_herk_int_check( alpha, a, ah, beta, c, cntl ); + // If C has a zero dimension, return early. if ( bli_obj_has_zero_dim( *c ) ) return; @@ -91,10 +95,6 @@ void bli_herk_int( obj_t* alpha, return; } - // Check parameters. - if ( bli_error_checking_is_enabled() ) - bli_herk_int_check( alpha, a, ah, beta, c, cntl ); - // Alias A and A' in case we need to update attached scalars. bli_obj_alias_to( *a, a_local ); bli_obj_alias_to( *ah, ah_local ); diff --git a/frame/3/trmm/bli_trmm_int.c b/frame/3/trmm/bli_trmm_int.c index 6e65db401..038348dd7 100644 --- a/frame/3/trmm/bli_trmm_int.c +++ b/frame/3/trmm/bli_trmm_int.c @@ -100,6 +100,10 @@ void bli_trmm_int( obj_t* alpha, impl_t i; FUNCPTR_T f; + // Check parameters. + if ( bli_error_checking_is_enabled() ) + bli_trmm_int_check( alpha, a, b, beta, c, cntl ); + // If C has a zero dimension, return early. if ( bli_obj_has_zero_dim( *c ) ) return; @@ -113,10 +117,6 @@ void bli_trmm_int( obj_t* alpha, return; } - // Check parameters. - if ( bli_error_checking_is_enabled() ) - bli_trmm_int_check( alpha, a, b, beta, c, cntl ); - // Alias A and B in case we need to update attached scalars. bli_obj_alias_to( *a, a_local ); bli_obj_alias_to( *b, b_local ); diff --git a/frame/3/trsm/bli_trsm_int.c b/frame/3/trsm/bli_trsm_int.c index 4377b97ce..6644b3512 100644 --- a/frame/3/trsm/bli_trsm_int.c +++ b/frame/3/trsm/bli_trsm_int.c @@ -100,6 +100,10 @@ void bli_trsm_int( obj_t* alpha, impl_t i; FUNCPTR_T f; + // Check parameters. + if ( bli_error_checking_is_enabled() ) + bli_trsm_int_check( alpha, a, b, beta, c, cntl ); + // If C has a zero dimension, return early. if ( bli_obj_has_zero_dim( *c ) ) return; @@ -113,10 +117,6 @@ void bli_trsm_int( obj_t* alpha, return; } - // Check parameters. - if ( bli_error_checking_is_enabled() ) - bli_trsm_int_check( alpha, a, b, beta, c, cntl ); - // Alias A and B in case we need to update attached scalars. bli_obj_alias_to( *a, a_local ); bli_obj_alias_to( *b, b_local ); diff --git a/frame/base/bli_check.c b/frame/base/bli_check.c index 513b40a9c..67c2b26f4 100644 --- a/frame/base/bli_check.c +++ b/frame/base/bli_check.c @@ -718,7 +718,10 @@ err_t bli_check_object_buffer( obj_t* a ) { err_t e_val = BLIS_SUCCESS; + // We are only concerned with NULL buffers in objects where BOTH + // dimensions are non-zero. if ( bli_obj_buffer( *a ) == NULL ) + if ( bli_obj_length( *a ) > 0 && bli_obj_width( *a ) > 0 ) e_val = BLIS_EXPECTED_NONNULL_OBJECT_BUFFER; return e_val; diff --git a/frame/base/bli_error.c b/frame/base/bli_error.c index 9b285afe7..d5ec72e20 100644 --- a/frame/base/bli_error.c +++ b/frame/base/bli_error.c @@ -183,7 +183,7 @@ void bli_error_msgs_init( void ) "Pack schema not yet supported/implemented for use with unpacking." ); sprintf( bli_error_string_for_code(BLIS_EXPECTED_NONNULL_OBJECT_BUFFER), - "Encountered object containing unexpected null buffer." ); + "Encountered object with non-zero dimensions containing null buffer." ); sprintf( bli_error_string_for_code(BLIS_INVALID_PACKBUF), "Invalid packbuf_t value." ); From 5c2c6c85616834ff2716ece083118201d9df6dde Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Mon, 14 Jul 2014 16:05:03 -0500 Subject: [PATCH 11/19] Updated copyright headers to contain "at Austin". Details: - Updated copyright headers to include "at Austin" in the name of the University of Texas. - Updated the copyright years of a few headers to 2014 (from 2011 and 2012). --- LICENSE | 2 +- Makefile | 2 +- build/bump-version.sh | 2 +- build/config.mk.in | 2 +- build/gen-make-frags/fragment.mk | 2 +- build/gen-make-frags/gen-make-frag.sh | 2 +- build/mirror-tree.sh | 2 +- build/templates/license.c | 2 +- build/templates/license.h | 2 +- build/templates/license.sh | 2 +- build/update-version-file.sh | 2 +- config/armv7a/bli_config.h | 2 +- config/armv7a/bli_kernel.h | 2 +- config/armv7a/make_defs.mk | 2 +- config/bgq/bli_config.h | 2 +- config/bgq/bli_kernel.h | 2 +- config/bgq/make_defs.mk | 2 +- config/cortex-a15/bli_config.h | 2 +- config/cortex-a15/bli_kernel.h | 2 +- config/cortex-a15/make_defs.mk | 2 +- config/cortex-a9/bli_config.h | 2 +- config/cortex-a9/bli_kernel.h | 2 +- config/cortex-a9/make_defs.mk | 2 +- config/dunnington/bli_config.h | 2 +- config/dunnington/bli_kernel.h | 2 +- config/dunnington/make_defs.mk | 2 +- config/loongson3a/bli_config.h | 2 +- config/loongson3a/bli_kernel.h | 2 +- config/loongson3a/make_defs.mk | 2 +- config/mic/bli_config.h | 2 +- config/mic/bli_kernel.h | 2 +- config/mic/make_defs.mk | 2 +- config/piledriver/bli_config.h | 2 +- config/piledriver/bli_kernel.h | 2 +- config/piledriver/make_defs.mk | 2 +- config/pnacl/bli_config.h | 2 +- config/pnacl/bli_kernel.h | 2 +- config/pnacl/make_defs.mk | 2 +- config/power7/bli_config.h | 2 +- config/power7/bli_kernel.h | 2 +- config/power7/make_defs.mk | 2 +- config/reference/bli_config.h | 2 +- config/reference/bli_kernel.h | 2 +- config/reference/make_defs.mk | 2 +- config/sandybridge/bli_config.h | 2 +- config/sandybridge/bli_kernel.h | 2 +- config/sandybridge/make_defs.mk | 2 +- config/template/bli_config.h | 2 +- config/template/bli_kernel.h | 2 +- config/template/kernels/1/bli_axpyv_opt_var1.c | 2 +- config/template/kernels/1/bli_dotv_opt_var1.c | 2 +- config/template/kernels/1f/bli_axpy2v_opt_var1.c | 2 +- config/template/kernels/1f/bli_axpyf_opt_var1.c | 2 +- config/template/kernels/1f/bli_dotaxpyv_opt_var1.c | 2 +- config/template/kernels/1f/bli_dotxaxpyf_opt_var1.c | 2 +- config/template/kernels/1f/bli_dotxf_opt_var1.c | 2 +- config/template/kernels/3/bli_gemm_opt_mxn.c | 2 +- config/template/kernels/3/bli_gemmtrsm_l_opt_mxn.c | 2 +- config/template/kernels/3/bli_gemmtrsm_u_opt_mxn.c | 2 +- config/template/kernels/3/bli_trsm_l_opt_mxn.c | 2 +- config/template/kernels/3/bli_trsm_u_opt_mxn.c | 2 +- config/template/make_defs.mk | 2 +- configure | 2 +- frame/0/absqsc/bli_absqsc.c | 2 +- frame/0/absqsc/bli_absqsc.h | 2 +- frame/0/absqsc/bli_absqsc_check.c | 2 +- frame/0/absqsc/bli_absqsc_check.h | 2 +- frame/0/absqsc/bli_absqsc_unb_var1.c | 2 +- frame/0/absqsc/bli_absqsc_unb_var1.h | 2 +- frame/0/addsc/bli_addsc.c | 2 +- frame/0/addsc/bli_addsc.h | 2 +- frame/0/addsc/bli_addsc_check.c | 2 +- frame/0/addsc/bli_addsc_check.h | 2 +- frame/0/addsc/bli_addsc_unb_var1.c | 2 +- frame/0/addsc/bli_addsc_unb_var1.h | 2 +- frame/0/copysc/bli_copysc.c | 2 +- frame/0/copysc/bli_copysc.h | 2 +- frame/0/copysc/bli_copysc_check.c | 2 +- frame/0/copysc/bli_copysc_check.h | 2 +- frame/0/copysc/bli_copysc_unb_var1.c | 2 +- frame/0/copysc/bli_copysc_unb_var1.h | 2 +- frame/0/divsc/bli_divsc.c | 2 +- frame/0/divsc/bli_divsc.h | 2 +- frame/0/divsc/bli_divsc_check.c | 2 +- frame/0/divsc/bli_divsc_check.h | 2 +- frame/0/divsc/bli_divsc_unb_var1.c | 2 +- frame/0/divsc/bli_divsc_unb_var1.h | 2 +- frame/0/getsc/bli_getsc.c | 2 +- frame/0/getsc/bli_getsc.h | 2 +- frame/0/getsc/bli_getsc_check.c | 2 +- frame/0/getsc/bli_getsc_check.h | 2 +- frame/0/mulsc/bli_mulsc.c | 2 +- frame/0/mulsc/bli_mulsc.h | 2 +- frame/0/mulsc/bli_mulsc_check.c | 2 +- frame/0/mulsc/bli_mulsc_check.h | 2 +- frame/0/mulsc/bli_mulsc_unb_var1.c | 2 +- frame/0/mulsc/bli_mulsc_unb_var1.h | 2 +- frame/0/normfsc/bli_normfsc.c | 2 +- frame/0/normfsc/bli_normfsc.h | 2 +- frame/0/normfsc/bli_normfsc_check.c | 2 +- frame/0/normfsc/bli_normfsc_check.h | 2 +- frame/0/normfsc/bli_normfsc_unb_var1.c | 2 +- frame/0/normfsc/bli_normfsc_unb_var1.h | 2 +- frame/0/setsc/bli_setsc.c | 2 +- frame/0/setsc/bli_setsc.h | 2 +- frame/0/setsc/bli_setsc_check.c | 2 +- frame/0/setsc/bli_setsc_check.h | 2 +- frame/0/sqrtsc/bli_sqrtsc.c | 2 +- frame/0/sqrtsc/bli_sqrtsc.h | 2 +- frame/0/sqrtsc/bli_sqrtsc_check.c | 2 +- frame/0/sqrtsc/bli_sqrtsc_check.h | 2 +- frame/0/sqrtsc/bli_sqrtsc_unb_var1.c | 2 +- frame/0/sqrtsc/bli_sqrtsc_unb_var1.h | 2 +- frame/0/subsc/bli_subsc.c | 2 +- frame/0/subsc/bli_subsc.h | 2 +- frame/0/subsc/bli_subsc_check.c | 2 +- frame/0/subsc/bli_subsc_check.h | 2 +- frame/0/subsc/bli_subsc_unb_var1.c | 2 +- frame/0/subsc/bli_subsc_unb_var1.h | 2 +- frame/0/unzipsc/bli_unzipsc.c | 2 +- frame/0/unzipsc/bli_unzipsc.h | 2 +- frame/0/unzipsc/bli_unzipsc_check.c | 2 +- frame/0/unzipsc/bli_unzipsc_check.h | 2 +- frame/0/unzipsc/bli_unzipsc_unb_var1.c | 2 +- frame/0/unzipsc/bli_unzipsc_unb_var1.h | 2 +- frame/0/zipsc/bli_zipsc.c | 2 +- frame/0/zipsc/bli_zipsc.h | 2 +- frame/0/zipsc/bli_zipsc_check.c | 2 +- frame/0/zipsc/bli_zipsc_check.h | 2 +- frame/0/zipsc/bli_zipsc_unb_var1.c | 2 +- frame/0/zipsc/bli_zipsc_unb_var1.h | 2 +- frame/1/addv/bli_addv.c | 2 +- frame/1/addv/bli_addv.h | 2 +- frame/1/addv/bli_addv_check.c | 2 +- frame/1/addv/bli_addv_check.h | 2 +- frame/1/addv/bli_addv_kernel.c | 2 +- frame/1/addv/bli_addv_kernel.h | 2 +- frame/1/addv/bli_addv_ref.c | 2 +- frame/1/addv/bli_addv_ref.h | 2 +- frame/1/axpyv/bli_axpyv.c | 2 +- frame/1/axpyv/bli_axpyv.h | 2 +- frame/1/axpyv/bli_axpyv_check.c | 2 +- frame/1/axpyv/bli_axpyv_check.h | 2 +- frame/1/axpyv/bli_axpyv_kernel.c | 2 +- frame/1/axpyv/bli_axpyv_kernel.h | 2 +- frame/1/axpyv/bli_axpyv_ref.c | 2 +- frame/1/axpyv/bli_axpyv_ref.h | 2 +- frame/1/copyv/bli_copyv.c | 2 +- frame/1/copyv/bli_copyv.h | 2 +- frame/1/copyv/bli_copyv_check.c | 2 +- frame/1/copyv/bli_copyv_check.h | 2 +- frame/1/copyv/bli_copyv_kernel.c | 2 +- frame/1/copyv/bli_copyv_kernel.h | 2 +- frame/1/copyv/bli_copyv_ref.c | 2 +- frame/1/copyv/bli_copyv_ref.h | 2 +- frame/1/dotv/bli_dotv.c | 2 +- frame/1/dotv/bli_dotv.h | 2 +- frame/1/dotv/bli_dotv_check.c | 2 +- frame/1/dotv/bli_dotv_check.h | 2 +- frame/1/dotv/bli_dotv_kernel.c | 2 +- frame/1/dotv/bli_dotv_kernel.h | 2 +- frame/1/dotv/bli_dotv_ref.c | 2 +- frame/1/dotv/bli_dotv_ref.h | 2 +- frame/1/dotxv/bli_dotxv.c | 2 +- frame/1/dotxv/bli_dotxv.h | 2 +- frame/1/dotxv/bli_dotxv_check.c | 2 +- frame/1/dotxv/bli_dotxv_check.h | 2 +- frame/1/dotxv/bli_dotxv_kernel.c | 2 +- frame/1/dotxv/bli_dotxv_kernel.h | 2 +- frame/1/dotxv/bli_dotxv_ref.c | 2 +- frame/1/dotxv/bli_dotxv_ref.h | 2 +- frame/1/invertv/bli_invertv.c | 2 +- frame/1/invertv/bli_invertv.h | 2 +- frame/1/invertv/bli_invertv_check.c | 2 +- frame/1/invertv/bli_invertv_check.h | 2 +- frame/1/invertv/bli_invertv_kernel.c | 2 +- frame/1/invertv/bli_invertv_kernel.h | 2 +- frame/1/invertv/bli_invertv_ref.c | 2 +- frame/1/invertv/bli_invertv_ref.h | 2 +- frame/1/packv/bli_packv.c | 2 +- frame/1/packv/bli_packv.h | 2 +- frame/1/packv/bli_packv_check.c | 2 +- frame/1/packv/bli_packv_check.h | 2 +- frame/1/packv/bli_packv_cntl.c | 2 +- frame/1/packv/bli_packv_cntl.h | 2 +- frame/1/packv/bli_packv_init.c | 2 +- frame/1/packv/bli_packv_init.h | 2 +- frame/1/packv/bli_packv_int.c | 2 +- frame/1/packv/bli_packv_int.h | 2 +- frame/1/packv/bli_packv_unb_var1.c | 2 +- frame/1/packv/bli_packv_unb_var1.h | 2 +- frame/1/scal2v/bli_scal2v.c | 2 +- frame/1/scal2v/bli_scal2v.h | 2 +- frame/1/scal2v/bli_scal2v_check.c | 2 +- frame/1/scal2v/bli_scal2v_check.h | 2 +- frame/1/scal2v/bli_scal2v_kernel.c | 2 +- frame/1/scal2v/bli_scal2v_kernel.h | 2 +- frame/1/scal2v/bli_scal2v_ref.c | 2 +- frame/1/scal2v/bli_scal2v_ref.h | 2 +- frame/1/scalv/bli_scalv.c | 2 +- frame/1/scalv/bli_scalv.h | 2 +- frame/1/scalv/bli_scalv_check.c | 2 +- frame/1/scalv/bli_scalv_check.h | 2 +- frame/1/scalv/bli_scalv_cntl.c | 2 +- frame/1/scalv/bli_scalv_cntl.h | 2 +- frame/1/scalv/bli_scalv_int.c | 2 +- frame/1/scalv/bli_scalv_int.h | 2 +- frame/1/scalv/bli_scalv_kernel.c | 2 +- frame/1/scalv/bli_scalv_kernel.h | 2 +- frame/1/scalv/bli_scalv_ref.c | 2 +- frame/1/scalv/bli_scalv_ref.h | 2 +- frame/1/setv/bli_setv.c | 2 +- frame/1/setv/bli_setv.h | 2 +- frame/1/setv/bli_setv_check.c | 2 +- frame/1/setv/bli_setv_check.h | 2 +- frame/1/setv/bli_setv_kernel.c | 2 +- frame/1/setv/bli_setv_kernel.h | 2 +- frame/1/setv/bli_setv_ref.c | 2 +- frame/1/setv/bli_setv_ref.h | 2 +- frame/1/setv/old/bli_setv_unb_var2.c | 2 +- frame/1/setv/old/bli_setv_unb_var2.h | 2 +- frame/1/subv/bli_subv.c | 2 +- frame/1/subv/bli_subv.h | 2 +- frame/1/subv/bli_subv_check.c | 2 +- frame/1/subv/bli_subv_check.h | 2 +- frame/1/subv/bli_subv_kernel.c | 2 +- frame/1/subv/bli_subv_kernel.h | 2 +- frame/1/subv/bli_subv_ref.c | 2 +- frame/1/subv/bli_subv_ref.h | 2 +- frame/1/swapv/bli_swapv.c | 2 +- frame/1/swapv/bli_swapv.h | 2 +- frame/1/swapv/bli_swapv_check.c | 2 +- frame/1/swapv/bli_swapv_check.h | 2 +- frame/1/swapv/bli_swapv_kernel.c | 2 +- frame/1/swapv/bli_swapv_kernel.h | 2 +- frame/1/swapv/bli_swapv_ref.c | 2 +- frame/1/swapv/bli_swapv_ref.h | 2 +- frame/1/unpackv/bli_unpackv.c | 2 +- frame/1/unpackv/bli_unpackv.h | 2 +- frame/1/unpackv/bli_unpackv_check.c | 2 +- frame/1/unpackv/bli_unpackv_check.h | 2 +- frame/1/unpackv/bli_unpackv_cntl.c | 2 +- frame/1/unpackv/bli_unpackv_cntl.h | 2 +- frame/1/unpackv/bli_unpackv_int.c | 2 +- frame/1/unpackv/bli_unpackv_int.h | 2 +- frame/1/unpackv/bli_unpackv_unb_var1.c | 2 +- frame/1/unpackv/bli_unpackv_unb_var1.h | 2 +- frame/1d/addd/bli_addd.c | 2 +- frame/1d/addd/bli_addd.h | 2 +- frame/1d/addd/bli_addd_check.c | 2 +- frame/1d/addd/bli_addd_check.h | 2 +- frame/1d/addd/bli_addd_unb_var1.c | 2 +- frame/1d/addd/bli_addd_unb_var1.h | 2 +- frame/1d/axpyd/bli_axpyd.c | 2 +- frame/1d/axpyd/bli_axpyd.h | 2 +- frame/1d/axpyd/bli_axpyd_check.c | 2 +- frame/1d/axpyd/bli_axpyd_check.h | 2 +- frame/1d/axpyd/bli_axpyd_unb_var1.c | 2 +- frame/1d/axpyd/bli_axpyd_unb_var1.h | 2 +- frame/1d/copyd/bli_copyd.c | 2 +- frame/1d/copyd/bli_copyd.h | 2 +- frame/1d/copyd/bli_copyd_check.c | 2 +- frame/1d/copyd/bli_copyd_check.h | 2 +- frame/1d/copyd/bli_copyd_unb_var1.c | 2 +- frame/1d/copyd/bli_copyd_unb_var1.h | 2 +- frame/1d/invertd/bli_invertd.c | 2 +- frame/1d/invertd/bli_invertd.h | 2 +- frame/1d/invertd/bli_invertd_check.c | 2 +- frame/1d/invertd/bli_invertd_check.h | 2 +- frame/1d/invertd/bli_invertd_unb_var1.c | 2 +- frame/1d/invertd/bli_invertd_unb_var1.h | 2 +- frame/1d/scal2d/bli_scal2d.c | 2 +- frame/1d/scal2d/bli_scal2d.h | 2 +- frame/1d/scal2d/bli_scal2d_check.c | 2 +- frame/1d/scal2d/bli_scal2d_check.h | 2 +- frame/1d/scal2d/bli_scal2d_unb_var1.c | 2 +- frame/1d/scal2d/bli_scal2d_unb_var1.h | 2 +- frame/1d/scald/bli_scald.c | 2 +- frame/1d/scald/bli_scald.h | 2 +- frame/1d/scald/bli_scald_check.c | 2 +- frame/1d/scald/bli_scald_check.h | 2 +- frame/1d/scald/bli_scald_unb_var1.c | 2 +- frame/1d/scald/bli_scald_unb_var1.h | 2 +- frame/1d/setd/bli_setd.c | 2 +- frame/1d/setd/bli_setd.h | 2 +- frame/1d/setd/bli_setd_check.c | 2 +- frame/1d/setd/bli_setd_check.h | 2 +- frame/1d/setd/bli_setd_unb_var1.c | 2 +- frame/1d/setd/bli_setd_unb_var1.h | 2 +- frame/1d/subd/bli_subd.c | 2 +- frame/1d/subd/bli_subd.h | 2 +- frame/1d/subd/bli_subd_check.c | 2 +- frame/1d/subd/bli_subd_check.h | 2 +- frame/1d/subd/bli_subd_unb_var1.c | 2 +- frame/1d/subd/bli_subd_unb_var1.h | 2 +- frame/1f/axpy2v/bli_axpy2v.c | 2 +- frame/1f/axpy2v/bli_axpy2v.h | 2 +- frame/1f/axpy2v/bli_axpy2v_check.c | 2 +- frame/1f/axpy2v/bli_axpy2v_check.h | 2 +- frame/1f/axpy2v/bli_axpy2v_kernel.c | 2 +- frame/1f/axpy2v/bli_axpy2v_kernel.h | 2 +- frame/1f/axpy2v/bli_axpy2v_ref.c | 2 +- frame/1f/axpy2v/bli_axpy2v_ref.h | 2 +- frame/1f/axpyf/bli_axpyf.c | 2 +- frame/1f/axpyf/bli_axpyf.h | 2 +- frame/1f/axpyf/bli_axpyf_check.c | 2 +- frame/1f/axpyf/bli_axpyf_check.h | 2 +- frame/1f/axpyf/bli_axpyf_fusefac.c | 2 +- frame/1f/axpyf/bli_axpyf_fusefac.h | 2 +- frame/1f/axpyf/bli_axpyf_kernel.c | 2 +- frame/1f/axpyf/bli_axpyf_kernel.h | 2 +- frame/1f/axpyf/bli_axpyf_ref.c | 2 +- frame/1f/axpyf/bli_axpyf_ref.h | 2 +- frame/1f/dotaxpyv/bli_dotaxpyv.c | 2 +- frame/1f/dotaxpyv/bli_dotaxpyv.h | 2 +- frame/1f/dotaxpyv/bli_dotaxpyv_check.c | 2 +- frame/1f/dotaxpyv/bli_dotaxpyv_check.h | 2 +- frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c | 2 +- frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h | 2 +- frame/1f/dotaxpyv/bli_dotaxpyv_ref.c | 2 +- frame/1f/dotaxpyv/bli_dotaxpyv_ref.h | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf.c | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf.h | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c | 2 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h | 2 +- frame/1f/dotxf/bli_dotxf.c | 2 +- frame/1f/dotxf/bli_dotxf.h | 2 +- frame/1f/dotxf/bli_dotxf_check.c | 2 +- frame/1f/dotxf/bli_dotxf_check.h | 2 +- frame/1f/dotxf/bli_dotxf_fusefac.c | 2 +- frame/1f/dotxf/bli_dotxf_fusefac.h | 2 +- frame/1f/dotxf/bli_dotxf_kernel.c | 2 +- frame/1f/dotxf/bli_dotxf_kernel.h | 2 +- frame/1f/dotxf/bli_dotxf_ref.c | 2 +- frame/1f/dotxf/bli_dotxf_ref.h | 2 +- frame/1m/addm/bli_addm.c | 2 +- frame/1m/addm/bli_addm.h | 2 +- frame/1m/addm/bli_addm_check.c | 2 +- frame/1m/addm/bli_addm_check.h | 2 +- frame/1m/addm/bli_addm_unb_var1.c | 2 +- frame/1m/addm/bli_addm_unb_var1.h | 2 +- frame/1m/axpym/bli_axpym.c | 2 +- frame/1m/axpym/bli_axpym.h | 2 +- frame/1m/axpym/bli_axpym_check.c | 2 +- frame/1m/axpym/bli_axpym_check.h | 2 +- frame/1m/axpym/bli_axpym_unb_var1.c | 2 +- frame/1m/axpym/bli_axpym_unb_var1.h | 2 +- frame/1m/copym/bli_copym.c | 2 +- frame/1m/copym/bli_copym.h | 2 +- frame/1m/copym/bli_copym_check.c | 2 +- frame/1m/copym/bli_copym_check.h | 2 +- frame/1m/copym/bli_copym_unb_var1.c | 2 +- frame/1m/copym/bli_copym_unb_var1.h | 2 +- frame/1m/packm/bli_packm.c | 2 +- frame/1m/packm/bli_packm.h | 2 +- frame/1m/packm/bli_packm_blk_var1.c | 2 +- frame/1m/packm/bli_packm_blk_var1.h | 2 +- frame/1m/packm/bli_packm_blk_var3.c | 2 +- frame/1m/packm/bli_packm_blk_var3.h | 2 +- frame/1m/packm/bli_packm_blk_var4.c | 2 +- frame/1m/packm/bli_packm_blk_var4.h | 2 +- frame/1m/packm/bli_packm_check.c | 2 +- frame/1m/packm/bli_packm_check.h | 2 +- frame/1m/packm/bli_packm_cntl.c | 2 +- frame/1m/packm/bli_packm_cntl.h | 2 +- frame/1m/packm/bli_packm_cxk.c | 2 +- frame/1m/packm/bli_packm_cxk.h | 2 +- frame/1m/packm/bli_packm_cxk_ri.c | 2 +- frame/1m/packm/bli_packm_cxk_ri.h | 2 +- frame/1m/packm/bli_packm_cxk_ri3.c | 2 +- frame/1m/packm/bli_packm_cxk_ri3.h | 2 +- frame/1m/packm/bli_packm_gen_cxk.c | 2 +- frame/1m/packm/bli_packm_gen_cxk.h | 2 +- frame/1m/packm/bli_packm_herm_cxk.c | 2 +- frame/1m/packm/bli_packm_herm_cxk.h | 2 +- frame/1m/packm/bli_packm_init.c | 2 +- frame/1m/packm/bli_packm_init.h | 2 +- frame/1m/packm/bli_packm_int.c | 2 +- frame/1m/packm/bli_packm_int.h | 2 +- frame/1m/packm/bli_packm_part.c | 2 +- frame/1m/packm/bli_packm_part.h | 2 +- frame/1m/packm/bli_packm_threading.c | 2 +- frame/1m/packm/bli_packm_threading.h | 2 +- frame/1m/packm/bli_packm_tri_cxk.c | 2 +- frame/1m/packm/bli_packm_tri_cxk.h | 2 +- frame/1m/packm/bli_packm_unb_var1.c | 2 +- frame/1m/packm/bli_packm_unb_var1.h | 2 +- frame/1m/packm/old/bli_packm_blk_var1.c | 2 +- frame/1m/packm/old/bli_packm_blk_var1.h | 2 +- frame/1m/packm/old/bli_packm_blk_var2.c | 2 +- frame/1m/packm/old/bli_packm_blk_var2.h | 2 +- frame/1m/packm/old/bli_packm_densify.c | 2 +- frame/1m/packm/old/bli_packm_densify.h | 2 +- frame/1m/packm/other/bli_packm_blk_var2.c | 2 +- frame/1m/packm/ukernels/bli_packm_ref_10xk.c | 2 +- frame/1m/packm/ukernels/bli_packm_ref_10xk.h | 2 +- frame/1m/packm/ukernels/bli_packm_ref_12xk.c | 2 +- frame/1m/packm/ukernels/bli_packm_ref_12xk.h | 2 +- frame/1m/packm/ukernels/bli_packm_ref_14xk.c | 2 +- frame/1m/packm/ukernels/bli_packm_ref_14xk.h | 2 +- frame/1m/packm/ukernels/bli_packm_ref_16xk.c | 2 +- frame/1m/packm/ukernels/bli_packm_ref_16xk.h | 2 +- frame/1m/packm/ukernels/bli_packm_ref_2xk.c | 2 +- frame/1m/packm/ukernels/bli_packm_ref_2xk.h | 2 +- frame/1m/packm/ukernels/bli_packm_ref_4xk.c | 2 +- frame/1m/packm/ukernels/bli_packm_ref_4xk.h | 2 +- frame/1m/packm/ukernels/bli_packm_ref_6xk.c | 2 +- frame/1m/packm/ukernels/bli_packm_ref_6xk.h | 2 +- frame/1m/packm/ukernels/bli_packm_ref_8xk.c | 2 +- frame/1m/packm/ukernels/bli_packm_ref_8xk.h | 2 +- frame/1m/scal2m/bli_scal2m.c | 2 +- frame/1m/scal2m/bli_scal2m.h | 2 +- frame/1m/scal2m/bli_scal2m_check.c | 2 +- frame/1m/scal2m/bli_scal2m_check.h | 2 +- frame/1m/scal2m/bli_scal2m_unb_var1.c | 2 +- frame/1m/scal2m/bli_scal2m_unb_var1.h | 2 +- frame/1m/scalm/bli_scalm.c | 2 +- frame/1m/scalm/bli_scalm.h | 2 +- frame/1m/scalm/bli_scalm_check.c | 2 +- frame/1m/scalm/bli_scalm_check.h | 2 +- frame/1m/scalm/bli_scalm_cntl.c | 2 +- frame/1m/scalm/bli_scalm_cntl.h | 2 +- frame/1m/scalm/bli_scalm_int.c | 2 +- frame/1m/scalm/bli_scalm_int.h | 2 +- frame/1m/scalm/bli_scalm_unb_var1.c | 2 +- frame/1m/scalm/bli_scalm_unb_var1.h | 2 +- frame/1m/setm/bli_setm.c | 2 +- frame/1m/setm/bli_setm.h | 2 +- frame/1m/setm/bli_setm_check.c | 2 +- frame/1m/setm/bli_setm_check.h | 2 +- frame/1m/setm/bli_setm_unb_var1.c | 2 +- frame/1m/setm/bli_setm_unb_var1.h | 2 +- frame/1m/subm/bli_subm.c | 2 +- frame/1m/subm/bli_subm.h | 2 +- frame/1m/subm/bli_subm_check.c | 2 +- frame/1m/subm/bli_subm_check.h | 2 +- frame/1m/subm/bli_subm_unb_var1.c | 2 +- frame/1m/subm/bli_subm_unb_var1.h | 2 +- frame/1m/unpackm/bli_unpackm.c | 2 +- frame/1m/unpackm/bli_unpackm.h | 2 +- frame/1m/unpackm/bli_unpackm_blk_var2.c | 2 +- frame/1m/unpackm/bli_unpackm_blk_var2.h | 2 +- frame/1m/unpackm/bli_unpackm_check.c | 2 +- frame/1m/unpackm/bli_unpackm_check.h | 2 +- frame/1m/unpackm/bli_unpackm_cntl.c | 2 +- frame/1m/unpackm/bli_unpackm_cntl.h | 2 +- frame/1m/unpackm/bli_unpackm_cxk.c | 2 +- frame/1m/unpackm/bli_unpackm_cxk.h | 2 +- frame/1m/unpackm/bli_unpackm_int.c | 2 +- frame/1m/unpackm/bli_unpackm_int.h | 2 +- frame/1m/unpackm/bli_unpackm_unb_var1.c | 2 +- frame/1m/unpackm/bli_unpackm_unb_var1.h | 2 +- frame/1m/unpackm/old/bli_unpackm_blk_var1.c | 2 +- frame/1m/unpackm/old/bli_unpackm_blk_var1.h | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.c | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.h | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.c | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.h | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.c | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.h | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.c | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.h | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.c | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.h | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.c | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.h | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.c | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.h | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.c | 2 +- frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.h | 2 +- frame/2/gemv/bli_gemv.c | 2 +- frame/2/gemv/bli_gemv.h | 2 +- frame/2/gemv/bli_gemv_blk_var1.c | 2 +- frame/2/gemv/bli_gemv_blk_var1.h | 2 +- frame/2/gemv/bli_gemv_blk_var2.c | 2 +- frame/2/gemv/bli_gemv_blk_var2.h | 2 +- frame/2/gemv/bli_gemv_check.c | 2 +- frame/2/gemv/bli_gemv_check.h | 2 +- frame/2/gemv/bli_gemv_cntl.c | 2 +- frame/2/gemv/bli_gemv_cntl.h | 2 +- frame/2/gemv/bli_gemv_int.c | 2 +- frame/2/gemv/bli_gemv_int.h | 2 +- frame/2/gemv/bli_gemv_unb_var1.c | 2 +- frame/2/gemv/bli_gemv_unb_var1.h | 2 +- frame/2/gemv/bli_gemv_unb_var2.c | 2 +- frame/2/gemv/bli_gemv_unb_var2.h | 2 +- frame/2/gemv/bli_gemv_unf_var1.c | 2 +- frame/2/gemv/bli_gemv_unf_var1.h | 2 +- frame/2/gemv/bli_gemv_unf_var2.c | 2 +- frame/2/gemv/bli_gemv_unf_var2.h | 2 +- frame/2/ger/bli_ger.c | 2 +- frame/2/ger/bli_ger.h | 2 +- frame/2/ger/bli_ger_blk_var1.c | 2 +- frame/2/ger/bli_ger_blk_var1.h | 2 +- frame/2/ger/bli_ger_blk_var2.c | 2 +- frame/2/ger/bli_ger_blk_var2.h | 2 +- frame/2/ger/bli_ger_check.c | 2 +- frame/2/ger/bli_ger_check.h | 2 +- frame/2/ger/bli_ger_cntl.c | 2 +- frame/2/ger/bli_ger_cntl.h | 2 +- frame/2/ger/bli_ger_int.c | 2 +- frame/2/ger/bli_ger_int.h | 2 +- frame/2/ger/bli_ger_unb_var1.c | 2 +- frame/2/ger/bli_ger_unb_var1.h | 2 +- frame/2/ger/bli_ger_unb_var2.c | 2 +- frame/2/ger/bli_ger_unb_var2.h | 2 +- frame/2/hemv/bli_hemv.c | 2 +- frame/2/hemv/bli_hemv.h | 2 +- frame/2/hemv/bli_hemv_blk_var1.c | 2 +- frame/2/hemv/bli_hemv_blk_var1.h | 2 +- frame/2/hemv/bli_hemv_blk_var2.c | 2 +- frame/2/hemv/bli_hemv_blk_var2.h | 2 +- frame/2/hemv/bli_hemv_blk_var3.c | 2 +- frame/2/hemv/bli_hemv_blk_var3.h | 2 +- frame/2/hemv/bli_hemv_blk_var4.c | 2 +- frame/2/hemv/bli_hemv_blk_var4.h | 2 +- frame/2/hemv/bli_hemv_check.c | 2 +- frame/2/hemv/bli_hemv_check.h | 2 +- frame/2/hemv/bli_hemv_cntl.c | 2 +- frame/2/hemv/bli_hemv_cntl.h | 2 +- frame/2/hemv/bli_hemv_int.c | 2 +- frame/2/hemv/bli_hemv_int.h | 2 +- frame/2/hemv/bli_hemv_unb_var1.c | 2 +- frame/2/hemv/bli_hemv_unb_var1.h | 2 +- frame/2/hemv/bli_hemv_unb_var2.c | 2 +- frame/2/hemv/bli_hemv_unb_var2.h | 2 +- frame/2/hemv/bli_hemv_unb_var3.c | 2 +- frame/2/hemv/bli_hemv_unb_var3.h | 2 +- frame/2/hemv/bli_hemv_unb_var4.c | 2 +- frame/2/hemv/bli_hemv_unb_var4.h | 2 +- frame/2/hemv/bli_hemv_unf_var1.c | 2 +- frame/2/hemv/bli_hemv_unf_var1.h | 2 +- frame/2/hemv/bli_hemv_unf_var1a.c | 2 +- frame/2/hemv/bli_hemv_unf_var1a.h | 2 +- frame/2/hemv/bli_hemv_unf_var3.c | 2 +- frame/2/hemv/bli_hemv_unf_var3.h | 2 +- frame/2/hemv/bli_hemv_unf_var3a.c | 2 +- frame/2/hemv/bli_hemv_unf_var3a.h | 2 +- frame/2/her/bli_her.c | 2 +- frame/2/her/bli_her.h | 2 +- frame/2/her/bli_her_blk_var1.c | 2 +- frame/2/her/bli_her_blk_var1.h | 2 +- frame/2/her/bli_her_blk_var2.c | 2 +- frame/2/her/bli_her_blk_var2.h | 2 +- frame/2/her/bli_her_check.c | 2 +- frame/2/her/bli_her_check.h | 2 +- frame/2/her/bli_her_cntl.c | 2 +- frame/2/her/bli_her_cntl.h | 2 +- frame/2/her/bli_her_int.c | 2 +- frame/2/her/bli_her_int.h | 2 +- frame/2/her/bli_her_unb_var1.c | 2 +- frame/2/her/bli_her_unb_var1.h | 2 +- frame/2/her/bli_her_unb_var2.c | 2 +- frame/2/her/bli_her_unb_var2.h | 2 +- frame/2/her2/bli_her2.c | 2 +- frame/2/her2/bli_her2.h | 2 +- frame/2/her2/bli_her2_blk_var1.c | 2 +- frame/2/her2/bli_her2_blk_var1.h | 2 +- frame/2/her2/bli_her2_blk_var2.c | 2 +- frame/2/her2/bli_her2_blk_var2.h | 2 +- frame/2/her2/bli_her2_blk_var3.c | 2 +- frame/2/her2/bli_her2_blk_var3.h | 2 +- frame/2/her2/bli_her2_blk_var4.c | 2 +- frame/2/her2/bli_her2_blk_var4.h | 2 +- frame/2/her2/bli_her2_check.c | 2 +- frame/2/her2/bli_her2_check.h | 2 +- frame/2/her2/bli_her2_cntl.c | 2 +- frame/2/her2/bli_her2_cntl.h | 2 +- frame/2/her2/bli_her2_int.c | 2 +- frame/2/her2/bli_her2_int.h | 2 +- frame/2/her2/bli_her2_unb_var1.c | 2 +- frame/2/her2/bli_her2_unb_var1.h | 2 +- frame/2/her2/bli_her2_unb_var2.c | 2 +- frame/2/her2/bli_her2_unb_var2.h | 2 +- frame/2/her2/bli_her2_unb_var3.c | 2 +- frame/2/her2/bli_her2_unb_var3.h | 2 +- frame/2/her2/bli_her2_unb_var4.c | 2 +- frame/2/her2/bli_her2_unb_var4.h | 2 +- frame/2/her2/bli_her2_unf_var1.c | 2 +- frame/2/her2/bli_her2_unf_var1.h | 2 +- frame/2/her2/bli_her2_unf_var4.c | 2 +- frame/2/her2/bli_her2_unf_var4.h | 2 +- frame/2/symv/bli_symv.c | 2 +- frame/2/symv/bli_symv.h | 2 +- frame/2/symv/bli_symv_check.c | 2 +- frame/2/symv/bli_symv_check.h | 2 +- frame/2/syr/bli_syr.c | 2 +- frame/2/syr/bli_syr.h | 2 +- frame/2/syr/bli_syr_check.c | 2 +- frame/2/syr/bli_syr_check.h | 2 +- frame/2/syr2/bli_syr2.c | 2 +- frame/2/syr2/bli_syr2.h | 2 +- frame/2/syr2/bli_syr2_check.c | 2 +- frame/2/syr2/bli_syr2_check.h | 2 +- frame/2/trmv/bli_trmv.c | 2 +- frame/2/trmv/bli_trmv.h | 2 +- frame/2/trmv/bli_trmv_check.c | 2 +- frame/2/trmv/bli_trmv_check.h | 2 +- frame/2/trmv/bli_trmv_cntl.c | 2 +- frame/2/trmv/bli_trmv_cntl.h | 2 +- frame/2/trmv/bli_trmv_int.c | 2 +- frame/2/trmv/bli_trmv_int.h | 2 +- frame/2/trmv/bli_trmv_l_blk_var1.c | 2 +- frame/2/trmv/bli_trmv_l_blk_var1.h | 2 +- frame/2/trmv/bli_trmv_l_blk_var2.c | 2 +- frame/2/trmv/bli_trmv_l_blk_var2.h | 2 +- frame/2/trmv/bli_trmv_u_blk_var1.c | 2 +- frame/2/trmv/bli_trmv_u_blk_var1.h | 2 +- frame/2/trmv/bli_trmv_u_blk_var2.c | 2 +- frame/2/trmv/bli_trmv_u_blk_var2.h | 2 +- frame/2/trmv/bli_trmv_unb_var1.c | 2 +- frame/2/trmv/bli_trmv_unb_var1.h | 2 +- frame/2/trmv/bli_trmv_unb_var2.c | 2 +- frame/2/trmv/bli_trmv_unb_var2.h | 2 +- frame/2/trmv/bli_trmv_unf_var1.c | 2 +- frame/2/trmv/bli_trmv_unf_var1.h | 2 +- frame/2/trmv/bli_trmv_unf_var2.c | 2 +- frame/2/trmv/bli_trmv_unf_var2.h | 2 +- frame/2/trsv/bli_trsv.c | 2 +- frame/2/trsv/bli_trsv.h | 2 +- frame/2/trsv/bli_trsv_check.c | 2 +- frame/2/trsv/bli_trsv_check.h | 2 +- frame/2/trsv/bli_trsv_cntl.c | 2 +- frame/2/trsv/bli_trsv_cntl.h | 2 +- frame/2/trsv/bli_trsv_int.c | 2 +- frame/2/trsv/bli_trsv_int.h | 2 +- frame/2/trsv/bli_trsv_l_blk_var1.c | 2 +- frame/2/trsv/bli_trsv_l_blk_var1.h | 2 +- frame/2/trsv/bli_trsv_l_blk_var2.c | 2 +- frame/2/trsv/bli_trsv_l_blk_var2.h | 2 +- frame/2/trsv/bli_trsv_u_blk_var1.c | 2 +- frame/2/trsv/bli_trsv_u_blk_var1.h | 2 +- frame/2/trsv/bli_trsv_u_blk_var2.c | 2 +- frame/2/trsv/bli_trsv_u_blk_var2.h | 2 +- frame/2/trsv/bli_trsv_unb_var1.c | 2 +- frame/2/trsv/bli_trsv_unb_var1.h | 2 +- frame/2/trsv/bli_trsv_unb_var2.c | 2 +- frame/2/trsv/bli_trsv_unb_var2.h | 2 +- frame/2/trsv/bli_trsv_unf_var1.c | 2 +- frame/2/trsv/bli_trsv_unf_var1.h | 2 +- frame/2/trsv/bli_trsv_unf_var2.c | 2 +- frame/2/trsv/bli_trsv_unf_var2.h | 2 +- frame/3/gemm/3m/bli_gemm3m.c | 2 +- frame/3/gemm/3m/bli_gemm3m.h | 2 +- frame/3/gemm/3m/bli_gemm3m_cntl.c | 2 +- frame/3/gemm/3m/bli_gemm3m_cntl.h | 2 +- frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c | 2 +- frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h | 2 +- frame/3/gemm/4m/bli_gemm4m.c | 2 +- frame/3/gemm/4m/bli_gemm4m.h | 2 +- frame/3/gemm/4m/bli_gemm4m_cntl.c | 2 +- frame/3/gemm/4m/bli_gemm4m_cntl.h | 2 +- frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c | 2 +- frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h | 2 +- frame/3/gemm/bli_gemm.c | 2 +- frame/3/gemm/bli_gemm.h | 2 +- frame/3/gemm/bli_gemm_blk_var1f.c | 2 +- frame/3/gemm/bli_gemm_blk_var1f.h | 2 +- frame/3/gemm/bli_gemm_blk_var2f.c | 2 +- frame/3/gemm/bli_gemm_blk_var2f.h | 2 +- frame/3/gemm/bli_gemm_blk_var3f.c | 2 +- frame/3/gemm/bli_gemm_blk_var3f.h | 2 +- frame/3/gemm/bli_gemm_check.c | 2 +- frame/3/gemm/bli_gemm_check.h | 2 +- frame/3/gemm/bli_gemm_cntl.c | 2 +- frame/3/gemm/bli_gemm_cntl.h | 2 +- frame/3/gemm/bli_gemm_cntl_exp.c | 2 +- frame/3/gemm/bli_gemm_cntl_exp.h | 2 +- frame/3/gemm/bli_gemm_front.c | 2 +- frame/3/gemm/bli_gemm_front.h | 2 +- frame/3/gemm/bli_gemm_int.c | 2 +- frame/3/gemm/bli_gemm_int.h | 2 +- frame/3/gemm/bli_gemm_ker_var2.c | 2 +- frame/3/gemm/bli_gemm_ker_var2.h | 2 +- frame/3/gemm/bli_gemm_ker_var5.c | 2 +- frame/3/gemm/bli_gemm_ker_var5.h | 2 +- frame/3/gemm/bli_gemm_target.c | 2 +- frame/3/gemm/bli_gemm_target.h | 2 +- frame/3/gemm/bli_gemm_threading.c | 2 +- frame/3/gemm/bli_gemm_threading.h | 2 +- frame/3/gemm/bli_gemm_ukernel.c | 2 +- frame/3/gemm/bli_gemm_ukernel.h | 2 +- frame/3/gemm/other/bli_gemm_blk_var4.c | 2 +- frame/3/gemm/other/bli_gemm_blk_var4.h | 2 +- frame/3/gemm/other/bli_gemm_ker_var2.c | 2 +- frame/3/gemm/ukernels/bli_gemm_ukr_ref.c | 2 +- frame/3/gemm/ukernels/bli_gemm_ukr_ref.h | 2 +- frame/3/hemm/3m/bli_hemm3m.c | 2 +- frame/3/hemm/3m/bli_hemm3m.h | 2 +- frame/3/hemm/4m/bli_hemm4m.c | 2 +- frame/3/hemm/4m/bli_hemm4m.h | 2 +- frame/3/hemm/bli_hemm.c | 2 +- frame/3/hemm/bli_hemm.h | 2 +- frame/3/hemm/bli_hemm_check.c | 2 +- frame/3/hemm/bli_hemm_check.h | 2 +- frame/3/hemm/bli_hemm_front.c | 2 +- frame/3/hemm/bli_hemm_front.h | 2 +- frame/3/her2k/3m/bli_her2k3m.c | 2 +- frame/3/her2k/3m/bli_her2k3m.h | 2 +- frame/3/her2k/4m/bli_her2k4m.c | 2 +- frame/3/her2k/4m/bli_her2k4m.h | 2 +- frame/3/her2k/attic/bli_her2k_blk_var1f.c | 2 +- frame/3/her2k/attic/bli_her2k_blk_var1f.h | 2 +- frame/3/her2k/attic/bli_her2k_blk_var2f.c | 2 +- frame/3/her2k/attic/bli_her2k_blk_var2f.h | 2 +- frame/3/her2k/attic/bli_her2k_blk_var3f.c | 2 +- frame/3/her2k/attic/bli_her2k_blk_var3f.h | 2 +- frame/3/her2k/attic/bli_her2k_cntl.c | 2 +- frame/3/her2k/attic/bli_her2k_cntl.h | 2 +- frame/3/her2k/attic/bli_her2k_int.c | 2 +- frame/3/her2k/attic/bli_her2k_int.h | 2 +- frame/3/her2k/attic/bli_her2k_l_ker_var2.c | 2 +- frame/3/her2k/attic/bli_her2k_l_ker_var2.h | 2 +- frame/3/her2k/attic/bli_her2k_target.c | 2 +- frame/3/her2k/attic/bli_her2k_target.h | 2 +- frame/3/her2k/attic/bli_her2k_u_ker_var2.c | 2 +- frame/3/her2k/attic/bli_her2k_u_ker_var2.h | 2 +- frame/3/her2k/bli_her2k.c | 2 +- frame/3/her2k/bli_her2k.h | 2 +- frame/3/her2k/bli_her2k_check.c | 2 +- frame/3/her2k/bli_her2k_check.h | 2 +- frame/3/her2k/bli_her2k_front.c | 2 +- frame/3/her2k/bli_her2k_front.h | 2 +- frame/3/herk/3m/bli_herk3m.c | 2 +- frame/3/herk/3m/bli_herk3m.h | 2 +- frame/3/herk/3m/bli_herk3m_cntl.c | 2 +- frame/3/herk/3m/bli_herk3m_cntl.h | 2 +- frame/3/herk/4m/bli_herk4m.c | 2 +- frame/3/herk/4m/bli_herk4m.h | 2 +- frame/3/herk/4m/bli_herk4m_cntl.c | 2 +- frame/3/herk/4m/bli_herk4m_cntl.h | 2 +- frame/3/herk/bli_herk.c | 2 +- frame/3/herk/bli_herk.h | 2 +- frame/3/herk/bli_herk_blk_var1f.c | 2 +- frame/3/herk/bli_herk_blk_var1f.h | 2 +- frame/3/herk/bli_herk_blk_var2f.c | 2 +- frame/3/herk/bli_herk_blk_var2f.h | 2 +- frame/3/herk/bli_herk_blk_var3f.c | 2 +- frame/3/herk/bli_herk_blk_var3f.h | 2 +- frame/3/herk/bli_herk_check.c | 2 +- frame/3/herk/bli_herk_check.h | 2 +- frame/3/herk/bli_herk_cntl.c | 2 +- frame/3/herk/bli_herk_cntl.h | 2 +- frame/3/herk/bli_herk_front.c | 2 +- frame/3/herk/bli_herk_front.h | 2 +- frame/3/herk/bli_herk_int.c | 2 +- frame/3/herk/bli_herk_int.h | 2 +- frame/3/herk/bli_herk_l_ker_var2.c | 2 +- frame/3/herk/bli_herk_l_ker_var2.h | 2 +- frame/3/herk/bli_herk_target.c | 2 +- frame/3/herk/bli_herk_target.h | 2 +- frame/3/herk/bli_herk_threading.c | 2 +- frame/3/herk/bli_herk_threading.h | 2 +- frame/3/herk/bli_herk_u_ker_var2.c | 2 +- frame/3/herk/bli_herk_u_ker_var2.h | 2 +- frame/3/herk/other/bli_herk_l_blk_var4.c | 2 +- frame/3/herk/other/bli_herk_l_blk_var4.h | 2 +- frame/3/herk/other/bli_herk_u_blk_var1.c | 2 +- frame/3/herk/other/bli_herk_u_blk_var1.h | 2 +- frame/3/herk/other/bli_herk_u_blk_var2.c | 2 +- frame/3/herk/other/bli_herk_u_blk_var2.h | 2 +- frame/3/herk/other/bli_herk_u_blk_var4.c | 2 +- frame/3/herk/other/bli_herk_u_blk_var4.h | 2 +- frame/3/symm/3m/bli_symm3m.c | 2 +- frame/3/symm/3m/bli_symm3m.h | 2 +- frame/3/symm/4m/bli_symm4m.c | 2 +- frame/3/symm/4m/bli_symm4m.h | 2 +- frame/3/symm/bli_symm.c | 2 +- frame/3/symm/bli_symm.h | 2 +- frame/3/symm/bli_symm_check.c | 2 +- frame/3/symm/bli_symm_check.h | 2 +- frame/3/symm/bli_symm_front.c | 2 +- frame/3/symm/bli_symm_front.h | 2 +- frame/3/syr2k/3m/bli_syr2k3m.c | 2 +- frame/3/syr2k/3m/bli_syr2k3m.h | 2 +- frame/3/syr2k/4m/bli_syr2k4m.c | 2 +- frame/3/syr2k/4m/bli_syr2k4m.h | 2 +- frame/3/syr2k/bli_syr2k.c | 2 +- frame/3/syr2k/bli_syr2k.h | 2 +- frame/3/syr2k/bli_syr2k_check.c | 2 +- frame/3/syr2k/bli_syr2k_check.h | 2 +- frame/3/syr2k/bli_syr2k_front.c | 2 +- frame/3/syr2k/bli_syr2k_front.h | 2 +- frame/3/syrk/3m/bli_syrk3m.c | 2 +- frame/3/syrk/3m/bli_syrk3m.h | 2 +- frame/3/syrk/4m/bli_syrk4m.c | 2 +- frame/3/syrk/4m/bli_syrk4m.h | 2 +- frame/3/syrk/bli_syrk.c | 2 +- frame/3/syrk/bli_syrk.h | 2 +- frame/3/syrk/bli_syrk_check.c | 2 +- frame/3/syrk/bli_syrk_check.h | 2 +- frame/3/syrk/bli_syrk_front.c | 2 +- frame/3/syrk/bli_syrk_front.h | 2 +- frame/3/trmm/3m/bli_trmm3m.c | 2 +- frame/3/trmm/3m/bli_trmm3m.h | 2 +- frame/3/trmm/3m/bli_trmm3m_cntl.c | 2 +- frame/3/trmm/3m/bli_trmm3m_cntl.h | 2 +- frame/3/trmm/4m/bli_trmm4m.c | 2 +- frame/3/trmm/4m/bli_trmm4m.h | 2 +- frame/3/trmm/4m/bli_trmm4m_cntl.c | 2 +- frame/3/trmm/4m/bli_trmm4m_cntl.h | 2 +- frame/3/trmm/bli_trmm.c | 2 +- frame/3/trmm/bli_trmm.h | 2 +- frame/3/trmm/bli_trmm_blk_var1f.c | 2 +- frame/3/trmm/bli_trmm_blk_var1f.h | 2 +- frame/3/trmm/bli_trmm_blk_var2b.c | 2 +- frame/3/trmm/bli_trmm_blk_var2b.h | 2 +- frame/3/trmm/bli_trmm_blk_var2f.c | 2 +- frame/3/trmm/bli_trmm_blk_var2f.h | 2 +- frame/3/trmm/bli_trmm_blk_var3b.c | 2 +- frame/3/trmm/bli_trmm_blk_var3b.h | 2 +- frame/3/trmm/bli_trmm_blk_var3f.c | 2 +- frame/3/trmm/bli_trmm_blk_var3f.h | 2 +- frame/3/trmm/bli_trmm_check.c | 2 +- frame/3/trmm/bli_trmm_check.h | 2 +- frame/3/trmm/bli_trmm_cntl.c | 2 +- frame/3/trmm/bli_trmm_cntl.h | 2 +- frame/3/trmm/bli_trmm_front.c | 2 +- frame/3/trmm/bli_trmm_front.h | 2 +- frame/3/trmm/bli_trmm_int.c | 2 +- frame/3/trmm/bli_trmm_int.h | 2 +- frame/3/trmm/bli_trmm_ll_ker_var2.c | 2 +- frame/3/trmm/bli_trmm_ll_ker_var2.h | 2 +- frame/3/trmm/bli_trmm_lu_ker_var2.c | 2 +- frame/3/trmm/bli_trmm_lu_ker_var2.h | 2 +- frame/3/trmm/bli_trmm_rl_ker_var2.c | 2 +- frame/3/trmm/bli_trmm_rl_ker_var2.h | 2 +- frame/3/trmm/bli_trmm_ru_ker_var2.c | 2 +- frame/3/trmm/bli_trmm_ru_ker_var2.h | 2 +- frame/3/trmm/bli_trmm_target.c | 2 +- frame/3/trmm/bli_trmm_target.h | 2 +- frame/3/trmm/bli_trmm_threading.c | 2 +- frame/3/trmm/bli_trmm_threading.h | 2 +- frame/3/trmm/other/bli_trmm_ll_blk_var1.c | 2 +- frame/3/trmm/other/bli_trmm_ll_blk_var1.h | 2 +- frame/3/trmm/other/bli_trmm_ll_blk_var4.c | 2 +- frame/3/trmm/other/bli_trmm_ll_blk_var4.h | 2 +- frame/3/trmm/other/bli_trmm_lu_blk_var1.c | 2 +- frame/3/trmm/other/bli_trmm_lu_blk_var1.h | 2 +- frame/3/trmm/other/bli_trmm_lu_blk_var4.c | 2 +- frame/3/trmm/other/bli_trmm_lu_blk_var4.h | 2 +- frame/3/trmm3/3m/bli_trmm33m.c | 2 +- frame/3/trmm3/3m/bli_trmm33m.h | 2 +- frame/3/trmm3/4m/bli_trmm34m.c | 2 +- frame/3/trmm3/4m/bli_trmm34m.h | 2 +- frame/3/trmm3/bli_trmm3.c | 2 +- frame/3/trmm3/bli_trmm3.h | 2 +- frame/3/trmm3/bli_trmm3_check.c | 2 +- frame/3/trmm3/bli_trmm3_check.h | 2 +- frame/3/trmm3/bli_trmm3_front.c | 2 +- frame/3/trmm3/bli_trmm3_front.h | 2 +- frame/3/trsm/3m/bli_trsm3m.c | 2 +- frame/3/trsm/3m/bli_trsm3m.h | 2 +- frame/3/trsm/3m/bli_trsm3m_cntl.c | 2 +- frame/3/trsm/3m/bli_trsm3m_cntl.h | 2 +- frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c | 2 +- frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h | 2 +- frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c | 2 +- frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h | 2 +- frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c | 2 +- frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h | 2 +- frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c | 2 +- frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h | 2 +- frame/3/trsm/4m/bli_trsm4m.c | 2 +- frame/3/trsm/4m/bli_trsm4m.h | 2 +- frame/3/trsm/4m/bli_trsm4m_cntl.c | 2 +- frame/3/trsm/4m/bli_trsm4m_cntl.h | 2 +- frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c | 2 +- frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h | 2 +- frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c | 2 +- frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h | 2 +- frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c | 2 +- frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h | 2 +- frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c | 2 +- frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h | 2 +- frame/3/trsm/bli_gemmtrsm_ukernel.c | 2 +- frame/3/trsm/bli_gemmtrsm_ukernel.h | 2 +- frame/3/trsm/bli_trsm.c | 2 +- frame/3/trsm/bli_trsm.h | 2 +- frame/3/trsm/bli_trsm_blk_var1b.c | 2 +- frame/3/trsm/bli_trsm_blk_var1b.h | 2 +- frame/3/trsm/bli_trsm_blk_var1f.c | 2 +- frame/3/trsm/bli_trsm_blk_var1f.h | 2 +- frame/3/trsm/bli_trsm_blk_var2b.c | 2 +- frame/3/trsm/bli_trsm_blk_var2b.h | 2 +- frame/3/trsm/bli_trsm_blk_var2f.c | 2 +- frame/3/trsm/bli_trsm_blk_var2f.h | 2 +- frame/3/trsm/bli_trsm_blk_var3b.c | 2 +- frame/3/trsm/bli_trsm_blk_var3b.h | 2 +- frame/3/trsm/bli_trsm_blk_var3f.c | 2 +- frame/3/trsm/bli_trsm_blk_var3f.h | 2 +- frame/3/trsm/bli_trsm_check.c | 2 +- frame/3/trsm/bli_trsm_check.h | 2 +- frame/3/trsm/bli_trsm_cntl.c | 2 +- frame/3/trsm/bli_trsm_cntl.h | 2 +- frame/3/trsm/bli_trsm_front.c | 2 +- frame/3/trsm/bli_trsm_front.h | 2 +- frame/3/trsm/bli_trsm_int.c | 2 +- frame/3/trsm/bli_trsm_int.h | 2 +- frame/3/trsm/bli_trsm_ll_ker_var2.c | 2 +- frame/3/trsm/bli_trsm_ll_ker_var2.h | 2 +- frame/3/trsm/bli_trsm_lu_ker_var2.c | 2 +- frame/3/trsm/bli_trsm_lu_ker_var2.h | 2 +- frame/3/trsm/bli_trsm_rl_ker_var2.c | 2 +- frame/3/trsm/bli_trsm_rl_ker_var2.h | 2 +- frame/3/trsm/bli_trsm_ru_ker_var2.c | 2 +- frame/3/trsm/bli_trsm_ru_ker_var2.h | 2 +- frame/3/trsm/bli_trsm_threading.c | 2 +- frame/3/trsm/bli_trsm_threading.h | 2 +- frame/3/trsm/bli_trsm_ukernel.c | 2 +- frame/3/trsm/bli_trsm_ukernel.h | 2 +- frame/3/trsm/other/bli_trsm_l_blk_var4.c | 2 +- frame/3/trsm/other/bli_trsm_l_blk_var4.h | 2 +- frame/3/trsm/other/bli_trsm_u_blk_var4.c | 2 +- frame/3/trsm/other/bli_trsm_u_blk_var4.h | 2 +- frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c | 2 +- frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h | 2 +- frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c | 2 +- frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h | 2 +- frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c | 2 +- frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h | 2 +- frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c | 2 +- frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h | 2 +- frame/base/bli_blocksize.c | 2 +- frame/base/bli_blocksize.h | 2 +- frame/base/bli_check.c | 2 +- frame/base/bli_check.h | 2 +- frame/base/bli_clock.c | 2 +- frame/base/bli_clock.h | 2 +- frame/base/bli_error.c | 2 +- frame/base/bli_error.h | 2 +- frame/base/bli_func.c | 2 +- frame/base/bli_func.h | 2 +- frame/base/bli_getopt.c | 2 +- frame/base/bli_getopt.h | 2 +- frame/base/bli_info.c | 2 +- frame/base/bli_info.h | 2 +- frame/base/bli_init.c | 2 +- frame/base/bli_init.h | 2 +- frame/base/bli_machval.c | 2 +- frame/base/bli_machval.h | 2 +- frame/base/bli_malloc.c | 2 +- frame/base/bli_malloc.h | 2 +- frame/base/bli_mem.c | 2 +- frame/base/bli_mem.h | 2 +- frame/base/bli_obj.c | 2 +- frame/base/bli_obj.h | 2 +- frame/base/bli_obj_scalar.c | 2 +- frame/base/bli_obj_scalar.h | 2 +- frame/base/bli_param_map.c | 2 +- frame/base/bli_param_map.h | 2 +- frame/base/bli_part.c | 2 +- frame/base/bli_part.h | 2 +- frame/base/bli_query.c | 2 +- frame/base/bli_query.h | 2 +- frame/base/bli_threading.c | 2 +- frame/base/bli_threading.h | 2 +- frame/base/check/bli_obj_check.c | 2 +- frame/base/check/bli_obj_check.h | 2 +- frame/base/check/bli_part_check.c | 2 +- frame/base/check/bli_part_check.h | 2 +- frame/base/noopt/bli_dlamch.h | 2 +- frame/base/noopt/bli_lsame.h | 2 +- frame/base/noopt/bli_slamch.h | 2 +- frame/cntl/bli_cntl.c | 2 +- frame/cntl/bli_cntl.h | 2 +- frame/cntl/bli_cntl_init.c | 2 +- frame/cntl/bli_cntl_init.h | 2 +- frame/compat/attic/bla_gbmv.c | 2 +- frame/compat/attic/bla_gbmv.h | 2 +- frame/compat/attic/bla_hbmv.c | 2 +- frame/compat/attic/bla_hbmv.h | 2 +- frame/compat/attic/bla_hpmv.c | 2 +- frame/compat/attic/bla_hpmv.h | 2 +- frame/compat/attic/bla_hpr.c | 2 +- frame/compat/attic/bla_hpr.h | 2 +- frame/compat/attic/bla_hpr2.c | 2 +- frame/compat/attic/bla_hpr2.h | 2 +- frame/compat/attic/bla_rot.c | 2 +- frame/compat/attic/bla_rot.h | 2 +- frame/compat/attic/bla_rotg.c | 2 +- frame/compat/attic/bla_rotg.h | 2 +- frame/compat/attic/bla_rotm.c | 2 +- frame/compat/attic/bla_rotm.h | 2 +- frame/compat/attic/bla_rotmg.c | 2 +- frame/compat/attic/bla_rotmg.h | 2 +- frame/compat/attic/bla_sbmv.c | 2 +- frame/compat/attic/bla_sbmv.h | 2 +- frame/compat/attic/bla_spmv.c | 2 +- frame/compat/attic/bla_spmv.h | 2 +- frame/compat/attic/bla_spr.c | 2 +- frame/compat/attic/bla_spr.h | 2 +- frame/compat/attic/bla_spr2.c | 2 +- frame/compat/attic/bla_spr2.h | 2 +- frame/compat/attic/bla_tbmv.c | 2 +- frame/compat/attic/bla_tbmv.h | 2 +- frame/compat/attic/bla_tbsv.c | 2 +- frame/compat/attic/bla_tbsv.h | 2 +- frame/compat/attic/bla_tpmv.c | 2 +- frame/compat/attic/bla_tpmv.h | 2 +- frame/compat/attic/bla_tpsv.c | 2 +- frame/compat/attic/bla_tpsv.h | 2 +- frame/compat/bla_amax.c | 2 +- frame/compat/bla_amax.h | 2 +- frame/compat/bla_asum.c | 2 +- frame/compat/bla_asum.h | 2 +- frame/compat/bla_axpy.c | 2 +- frame/compat/bla_axpy.h | 2 +- frame/compat/bla_copy.c | 2 +- frame/compat/bla_copy.h | 2 +- frame/compat/bla_dot.c | 2 +- frame/compat/bla_dot.h | 2 +- frame/compat/bla_gemm.c | 2 +- frame/compat/bla_gemm.h | 2 +- frame/compat/bla_gemv.c | 2 +- frame/compat/bla_gemv.h | 2 +- frame/compat/bla_ger.c | 2 +- frame/compat/bla_ger.h | 2 +- frame/compat/bla_hemm.c | 2 +- frame/compat/bla_hemm.h | 2 +- frame/compat/bla_hemv.c | 2 +- frame/compat/bla_hemv.h | 2 +- frame/compat/bla_her.c | 2 +- frame/compat/bla_her.h | 2 +- frame/compat/bla_her2.c | 2 +- frame/compat/bla_her2.h | 2 +- frame/compat/bla_her2k.c | 2 +- frame/compat/bla_her2k.h | 2 +- frame/compat/bla_herk.c | 2 +- frame/compat/bla_herk.h | 2 +- frame/compat/bla_nrm2.c | 2 +- frame/compat/bla_nrm2.h | 2 +- frame/compat/bla_scal.c | 2 +- frame/compat/bla_scal.h | 2 +- frame/compat/bla_swap.c | 2 +- frame/compat/bla_swap.h | 2 +- frame/compat/bla_symm.c | 2 +- frame/compat/bla_symm.h | 2 +- frame/compat/bla_symv.c | 2 +- frame/compat/bla_symv.h | 2 +- frame/compat/bla_syr.c | 2 +- frame/compat/bla_syr.h | 2 +- frame/compat/bla_syr2.c | 2 +- frame/compat/bla_syr2.h | 2 +- frame/compat/bla_syr2k.c | 2 +- frame/compat/bla_syr2k.h | 2 +- frame/compat/bla_syrk.c | 2 +- frame/compat/bla_syrk.h | 2 +- frame/compat/bla_trmm.c | 2 +- frame/compat/bla_trmm.h | 2 +- frame/compat/bla_trmv.c | 2 +- frame/compat/bla_trmv.h | 2 +- frame/compat/bla_trsm.c | 2 +- frame/compat/bla_trsm.h | 2 +- frame/compat/bla_trsv.c | 2 +- frame/compat/bla_trsv.h | 2 +- frame/compat/bli_blas.h | 2 +- frame/compat/check/bla_gemm_check.c | 2 +- frame/compat/check/bla_gemm_check.h | 2 +- frame/compat/check/bla_gemv_check.c | 2 +- frame/compat/check/bla_gemv_check.h | 2 +- frame/compat/check/bla_ger_check.c | 2 +- frame/compat/check/bla_ger_check.h | 2 +- frame/compat/check/bla_hemm_check.c | 2 +- frame/compat/check/bla_hemm_check.h | 2 +- frame/compat/check/bla_hemv_check.c | 2 +- frame/compat/check/bla_hemv_check.h | 2 +- frame/compat/check/bla_her2_check.c | 2 +- frame/compat/check/bla_her2_check.h | 2 +- frame/compat/check/bla_her2k_check.c | 2 +- frame/compat/check/bla_her2k_check.h | 2 +- frame/compat/check/bla_her_check.c | 2 +- frame/compat/check/bla_her_check.h | 2 +- frame/compat/check/bla_herk_check.c | 2 +- frame/compat/check/bla_herk_check.h | 2 +- frame/compat/check/bla_symm_check.c | 2 +- frame/compat/check/bla_symm_check.h | 2 +- frame/compat/check/bla_symv_check.c | 2 +- frame/compat/check/bla_symv_check.h | 2 +- frame/compat/check/bla_syr2_check.c | 2 +- frame/compat/check/bla_syr2_check.h | 2 +- frame/compat/check/bla_syr2k_check.c | 2 +- frame/compat/check/bla_syr2k_check.h | 2 +- frame/compat/check/bla_syr_check.c | 2 +- frame/compat/check/bla_syr_check.h | 2 +- frame/compat/check/bla_syrk_check.c | 2 +- frame/compat/check/bla_syrk_check.h | 2 +- frame/compat/check/bla_trmm_check.c | 2 +- frame/compat/check/bla_trmm_check.h | 2 +- frame/compat/check/bla_trmv_check.c | 2 +- frame/compat/check/bla_trmv_check.h | 2 +- frame/compat/check/bla_trsm_check.c | 2 +- frame/compat/check/bla_trsm_check.h | 2 +- frame/compat/check/bla_trsv_check.c | 2 +- frame/compat/check/bla_trsv_check.h | 2 +- frame/compat/f2c/bla_gbmv.c | 2 +- frame/compat/f2c/bla_gbmv.h | 2 +- frame/compat/f2c/bla_hbmv.c | 2 +- frame/compat/f2c/bla_hbmv.h | 2 +- frame/compat/f2c/bla_hpmv.c | 2 +- frame/compat/f2c/bla_hpmv.h | 2 +- frame/compat/f2c/bla_hpr.c | 2 +- frame/compat/f2c/bla_hpr.h | 2 +- frame/compat/f2c/bla_hpr2.c | 2 +- frame/compat/f2c/bla_hpr2.h | 2 +- frame/compat/f2c/bla_lsame.c | 2 +- frame/compat/f2c/bla_lsame.h | 2 +- frame/compat/f2c/bla_rot.c | 2 +- frame/compat/f2c/bla_rot.h | 2 +- frame/compat/f2c/bla_rotg.c | 2 +- frame/compat/f2c/bla_rotg.h | 2 +- frame/compat/f2c/bla_rotm.c | 2 +- frame/compat/f2c/bla_rotm.h | 2 +- frame/compat/f2c/bla_rotmg.c | 2 +- frame/compat/f2c/bla_rotmg.h | 2 +- frame/compat/f2c/bla_sbmv.c | 2 +- frame/compat/f2c/bla_sbmv.h | 2 +- frame/compat/f2c/bla_spmv.c | 2 +- frame/compat/f2c/bla_spmv.h | 2 +- frame/compat/f2c/bla_spr.c | 2 +- frame/compat/f2c/bla_spr.h | 2 +- frame/compat/f2c/bla_spr2.c | 2 +- frame/compat/f2c/bla_spr2.h | 2 +- frame/compat/f2c/bla_tbmv.c | 2 +- frame/compat/f2c/bla_tbmv.h | 2 +- frame/compat/f2c/bla_tbsv.c | 2 +- frame/compat/f2c/bla_tbsv.h | 2 +- frame/compat/f2c/bla_tpmv.c | 2 +- frame/compat/f2c/bla_tpmv.h | 2 +- frame/compat/f2c/bla_tpsv.c | 2 +- frame/compat/f2c/bla_tpsv.h | 2 +- frame/compat/f2c/bla_xerbla.c | 2 +- frame/compat/f2c/bla_xerbla.h | 2 +- frame/compat/f2c/util/bla_c_abs.c | 2 +- frame/compat/f2c/util/bla_c_abs.h | 2 +- frame/compat/f2c/util/bla_c_div.c | 2 +- frame/compat/f2c/util/bla_c_div.h | 2 +- frame/compat/f2c/util/bla_d_abs.c | 2 +- frame/compat/f2c/util/bla_d_abs.h | 2 +- frame/compat/f2c/util/bla_d_cnjg.c | 2 +- frame/compat/f2c/util/bla_d_cnjg.h | 2 +- frame/compat/f2c/util/bla_d_imag.c | 2 +- frame/compat/f2c/util/bla_d_imag.h | 2 +- frame/compat/f2c/util/bla_d_sign.c | 2 +- frame/compat/f2c/util/bla_d_sign.h | 2 +- frame/compat/f2c/util/bla_f__cabs.c | 2 +- frame/compat/f2c/util/bla_f__cabs.h | 2 +- frame/compat/f2c/util/bla_r_abs.c | 2 +- frame/compat/f2c/util/bla_r_abs.h | 2 +- frame/compat/f2c/util/bla_r_cnjg.c | 2 +- frame/compat/f2c/util/bla_r_cnjg.h | 2 +- frame/compat/f2c/util/bla_r_imag.c | 2 +- frame/compat/f2c/util/bla_r_imag.h | 2 +- frame/compat/f2c/util/bla_r_sign.c | 2 +- frame/compat/f2c/util/bla_r_sign.h | 2 +- frame/compat/f2c/util/bla_z_abs.c | 2 +- frame/compat/f2c/util/bla_z_abs.h | 2 +- frame/compat/f2c/util/bla_z_div.c | 2 +- frame/compat/f2c/util/bla_z_div.h | 2 +- frame/include/bli_auxinfo_macro_defs.h | 2 +- frame/include/bli_blas_macro_defs.h | 2 +- frame/include/bli_complex_macro_defs.h | 2 +- frame/include/bli_error_macro_defs.h | 2 +- frame/include/bli_extern_defs.h | 2 +- frame/include/bli_genarray_macro_defs.h | 2 +- frame/include/bli_gentfunc_macro_defs.h | 2 +- frame/include/bli_gentprot_macro_defs.h | 2 +- frame/include/bli_kernel_3m_macro_defs.h | 2 +- frame/include/bli_kernel_4m_macro_defs.h | 2 +- frame/include/bli_kernel_macro_defs.h | 2 +- frame/include/bli_kernel_post_macro_defs.h | 2 +- frame/include/bli_kernel_pre_macro_defs.h | 2 +- frame/include/bli_kernel_prototypes.h | 2 +- frame/include/bli_kernel_type_defs.h | 2 +- frame/include/bli_macro_defs.h | 2 +- frame/include/bli_mem_macro_defs.h | 2 +- frame/include/bli_mem_pool_macro_defs.h | 2 +- frame/include/bli_obj_macro_defs.h | 2 +- frame/include/bli_param_macro_defs.h | 2 +- frame/include/bli_pool_macro_defs.h | 2 +- frame/include/bli_scalar_macro_defs.h | 2 +- frame/include/bli_system.h | 2 +- frame/include/bli_type_defs.h | 2 +- frame/include/blis.h | 2 +- frame/include/level0/bli_absq2s.h | 2 +- frame/include/level0/bli_abval2s.h | 2 +- frame/include/level0/bli_add3s.h | 2 +- frame/include/level0/bli_addjs.h | 2 +- frame/include/level0/bli_adds.h | 2 +- frame/include/level0/bli_adds_mxn.h | 2 +- frame/include/level0/bli_adds_mxn_uplo.h | 2 +- frame/include/level0/bli_axmys.h | 2 +- frame/include/level0/bli_axpyjs.h | 2 +- frame/include/level0/bli_axpys.h | 2 +- frame/include/level0/bli_cast.h | 2 +- frame/include/level0/bli_conjs.h | 2 +- frame/include/level0/bli_constants.h | 2 +- frame/include/level0/bli_copycjs.h | 2 +- frame/include/level0/bli_copyjs.h | 2 +- frame/include/level0/bli_copys.h | 2 +- frame/include/level0/bli_copys_mxn.h | 2 +- frame/include/level0/bli_dotjs.h | 2 +- frame/include/level0/bli_dots.h | 2 +- frame/include/level0/bli_eq.h | 2 +- frame/include/level0/bli_fprints.h | 2 +- frame/include/level0/bli_gets.h | 2 +- frame/include/level0/bli_inverts.h | 2 +- frame/include/level0/bli_invscaljs.h | 2 +- frame/include/level0/bli_invscals.h | 2 +- frame/include/level0/bli_neg2s.h | 2 +- frame/include/level0/bli_rands.h | 2 +- frame/include/level0/bli_scal2js.h | 2 +- frame/include/level0/bli_scal2s.h | 2 +- frame/include/level0/bli_scalcjs.h | 2 +- frame/include/level0/bli_scaljs.h | 2 +- frame/include/level0/bli_scals.h | 2 +- frame/include/level0/bli_set0s.h | 2 +- frame/include/level0/bli_set0s_mxn.h | 2 +- frame/include/level0/bli_set1s.h | 2 +- frame/include/level0/bli_seti0s.h | 2 +- frame/include/level0/bli_setis.h | 2 +- frame/include/level0/bli_setrs.h | 2 +- frame/include/level0/bli_sets.h | 2 +- frame/include/level0/bli_sqrt2s.h | 2 +- frame/include/level0/bli_subjs.h | 2 +- frame/include/level0/bli_subs.h | 2 +- frame/include/level0/bli_swaps.h | 2 +- frame/include/level0/bli_xpbys.h | 2 +- frame/include/level0/bli_xpbys_mxn.h | 2 +- frame/include/level0/bli_xpbys_mxn_uplo.h | 2 +- frame/include/level0/old/bli_castfrom.h | 2 +- frame/include/level0/old/bli_castto.h | 2 +- frame/include/level0/old/bli_copynzjs.h | 2 +- frame/include/level0/old/bli_copynzs.h | 2 +- frame/include/level0/old/bli_invscalcjs.h | 2 +- frame/include/level0/old/bli_scalcjs.h | 2 +- frame/include/level0/old/bli_set0ris_mxn.h | 2 +- frame/include/level0/ri/bli_absq2ris.h | 2 +- frame/include/level0/ri/bli_abval2ris.h | 2 +- frame/include/level0/ri/bli_add3ris.h | 2 +- frame/include/level0/ri/bli_addjris.h | 2 +- frame/include/level0/ri/bli_addris.h | 2 +- frame/include/level0/ri/bli_axmyris.h | 2 +- frame/include/level0/ri/bli_axpbyris.h | 2 +- frame/include/level0/ri/bli_axpyjris.h | 2 +- frame/include/level0/ri/bli_axpyris.h | 2 +- frame/include/level0/ri/bli_conjris.h | 2 +- frame/include/level0/ri/bli_copycjris.h | 2 +- frame/include/level0/ri/bli_copyjris.h | 2 +- frame/include/level0/ri/bli_copyris.h | 2 +- frame/include/level0/ri/bli_eqri.h | 2 +- frame/include/level0/ri/bli_invertris.h | 2 +- frame/include/level0/ri/bli_invscaljris.h | 2 +- frame/include/level0/ri/bli_invscalris.h | 2 +- frame/include/level0/ri/bli_neg2ris.h | 2 +- frame/include/level0/ri/bli_scal2jris.h | 2 +- frame/include/level0/ri/bli_scal2ris.h | 2 +- frame/include/level0/ri/bli_scalcjris.h | 2 +- frame/include/level0/ri/bli_scaljris.h | 2 +- frame/include/level0/ri/bli_scalris.h | 2 +- frame/include/level0/ri/bli_scalris_mxn_uplo.h | 2 +- frame/include/level0/ri/bli_set0ris.h | 2 +- frame/include/level0/ri/bli_sqrt2ris.h | 2 +- frame/include/level0/ri/bli_subjris.h | 2 +- frame/include/level0/ri/bli_subris.h | 2 +- frame/include/level0/ri/bli_swapris.h | 2 +- frame/include/level0/ri/bli_xpbyris.h | 2 +- frame/include/level0/ri3/bli_copyjri3s.h | 2 +- frame/include/level0/ri3/bli_copyri3s.h | 2 +- frame/include/level0/ri3/bli_scal2jri3s.h | 2 +- frame/include/level0/ri3/bli_scal2ri3s.h | 2 +- frame/util/amaxv/bli_amaxv.c | 2 +- frame/util/amaxv/bli_amaxv.h | 2 +- frame/util/amaxv/bli_amaxv_check.c | 2 +- frame/util/amaxv/bli_amaxv_check.h | 2 +- frame/util/amaxv/bli_amaxv_unb_var1.c | 2 +- frame/util/amaxv/bli_amaxv_unb_var1.h | 2 +- frame/util/asumv/bli_asumv.c | 2 +- frame/util/asumv/bli_asumv.h | 2 +- frame/util/asumv/bli_asumv_check.c | 2 +- frame/util/asumv/bli_asumv_check.h | 2 +- frame/util/asumv/bli_asumv_unb_var1.c | 2 +- frame/util/asumv/bli_asumv_unb_var1.h | 2 +- frame/util/mkherm/bli_mkherm.c | 2 +- frame/util/mkherm/bli_mkherm.h | 2 +- frame/util/mkherm/bli_mkherm_check.c | 2 +- frame/util/mkherm/bli_mkherm_check.h | 2 +- frame/util/mkherm/bli_mkherm_unb_var1.c | 2 +- frame/util/mkherm/bli_mkherm_unb_var1.h | 2 +- frame/util/mksymm/bli_mksymm.c | 2 +- frame/util/mksymm/bli_mksymm.h | 2 +- frame/util/mksymm/bli_mksymm_check.c | 2 +- frame/util/mksymm/bli_mksymm_check.h | 2 +- frame/util/mksymm/bli_mksymm_unb_var1.c | 2 +- frame/util/mksymm/bli_mksymm_unb_var1.h | 2 +- frame/util/mktrim/bli_mktrim.c | 2 +- frame/util/mktrim/bli_mktrim.h | 2 +- frame/util/mktrim/bli_mktrim_check.c | 2 +- frame/util/mktrim/bli_mktrim_check.h | 2 +- frame/util/mktrim/bli_mktrim_unb_var1.c | 2 +- frame/util/mktrim/bli_mktrim_unb_var1.h | 2 +- frame/util/norm1m/bli_norm1m.c | 2 +- frame/util/norm1m/bli_norm1m.h | 2 +- frame/util/norm1m/bli_norm1m_check.c | 2 +- frame/util/norm1m/bli_norm1m_check.h | 2 +- frame/util/norm1m/bli_norm1m_unb_var1.c | 2 +- frame/util/norm1m/bli_norm1m_unb_var1.h | 2 +- frame/util/norm1v/bli_norm1v.c | 2 +- frame/util/norm1v/bli_norm1v.h | 2 +- frame/util/norm1v/bli_norm1v_check.c | 2 +- frame/util/norm1v/bli_norm1v_check.h | 2 +- frame/util/norm1v/bli_norm1v_unb_var1.c | 2 +- frame/util/norm1v/bli_norm1v_unb_var1.h | 2 +- frame/util/normfm/bli_normfm.c | 2 +- frame/util/normfm/bli_normfm.h | 2 +- frame/util/normfm/bli_normfm_check.c | 2 +- frame/util/normfm/bli_normfm_check.h | 2 +- frame/util/normfm/bli_normfm_unb_var1.c | 2 +- frame/util/normfm/bli_normfm_unb_var1.h | 2 +- frame/util/normfv/bli_normfv.c | 2 +- frame/util/normfv/bli_normfv.h | 2 +- frame/util/normfv/bli_normfv_check.c | 2 +- frame/util/normfv/bli_normfv_check.h | 2 +- frame/util/normfv/bli_normfv_unb_var1.c | 2 +- frame/util/normfv/bli_normfv_unb_var1.h | 2 +- frame/util/normim/bli_normim.c | 2 +- frame/util/normim/bli_normim.h | 2 +- frame/util/normim/bli_normim_check.c | 2 +- frame/util/normim/bli_normim_check.h | 2 +- frame/util/normim/bli_normim_unb_var1.c | 2 +- frame/util/normim/bli_normim_unb_var1.h | 2 +- frame/util/normiv/bli_normiv.c | 2 +- frame/util/normiv/bli_normiv.h | 2 +- frame/util/normiv/bli_normiv_check.c | 2 +- frame/util/normiv/bli_normiv_check.h | 2 +- frame/util/normiv/bli_normiv_unb_var1.c | 2 +- frame/util/normiv/bli_normiv_unb_var1.h | 2 +- frame/util/printm/bli_fprintm.c | 2 +- frame/util/printm/bli_fprintm.h | 2 +- frame/util/printm/bli_fprintm_check.c | 2 +- frame/util/printm/bli_fprintm_check.h | 2 +- frame/util/printm/bli_printm.c | 2 +- frame/util/printm/bli_printm.h | 2 +- frame/util/printv/bli_fprintv.c | 2 +- frame/util/printv/bli_fprintv.h | 2 +- frame/util/printv/bli_fprintv_check.c | 2 +- frame/util/printv/bli_fprintv_check.h | 2 +- frame/util/printv/bli_printv.c | 2 +- frame/util/printv/bli_printv.h | 2 +- frame/util/randm/bli_randm.c | 2 +- frame/util/randm/bli_randm.h | 2 +- frame/util/randm/bli_randm_check.c | 2 +- frame/util/randm/bli_randm_check.h | 2 +- frame/util/randm/bli_randm_unb_var1.c | 2 +- frame/util/randm/bli_randm_unb_var1.h | 2 +- frame/util/randv/bli_randv.c | 2 +- frame/util/randv/bli_randv.h | 2 +- frame/util/randv/bli_randv_check.c | 2 +- frame/util/randv/bli_randv_check.h | 2 +- frame/util/randv/bli_randv_unb_var1.c | 2 +- frame/util/randv/bli_randv_unb_var1.h | 2 +- frame/util/sumsqv/bli_sumsqv.c | 2 +- frame/util/sumsqv/bli_sumsqv.h | 2 +- frame/util/sumsqv/bli_sumsqv_check.c | 2 +- frame/util/sumsqv/bli_sumsqv_check.h | 2 +- frame/util/sumsqv/bli_sumsqv_unb_var1.c | 2 +- frame/util/sumsqv/bli_sumsqv_unb_var1.h | 2 +- kernels/arm/neon/3/bli_gemm_opt_4x4.c | 2 +- kernels/armv7a/3/bli_gemm_opt_4x4.c | 2 +- kernels/bgq/1/bli_axpyv_opt_var1.c | 2 +- kernels/bgq/1/bli_dotv_opt_var1.c | 2 +- kernels/bgq/1f/bli_axpyf_opt_var1.c | 2 +- kernels/bgq/3/bli_gemm_8x8.c | 2 +- kernels/bgq/3/bli_gemm_8x8.h | 2 +- kernels/c99/3/bli_gemm_ref_4x4.c | 2 +- kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c | 2 +- kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c | 2 +- kernels/c99/3/bli_trsm_l_ref_4x4.c | 2 +- kernels/c99/3/bli_trsm_u_ref_4x4.c | 2 +- kernels/loongson3a/3/bli_gemm_opt_d4x4.c | 2 +- kernels/mic/3/bli_dgemm_opt_30x8.c | 2 +- kernels/mic/3/bli_sgemm_opt_30x16.c | 2 +- kernels/nacl/pnacl/1/bli_axpyv_opt.c | 2 +- kernels/nacl/pnacl/1/bli_dotv_opt.c | 2 +- kernels/nacl/pnacl/3/bli_gemm_opt.c | 2 +- kernels/power7/3/bli_gemm_opt_8x4.h | 2 +- kernels/x86/1m/bli_packm_2xk.c | 2 +- kernels/x86/1m/bli_packm_2xk.h | 2 +- kernels/x86/1m/bli_packm_4xk.c | 2 +- kernels/x86/1m/bli_packm_4xk.h | 2 +- kernels/x86/3/bli_gemm_opt_d2x4.c | 2 +- kernels/x86/3/bli_gemm_opt_d2x4.h | 2 +- kernels/x86/3/bli_gemm_opt_d4x2.c | 2 +- kernels/x86/3/bli_gemm_opt_d4x2.h | 2 +- kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c | 2 +- kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h | 2 +- kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c | 2 +- kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h | 2 +- kernels/x86/3/bli_trsm_l_opt_d4x2.c | 2 +- kernels/x86/3/bli_trsm_l_opt_d4x2.h | 2 +- kernels/x86_64/avx/3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c | 2 +- kernels/x86_64/core2-sse3/1/bli_axpyv_opt_var1.c | 2 +- kernels/x86_64/core2-sse3/1/bli_dotv_opt_var1.c | 2 +- kernels/x86_64/core2-sse3/1f/bli_axpy2v_opt_var1.c | 2 +- kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c | 2 +- kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c.alt | 2 +- kernels/x86_64/core2-sse3/1f/bli_dotaxpyv_opt_var1.c | 2 +- kernels/x86_64/core2-sse3/1f/bli_dotxaxpyf_opt_var1.c | 2 +- kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c | 2 +- kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c.alt | 2 +- kernels/x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c | 2 +- kernels/x86_64/core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c | 2 +- kernels/x86_64/core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c | 2 +- kernels/x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c | 2 +- kernels/x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c | 2 +- kernels/x86_64/piledriver/3/bli_gemm_4x6.c | 2 +- mpi_test/Makefile | 2 +- mpi_test/test_gemm.c | 2 +- mpi_test/test_hemm.c | 2 +- mpi_test/test_her2k.c | 2 +- mpi_test/test_herk.c | 2 +- mpi_test/test_trmm.c | 2 +- mpi_test/test_trsm.c | 2 +- test/Makefile | 2 +- test/exec_sizes/Makefile | 2 +- test/exec_sizes/grab_top_outputs.sh | 2 +- test/exec_sizes/test_size.c | 2 +- test/old/Makefile.prev | 2 +- test/test_gemm.c | 2 +- test/test_gemv.c | 2 +- test/test_ger.c | 2 +- test/test_hemm.c | 2 +- test/test_hemv.c | 2 +- test/test_her.c | 2 +- test/test_her2.c | 2 +- test/test_her2k.c | 2 +- test/test_herk.c | 2 +- test/test_trmm.c | 2 +- test/test_trmv.c | 2 +- test/test_trsm.c | 2 +- test/test_trsv.c | 2 +- testsuite/Makefile | 2 +- testsuite/src/test_addm.c | 2 +- testsuite/src/test_addm.h | 2 +- testsuite/src/test_addv.c | 2 +- testsuite/src/test_addv.h | 2 +- testsuite/src/test_axpy2v.c | 2 +- testsuite/src/test_axpy2v.h | 2 +- testsuite/src/test_axpyf.c | 2 +- testsuite/src/test_axpyf.h | 2 +- testsuite/src/test_axpym.c | 2 +- testsuite/src/test_axpym.h | 2 +- testsuite/src/test_axpyv.c | 2 +- testsuite/src/test_axpyv.h | 2 +- testsuite/src/test_copym.c | 2 +- testsuite/src/test_copym.h | 2 +- testsuite/src/test_copyv.c | 2 +- testsuite/src/test_copyv.h | 2 +- testsuite/src/test_dotaxpyv.c | 2 +- testsuite/src/test_dotaxpyv.h | 2 +- testsuite/src/test_dotv.c | 2 +- testsuite/src/test_dotv.h | 2 +- testsuite/src/test_dotxaxpyf.c | 2 +- testsuite/src/test_dotxaxpyf.h | 2 +- testsuite/src/test_dotxf.c | 2 +- testsuite/src/test_dotxf.h | 2 +- testsuite/src/test_dotxv.c | 2 +- testsuite/src/test_dotxv.h | 2 +- testsuite/src/test_gemm.c | 2 +- testsuite/src/test_gemm.h | 2 +- testsuite/src/test_gemm_ukr.c | 2 +- testsuite/src/test_gemm_ukr.h | 2 +- testsuite/src/test_gemmtrsm_ukr.c | 2 +- testsuite/src/test_gemmtrsm_ukr.h | 2 +- testsuite/src/test_gemv.c | 2 +- testsuite/src/test_gemv.h | 2 +- testsuite/src/test_ger.c | 2 +- testsuite/src/test_ger.h | 2 +- testsuite/src/test_hemm.c | 2 +- testsuite/src/test_hemm.h | 2 +- testsuite/src/test_hemv.c | 2 +- testsuite/src/test_hemv.h | 2 +- testsuite/src/test_her.c | 2 +- testsuite/src/test_her.h | 2 +- testsuite/src/test_her2.c | 2 +- testsuite/src/test_her2.h | 2 +- testsuite/src/test_her2k.c | 2 +- testsuite/src/test_her2k.h | 2 +- testsuite/src/test_herk.c | 2 +- testsuite/src/test_herk.h | 2 +- testsuite/src/test_libblis.c | 2 +- testsuite/src/test_libblis.h | 2 +- testsuite/src/test_normfm.c | 2 +- testsuite/src/test_normfm.h | 2 +- testsuite/src/test_normfv.c | 2 +- testsuite/src/test_normfv.h | 2 +- testsuite/src/test_randm.c | 2 +- testsuite/src/test_randm.h | 2 +- testsuite/src/test_randv.c | 2 +- testsuite/src/test_randv.h | 2 +- testsuite/src/test_scal2m.c | 2 +- testsuite/src/test_scal2m.h | 2 +- testsuite/src/test_scal2v.c | 2 +- testsuite/src/test_scal2v.h | 2 +- testsuite/src/test_scalm.c | 2 +- testsuite/src/test_scalm.h | 2 +- testsuite/src/test_scalv.c | 2 +- testsuite/src/test_scalv.h | 2 +- testsuite/src/test_setm.c | 2 +- testsuite/src/test_setm.h | 2 +- testsuite/src/test_setv.c | 2 +- testsuite/src/test_setv.h | 2 +- testsuite/src/test_subm.c | 2 +- testsuite/src/test_subm.h | 2 +- testsuite/src/test_subv.c | 2 +- testsuite/src/test_subv.h | 2 +- testsuite/src/test_symm.c | 2 +- testsuite/src/test_symm.h | 2 +- testsuite/src/test_symv.c | 2 +- testsuite/src/test_symv.h | 2 +- testsuite/src/test_syr.c | 2 +- testsuite/src/test_syr.h | 2 +- testsuite/src/test_syr2.c | 2 +- testsuite/src/test_syr2.h | 2 +- testsuite/src/test_syr2k.c | 2 +- testsuite/src/test_syr2k.h | 2 +- testsuite/src/test_syrk.c | 2 +- testsuite/src/test_syrk.h | 2 +- testsuite/src/test_trmm.c | 2 +- testsuite/src/test_trmm.h | 2 +- testsuite/src/test_trmm3.c | 2 +- testsuite/src/test_trmm3.h | 2 +- testsuite/src/test_trmv.c | 2 +- testsuite/src/test_trmv.h | 2 +- testsuite/src/test_trsm.c | 2 +- testsuite/src/test_trsm.h | 2 +- testsuite/src/test_trsm_ukr.c | 2 +- testsuite/src/test_trsm_ukr.h | 2 +- testsuite/src/test_trsv.c | 2 +- testsuite/src/test_trsv.h | 2 +- windows/Makefile | 2 +- windows/build/bli_config.h | 2 +- windows/build/bli_kernel.h | 2 +- windows/build/config.mk.in | 2 +- windows/build/defs.mk | 2 +- windows/build/gather-src-for-windows.py | 2 +- windows/build/gen-check-rev-file.py | 2 +- windows/build/gen-config-file.py | 2 +- windows/build/nmake-help.cmd | 2 +- windows/configure.cmd | 2 +- 1558 files changed, 1558 insertions(+), 1558 deletions(-) diff --git a/LICENSE b/LICENSE index 525692880..b3add9dfb 100644 --- a/LICENSE +++ b/LICENSE @@ -7,7 +7,7 @@ The BLIS framework is licensed under the following license, typically known as the "new" or "modified" or "3-clause" BSD license. -Copyright (C) 2014, The University of Texas +Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/Makefile b/Makefile index 97648b48d..185aad985 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/build/bump-version.sh b/build/bump-version.sh index 4ef897699..7d85f61c1 100755 --- a/build/bump-version.sh +++ b/build/bump-version.sh @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/build/config.mk.in b/build/config.mk.in index 0efdfc212..1cfe327b5 100644 --- a/build/config.mk.in +++ b/build/config.mk.in @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/build/gen-make-frags/fragment.mk b/build/gen-make-frags/fragment.mk index 912953d21..bd670ce4c 100644 --- a/build/gen-make-frags/fragment.mk +++ b/build/gen-make-frags/fragment.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/build/gen-make-frags/gen-make-frag.sh b/build/gen-make-frags/gen-make-frag.sh index b26da129d..6af06d2f4 100755 --- a/build/gen-make-frags/gen-make-frag.sh +++ b/build/gen-make-frags/gen-make-frag.sh @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/build/mirror-tree.sh b/build/mirror-tree.sh index 709d8ce77..bd1874d9c 100755 --- a/build/mirror-tree.sh +++ b/build/mirror-tree.sh @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/build/templates/license.c b/build/templates/license.c index 811fed073..ca466ece9 100644 --- a/build/templates/license.c +++ b/build/templates/license.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/build/templates/license.h b/build/templates/license.h index 811fed073..ca466ece9 100644 --- a/build/templates/license.h +++ b/build/templates/license.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/build/templates/license.sh b/build/templates/license.sh index a98f3be0b..3164151cd 100644 --- a/build/templates/license.sh +++ b/build/templates/license.sh @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/build/update-version-file.sh b/build/update-version-file.sh index dda44e34d..4b95049ca 100755 --- a/build/update-version-file.sh +++ b/build/update-version-file.sh @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/armv7a/bli_config.h b/config/armv7a/bli_config.h index bf01caefe..c70fa701e 100644 --- a/config/armv7a/bli_config.h +++ b/config/armv7a/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/armv7a/bli_kernel.h b/config/armv7a/bli_kernel.h index 74f77b950..165c7547a 100644 --- a/config/armv7a/bli_kernel.h +++ b/config/armv7a/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/armv7a/make_defs.mk b/config/armv7a/make_defs.mk index ecb2bc6b1..4aa4ce6d2 100644 --- a/config/armv7a/make_defs.mk +++ b/config/armv7a/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/bgq/bli_config.h b/config/bgq/bli_config.h index 234f39648..b7ed5d899 100644 --- a/config/bgq/bli_config.h +++ b/config/bgq/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/bgq/bli_kernel.h b/config/bgq/bli_kernel.h index 80065ec06..b1a915f9c 100644 --- a/config/bgq/bli_kernel.h +++ b/config/bgq/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/bgq/make_defs.mk b/config/bgq/make_defs.mk index dfb96ca95..e220f047d 100644 --- a/config/bgq/make_defs.mk +++ b/config/bgq/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/cortex-a15/bli_config.h b/config/cortex-a15/bli_config.h index f6be2e573..223dd427c 100644 --- a/config/cortex-a15/bli_config.h +++ b/config/cortex-a15/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/cortex-a15/bli_kernel.h b/config/cortex-a15/bli_kernel.h index d5f97b26f..9a003a050 100644 --- a/config/cortex-a15/bli_kernel.h +++ b/config/cortex-a15/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/cortex-a15/make_defs.mk b/config/cortex-a15/make_defs.mk index b06e36117..91a441729 100644 --- a/config/cortex-a15/make_defs.mk +++ b/config/cortex-a15/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/cortex-a9/bli_config.h b/config/cortex-a9/bli_config.h index f6be2e573..223dd427c 100644 --- a/config/cortex-a9/bli_config.h +++ b/config/cortex-a9/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/cortex-a9/bli_kernel.h b/config/cortex-a9/bli_kernel.h index bf3ce7a59..d3a327784 100644 --- a/config/cortex-a9/bli_kernel.h +++ b/config/cortex-a9/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/cortex-a9/make_defs.mk b/config/cortex-a9/make_defs.mk index f564aa643..9599afcc4 100644 --- a/config/cortex-a9/make_defs.mk +++ b/config/cortex-a9/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/dunnington/bli_config.h b/config/dunnington/bli_config.h index b397f3c94..9b77e4543 100644 --- a/config/dunnington/bli_config.h +++ b/config/dunnington/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/dunnington/bli_kernel.h b/config/dunnington/bli_kernel.h index 0c5ebbdb9..7c97cba71 100644 --- a/config/dunnington/bli_kernel.h +++ b/config/dunnington/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/dunnington/make_defs.mk b/config/dunnington/make_defs.mk index 1c0c0a67b..b58e1fa48 100644 --- a/config/dunnington/make_defs.mk +++ b/config/dunnington/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/loongson3a/bli_config.h b/config/loongson3a/bli_config.h index 23e32e10a..612f0074c 100644 --- a/config/loongson3a/bli_config.h +++ b/config/loongson3a/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/loongson3a/bli_kernel.h b/config/loongson3a/bli_kernel.h index ac18cd71c..a38cb0e2f 100644 --- a/config/loongson3a/bli_kernel.h +++ b/config/loongson3a/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/loongson3a/make_defs.mk b/config/loongson3a/make_defs.mk index 6e8c4cdfa..ec6c8506e 100644 --- a/config/loongson3a/make_defs.mk +++ b/config/loongson3a/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/mic/bli_config.h b/config/mic/bli_config.h index e0138c3a6..3f6a21f2e 100644 --- a/config/mic/bli_config.h +++ b/config/mic/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/mic/bli_kernel.h b/config/mic/bli_kernel.h index c2a8637ed..aa58d4219 100644 --- a/config/mic/bli_kernel.h +++ b/config/mic/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/mic/make_defs.mk b/config/mic/make_defs.mk index 68c9ad385..538bdc6da 100644 --- a/config/mic/make_defs.mk +++ b/config/mic/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/piledriver/bli_config.h b/config/piledriver/bli_config.h index 57ace8ba1..8aac103c7 100644 --- a/config/piledriver/bli_config.h +++ b/config/piledriver/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/piledriver/bli_kernel.h b/config/piledriver/bli_kernel.h index e904f61d7..100fa8976 100644 --- a/config/piledriver/bli_kernel.h +++ b/config/piledriver/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/piledriver/make_defs.mk b/config/piledriver/make_defs.mk index edb496303..b41f1d626 100644 --- a/config/piledriver/make_defs.mk +++ b/config/piledriver/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/pnacl/bli_config.h b/config/pnacl/bli_config.h index f6be2e573..223dd427c 100644 --- a/config/pnacl/bli_config.h +++ b/config/pnacl/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/pnacl/bli_kernel.h b/config/pnacl/bli_kernel.h index 439d9d715..807183920 100644 --- a/config/pnacl/bli_kernel.h +++ b/config/pnacl/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/pnacl/make_defs.mk b/config/pnacl/make_defs.mk index a6e762984..6c8f4349f 100644 --- a/config/pnacl/make_defs.mk +++ b/config/pnacl/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/power7/bli_config.h b/config/power7/bli_config.h index 3e32f5367..9d2cada80 100644 --- a/config/power7/bli_config.h +++ b/config/power7/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/power7/bli_kernel.h b/config/power7/bli_kernel.h index f63ad4690..6a909a858 100644 --- a/config/power7/bli_kernel.h +++ b/config/power7/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/power7/make_defs.mk b/config/power7/make_defs.mk index 5be05ee05..6c80c2ea0 100644 --- a/config/power7/make_defs.mk +++ b/config/power7/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/reference/bli_config.h b/config/reference/bli_config.h index f6be2e573..223dd427c 100644 --- a/config/reference/bli_config.h +++ b/config/reference/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/reference/bli_kernel.h b/config/reference/bli_kernel.h index f6dc1dc24..86356eff8 100644 --- a/config/reference/bli_kernel.h +++ b/config/reference/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/reference/make_defs.mk b/config/reference/make_defs.mk index 55abe4d6d..b6557ea4e 100644 --- a/config/reference/make_defs.mk +++ b/config/reference/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/sandybridge/bli_config.h b/config/sandybridge/bli_config.h index 5816b5728..9e4c7a083 100644 --- a/config/sandybridge/bli_config.h +++ b/config/sandybridge/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/sandybridge/bli_kernel.h b/config/sandybridge/bli_kernel.h index b3634538a..4a112988e 100644 --- a/config/sandybridge/bli_kernel.h +++ b/config/sandybridge/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/sandybridge/make_defs.mk b/config/sandybridge/make_defs.mk index cfb208810..ddb0c1cd3 100644 --- a/config/sandybridge/make_defs.mk +++ b/config/sandybridge/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/config/template/bli_config.h b/config/template/bli_config.h index 5c2734f5f..b9daa7f1f 100644 --- a/config/template/bli_config.h +++ b/config/template/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/bli_kernel.h b/config/template/bli_kernel.h index 3d84ee9e7..2a4a1d212 100644 --- a/config/template/bli_kernel.h +++ b/config/template/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/1/bli_axpyv_opt_var1.c b/config/template/kernels/1/bli_axpyv_opt_var1.c index 42f842483..44250c2a4 100644 --- a/config/template/kernels/1/bli_axpyv_opt_var1.c +++ b/config/template/kernels/1/bli_axpyv_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/1/bli_dotv_opt_var1.c b/config/template/kernels/1/bli_dotv_opt_var1.c index bc16282cb..b8d0692c9 100644 --- a/config/template/kernels/1/bli_dotv_opt_var1.c +++ b/config/template/kernels/1/bli_dotv_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/1f/bli_axpy2v_opt_var1.c b/config/template/kernels/1f/bli_axpy2v_opt_var1.c index 3cfb48c40..d49a78b3a 100644 --- a/config/template/kernels/1f/bli_axpy2v_opt_var1.c +++ b/config/template/kernels/1f/bli_axpy2v_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/1f/bli_axpyf_opt_var1.c b/config/template/kernels/1f/bli_axpyf_opt_var1.c index 64b3384bf..174d12324 100644 --- a/config/template/kernels/1f/bli_axpyf_opt_var1.c +++ b/config/template/kernels/1f/bli_axpyf_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/1f/bli_dotaxpyv_opt_var1.c b/config/template/kernels/1f/bli_dotaxpyv_opt_var1.c index 917fb7661..4db0fdcb8 100644 --- a/config/template/kernels/1f/bli_dotaxpyv_opt_var1.c +++ b/config/template/kernels/1f/bli_dotaxpyv_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/1f/bli_dotxaxpyf_opt_var1.c b/config/template/kernels/1f/bli_dotxaxpyf_opt_var1.c index 8438fd7b7..1a02fe880 100644 --- a/config/template/kernels/1f/bli_dotxaxpyf_opt_var1.c +++ b/config/template/kernels/1f/bli_dotxaxpyf_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/1f/bli_dotxf_opt_var1.c b/config/template/kernels/1f/bli_dotxf_opt_var1.c index def48d7dc..7b090e1ee 100644 --- a/config/template/kernels/1f/bli_dotxf_opt_var1.c +++ b/config/template/kernels/1f/bli_dotxf_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/3/bli_gemm_opt_mxn.c b/config/template/kernels/3/bli_gemm_opt_mxn.c index b32227fff..d45fd1165 100644 --- a/config/template/kernels/3/bli_gemm_opt_mxn.c +++ b/config/template/kernels/3/bli_gemm_opt_mxn.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/3/bli_gemmtrsm_l_opt_mxn.c b/config/template/kernels/3/bli_gemmtrsm_l_opt_mxn.c index 550a42f79..6c7d04a89 100644 --- a/config/template/kernels/3/bli_gemmtrsm_l_opt_mxn.c +++ b/config/template/kernels/3/bli_gemmtrsm_l_opt_mxn.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/3/bli_gemmtrsm_u_opt_mxn.c b/config/template/kernels/3/bli_gemmtrsm_u_opt_mxn.c index 2ad6a81ad..ff8adecea 100644 --- a/config/template/kernels/3/bli_gemmtrsm_u_opt_mxn.c +++ b/config/template/kernels/3/bli_gemmtrsm_u_opt_mxn.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/3/bli_trsm_l_opt_mxn.c b/config/template/kernels/3/bli_trsm_l_opt_mxn.c index 1fd8126f4..99f456527 100644 --- a/config/template/kernels/3/bli_trsm_l_opt_mxn.c +++ b/config/template/kernels/3/bli_trsm_l_opt_mxn.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/kernels/3/bli_trsm_u_opt_mxn.c b/config/template/kernels/3/bli_trsm_u_opt_mxn.c index 4c7b04415..b65b4b48a 100644 --- a/config/template/kernels/3/bli_trsm_u_opt_mxn.c +++ b/config/template/kernels/3/bli_trsm_u_opt_mxn.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/config/template/make_defs.mk b/config/template/make_defs.mk index 5e9027aa7..6fba1ad35 100644 --- a/config/template/make_defs.mk +++ b/config/template/make_defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/configure b/configure index e1ed5e639..4f2a3b4e0 100755 --- a/configure +++ b/configure @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/frame/0/absqsc/bli_absqsc.c b/frame/0/absqsc/bli_absqsc.c index a47b4a546..c8cc0b189 100644 --- a/frame/0/absqsc/bli_absqsc.c +++ b/frame/0/absqsc/bli_absqsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/absqsc/bli_absqsc.h b/frame/0/absqsc/bli_absqsc.h index 959dd3bfe..4474b234e 100644 --- a/frame/0/absqsc/bli_absqsc.h +++ b/frame/0/absqsc/bli_absqsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/absqsc/bli_absqsc_check.c b/frame/0/absqsc/bli_absqsc_check.c index 75b65162d..4749d35a9 100644 --- a/frame/0/absqsc/bli_absqsc_check.c +++ b/frame/0/absqsc/bli_absqsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/absqsc/bli_absqsc_check.h b/frame/0/absqsc/bli_absqsc_check.h index fbe631ff2..30da5feb7 100644 --- a/frame/0/absqsc/bli_absqsc_check.h +++ b/frame/0/absqsc/bli_absqsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/absqsc/bli_absqsc_unb_var1.c b/frame/0/absqsc/bli_absqsc_unb_var1.c index 08e830d9b..b0602daf2 100644 --- a/frame/0/absqsc/bli_absqsc_unb_var1.c +++ b/frame/0/absqsc/bli_absqsc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/absqsc/bli_absqsc_unb_var1.h b/frame/0/absqsc/bli_absqsc_unb_var1.h index f72b6d6c7..08f29e3ba 100644 --- a/frame/0/absqsc/bli_absqsc_unb_var1.h +++ b/frame/0/absqsc/bli_absqsc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/addsc/bli_addsc.c b/frame/0/addsc/bli_addsc.c index 5481c6dce..693333775 100644 --- a/frame/0/addsc/bli_addsc.c +++ b/frame/0/addsc/bli_addsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/addsc/bli_addsc.h b/frame/0/addsc/bli_addsc.h index e037ad81d..b88de9aa5 100644 --- a/frame/0/addsc/bli_addsc.h +++ b/frame/0/addsc/bli_addsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/addsc/bli_addsc_check.c b/frame/0/addsc/bli_addsc_check.c index 43510f04a..194434d4a 100644 --- a/frame/0/addsc/bli_addsc_check.c +++ b/frame/0/addsc/bli_addsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/addsc/bli_addsc_check.h b/frame/0/addsc/bli_addsc_check.h index 9808a1ffb..8f2381895 100644 --- a/frame/0/addsc/bli_addsc_check.h +++ b/frame/0/addsc/bli_addsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/addsc/bli_addsc_unb_var1.c b/frame/0/addsc/bli_addsc_unb_var1.c index cfdba6c15..9d367efac 100644 --- a/frame/0/addsc/bli_addsc_unb_var1.c +++ b/frame/0/addsc/bli_addsc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/addsc/bli_addsc_unb_var1.h b/frame/0/addsc/bli_addsc_unb_var1.h index e9f2ab357..548945b0d 100644 --- a/frame/0/addsc/bli_addsc_unb_var1.h +++ b/frame/0/addsc/bli_addsc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/copysc/bli_copysc.c b/frame/0/copysc/bli_copysc.c index 0c13bdf00..0b813d0b7 100644 --- a/frame/0/copysc/bli_copysc.c +++ b/frame/0/copysc/bli_copysc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/copysc/bli_copysc.h b/frame/0/copysc/bli_copysc.h index 68479e41d..fe2aff51f 100644 --- a/frame/0/copysc/bli_copysc.h +++ b/frame/0/copysc/bli_copysc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/copysc/bli_copysc_check.c b/frame/0/copysc/bli_copysc_check.c index 9ca943b3c..88eb90ef6 100644 --- a/frame/0/copysc/bli_copysc_check.c +++ b/frame/0/copysc/bli_copysc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/copysc/bli_copysc_check.h b/frame/0/copysc/bli_copysc_check.h index d6f1c840b..6fbd8dfcf 100644 --- a/frame/0/copysc/bli_copysc_check.h +++ b/frame/0/copysc/bli_copysc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/copysc/bli_copysc_unb_var1.c b/frame/0/copysc/bli_copysc_unb_var1.c index c18cf97d7..c7a89a642 100644 --- a/frame/0/copysc/bli_copysc_unb_var1.c +++ b/frame/0/copysc/bli_copysc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/copysc/bli_copysc_unb_var1.h b/frame/0/copysc/bli_copysc_unb_var1.h index 41ddd1bfa..e9485e736 100644 --- a/frame/0/copysc/bli_copysc_unb_var1.h +++ b/frame/0/copysc/bli_copysc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/divsc/bli_divsc.c b/frame/0/divsc/bli_divsc.c index 9337bec60..ec2ea2e44 100644 --- a/frame/0/divsc/bli_divsc.c +++ b/frame/0/divsc/bli_divsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/divsc/bli_divsc.h b/frame/0/divsc/bli_divsc.h index 56ac851bc..2f4be6e8f 100644 --- a/frame/0/divsc/bli_divsc.h +++ b/frame/0/divsc/bli_divsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/divsc/bli_divsc_check.c b/frame/0/divsc/bli_divsc_check.c index ac9eb9f86..653a14b76 100644 --- a/frame/0/divsc/bli_divsc_check.c +++ b/frame/0/divsc/bli_divsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/divsc/bli_divsc_check.h b/frame/0/divsc/bli_divsc_check.h index 7ec234a21..a4d1e6aba 100644 --- a/frame/0/divsc/bli_divsc_check.h +++ b/frame/0/divsc/bli_divsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/divsc/bli_divsc_unb_var1.c b/frame/0/divsc/bli_divsc_unb_var1.c index 349d476a3..8316b9a19 100644 --- a/frame/0/divsc/bli_divsc_unb_var1.c +++ b/frame/0/divsc/bli_divsc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/divsc/bli_divsc_unb_var1.h b/frame/0/divsc/bli_divsc_unb_var1.h index bd97ee1e2..40219d013 100644 --- a/frame/0/divsc/bli_divsc_unb_var1.h +++ b/frame/0/divsc/bli_divsc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/getsc/bli_getsc.c b/frame/0/getsc/bli_getsc.c index 33c25a580..91b41fe18 100644 --- a/frame/0/getsc/bli_getsc.c +++ b/frame/0/getsc/bli_getsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/getsc/bli_getsc.h b/frame/0/getsc/bli_getsc.h index bb6beaa3f..493861ce4 100644 --- a/frame/0/getsc/bli_getsc.h +++ b/frame/0/getsc/bli_getsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/getsc/bli_getsc_check.c b/frame/0/getsc/bli_getsc_check.c index 59066915c..a1fac1ec0 100644 --- a/frame/0/getsc/bli_getsc_check.c +++ b/frame/0/getsc/bli_getsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/getsc/bli_getsc_check.h b/frame/0/getsc/bli_getsc_check.h index 30dc6e1e8..5d6ddceb8 100644 --- a/frame/0/getsc/bli_getsc_check.h +++ b/frame/0/getsc/bli_getsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/mulsc/bli_mulsc.c b/frame/0/mulsc/bli_mulsc.c index d58afe8d6..d07c387e1 100644 --- a/frame/0/mulsc/bli_mulsc.c +++ b/frame/0/mulsc/bli_mulsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/mulsc/bli_mulsc.h b/frame/0/mulsc/bli_mulsc.h index 739ad718c..0965dfe91 100644 --- a/frame/0/mulsc/bli_mulsc.h +++ b/frame/0/mulsc/bli_mulsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/mulsc/bli_mulsc_check.c b/frame/0/mulsc/bli_mulsc_check.c index 2639822b4..829246a73 100644 --- a/frame/0/mulsc/bli_mulsc_check.c +++ b/frame/0/mulsc/bli_mulsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/mulsc/bli_mulsc_check.h b/frame/0/mulsc/bli_mulsc_check.h index 8bb8a987a..ee0789022 100644 --- a/frame/0/mulsc/bli_mulsc_check.h +++ b/frame/0/mulsc/bli_mulsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/mulsc/bli_mulsc_unb_var1.c b/frame/0/mulsc/bli_mulsc_unb_var1.c index e0c090071..2db1149c9 100644 --- a/frame/0/mulsc/bli_mulsc_unb_var1.c +++ b/frame/0/mulsc/bli_mulsc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/mulsc/bli_mulsc_unb_var1.h b/frame/0/mulsc/bli_mulsc_unb_var1.h index d62d0855e..241c5a94e 100644 --- a/frame/0/mulsc/bli_mulsc_unb_var1.h +++ b/frame/0/mulsc/bli_mulsc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/normfsc/bli_normfsc.c b/frame/0/normfsc/bli_normfsc.c index de310345c..96a158a97 100644 --- a/frame/0/normfsc/bli_normfsc.c +++ b/frame/0/normfsc/bli_normfsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/normfsc/bli_normfsc.h b/frame/0/normfsc/bli_normfsc.h index aa4597f6c..804deacd3 100644 --- a/frame/0/normfsc/bli_normfsc.h +++ b/frame/0/normfsc/bli_normfsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/normfsc/bli_normfsc_check.c b/frame/0/normfsc/bli_normfsc_check.c index 296ba151e..6fb166957 100644 --- a/frame/0/normfsc/bli_normfsc_check.c +++ b/frame/0/normfsc/bli_normfsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/normfsc/bli_normfsc_check.h b/frame/0/normfsc/bli_normfsc_check.h index 2d3ce8d89..ab39b97f4 100644 --- a/frame/0/normfsc/bli_normfsc_check.h +++ b/frame/0/normfsc/bli_normfsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/normfsc/bli_normfsc_unb_var1.c b/frame/0/normfsc/bli_normfsc_unb_var1.c index bda79878c..122430ae0 100644 --- a/frame/0/normfsc/bli_normfsc_unb_var1.c +++ b/frame/0/normfsc/bli_normfsc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/normfsc/bli_normfsc_unb_var1.h b/frame/0/normfsc/bli_normfsc_unb_var1.h index 1ae3dee09..9151f4f9a 100644 --- a/frame/0/normfsc/bli_normfsc_unb_var1.h +++ b/frame/0/normfsc/bli_normfsc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/setsc/bli_setsc.c b/frame/0/setsc/bli_setsc.c index 7a795c8af..2ac3db979 100644 --- a/frame/0/setsc/bli_setsc.c +++ b/frame/0/setsc/bli_setsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/setsc/bli_setsc.h b/frame/0/setsc/bli_setsc.h index dbb81a3be..cf9dd8477 100644 --- a/frame/0/setsc/bli_setsc.h +++ b/frame/0/setsc/bli_setsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/setsc/bli_setsc_check.c b/frame/0/setsc/bli_setsc_check.c index aa61e71d6..c373dff2e 100644 --- a/frame/0/setsc/bli_setsc_check.c +++ b/frame/0/setsc/bli_setsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/setsc/bli_setsc_check.h b/frame/0/setsc/bli_setsc_check.h index 27cb3c7e3..a60024b33 100644 --- a/frame/0/setsc/bli_setsc_check.h +++ b/frame/0/setsc/bli_setsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/sqrtsc/bli_sqrtsc.c b/frame/0/sqrtsc/bli_sqrtsc.c index 4e7f7f6f2..e3c3518d7 100644 --- a/frame/0/sqrtsc/bli_sqrtsc.c +++ b/frame/0/sqrtsc/bli_sqrtsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/sqrtsc/bli_sqrtsc.h b/frame/0/sqrtsc/bli_sqrtsc.h index c7a356d2b..ed6620eb1 100644 --- a/frame/0/sqrtsc/bli_sqrtsc.h +++ b/frame/0/sqrtsc/bli_sqrtsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/sqrtsc/bli_sqrtsc_check.c b/frame/0/sqrtsc/bli_sqrtsc_check.c index 7c6d6cb9c..39ce2d98b 100644 --- a/frame/0/sqrtsc/bli_sqrtsc_check.c +++ b/frame/0/sqrtsc/bli_sqrtsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/sqrtsc/bli_sqrtsc_check.h b/frame/0/sqrtsc/bli_sqrtsc_check.h index 01a7a7115..08f81aca1 100644 --- a/frame/0/sqrtsc/bli_sqrtsc_check.h +++ b/frame/0/sqrtsc/bli_sqrtsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/sqrtsc/bli_sqrtsc_unb_var1.c b/frame/0/sqrtsc/bli_sqrtsc_unb_var1.c index 7fb16ba2a..525ca8488 100644 --- a/frame/0/sqrtsc/bli_sqrtsc_unb_var1.c +++ b/frame/0/sqrtsc/bli_sqrtsc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/sqrtsc/bli_sqrtsc_unb_var1.h b/frame/0/sqrtsc/bli_sqrtsc_unb_var1.h index 04c8aa6f3..94a66891b 100644 --- a/frame/0/sqrtsc/bli_sqrtsc_unb_var1.h +++ b/frame/0/sqrtsc/bli_sqrtsc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/subsc/bli_subsc.c b/frame/0/subsc/bli_subsc.c index 6654c9a9a..7a1a65481 100644 --- a/frame/0/subsc/bli_subsc.c +++ b/frame/0/subsc/bli_subsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/subsc/bli_subsc.h b/frame/0/subsc/bli_subsc.h index e070c335d..800f75059 100644 --- a/frame/0/subsc/bli_subsc.h +++ b/frame/0/subsc/bli_subsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/subsc/bli_subsc_check.c b/frame/0/subsc/bli_subsc_check.c index 624d2f12a..f02154463 100644 --- a/frame/0/subsc/bli_subsc_check.c +++ b/frame/0/subsc/bli_subsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/subsc/bli_subsc_check.h b/frame/0/subsc/bli_subsc_check.h index fe5a9226b..937a93dd6 100644 --- a/frame/0/subsc/bli_subsc_check.h +++ b/frame/0/subsc/bli_subsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/subsc/bli_subsc_unb_var1.c b/frame/0/subsc/bli_subsc_unb_var1.c index bf4e4cca3..471d896c9 100644 --- a/frame/0/subsc/bli_subsc_unb_var1.c +++ b/frame/0/subsc/bli_subsc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/subsc/bli_subsc_unb_var1.h b/frame/0/subsc/bli_subsc_unb_var1.h index b7599e050..fc9419ec2 100644 --- a/frame/0/subsc/bli_subsc_unb_var1.h +++ b/frame/0/subsc/bli_subsc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/unzipsc/bli_unzipsc.c b/frame/0/unzipsc/bli_unzipsc.c index a8b6905a0..bdde5f293 100644 --- a/frame/0/unzipsc/bli_unzipsc.c +++ b/frame/0/unzipsc/bli_unzipsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/unzipsc/bli_unzipsc.h b/frame/0/unzipsc/bli_unzipsc.h index e14e08960..9dcfc1261 100644 --- a/frame/0/unzipsc/bli_unzipsc.h +++ b/frame/0/unzipsc/bli_unzipsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/unzipsc/bli_unzipsc_check.c b/frame/0/unzipsc/bli_unzipsc_check.c index f4ab3fef7..62923c986 100644 --- a/frame/0/unzipsc/bli_unzipsc_check.c +++ b/frame/0/unzipsc/bli_unzipsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/unzipsc/bli_unzipsc_check.h b/frame/0/unzipsc/bli_unzipsc_check.h index 48bbed996..edc12d0f2 100644 --- a/frame/0/unzipsc/bli_unzipsc_check.h +++ b/frame/0/unzipsc/bli_unzipsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/unzipsc/bli_unzipsc_unb_var1.c b/frame/0/unzipsc/bli_unzipsc_unb_var1.c index e73ac0cf6..fefa87ba8 100644 --- a/frame/0/unzipsc/bli_unzipsc_unb_var1.c +++ b/frame/0/unzipsc/bli_unzipsc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/unzipsc/bli_unzipsc_unb_var1.h b/frame/0/unzipsc/bli_unzipsc_unb_var1.h index e061231c8..8ac2c1218 100644 --- a/frame/0/unzipsc/bli_unzipsc_unb_var1.h +++ b/frame/0/unzipsc/bli_unzipsc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/zipsc/bli_zipsc.c b/frame/0/zipsc/bli_zipsc.c index 572ee92e4..898465c0b 100644 --- a/frame/0/zipsc/bli_zipsc.c +++ b/frame/0/zipsc/bli_zipsc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/zipsc/bli_zipsc.h b/frame/0/zipsc/bli_zipsc.h index a07f12ae3..dcfb33809 100644 --- a/frame/0/zipsc/bli_zipsc.h +++ b/frame/0/zipsc/bli_zipsc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/zipsc/bli_zipsc_check.c b/frame/0/zipsc/bli_zipsc_check.c index ec50892fd..cfff954ed 100644 --- a/frame/0/zipsc/bli_zipsc_check.c +++ b/frame/0/zipsc/bli_zipsc_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/zipsc/bli_zipsc_check.h b/frame/0/zipsc/bli_zipsc_check.h index a8ce08d8b..c61bcf2eb 100644 --- a/frame/0/zipsc/bli_zipsc_check.h +++ b/frame/0/zipsc/bli_zipsc_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/zipsc/bli_zipsc_unb_var1.c b/frame/0/zipsc/bli_zipsc_unb_var1.c index 0aca353ac..35cf053c9 100644 --- a/frame/0/zipsc/bli_zipsc_unb_var1.c +++ b/frame/0/zipsc/bli_zipsc_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/0/zipsc/bli_zipsc_unb_var1.h b/frame/0/zipsc/bli_zipsc_unb_var1.h index 2f197f5fc..bd71ff80d 100644 --- a/frame/0/zipsc/bli_zipsc_unb_var1.h +++ b/frame/0/zipsc/bli_zipsc_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/addv/bli_addv.c b/frame/1/addv/bli_addv.c index 8056a71ae..1dcf537c0 100644 --- a/frame/1/addv/bli_addv.c +++ b/frame/1/addv/bli_addv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/addv/bli_addv.h b/frame/1/addv/bli_addv.h index 8577ada71..245cff990 100644 --- a/frame/1/addv/bli_addv.h +++ b/frame/1/addv/bli_addv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/addv/bli_addv_check.c b/frame/1/addv/bli_addv_check.c index b231ebc1f..60bc26525 100644 --- a/frame/1/addv/bli_addv_check.c +++ b/frame/1/addv/bli_addv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/addv/bli_addv_check.h b/frame/1/addv/bli_addv_check.h index 27c4cd2a1..2a50d6331 100644 --- a/frame/1/addv/bli_addv_check.h +++ b/frame/1/addv/bli_addv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/addv/bli_addv_kernel.c b/frame/1/addv/bli_addv_kernel.c index 539215ac4..b838d89be 100644 --- a/frame/1/addv/bli_addv_kernel.c +++ b/frame/1/addv/bli_addv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/addv/bli_addv_kernel.h b/frame/1/addv/bli_addv_kernel.h index b7ee0336e..37f232598 100644 --- a/frame/1/addv/bli_addv_kernel.h +++ b/frame/1/addv/bli_addv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/addv/bli_addv_ref.c b/frame/1/addv/bli_addv_ref.c index cba7eaf94..99459d02b 100644 --- a/frame/1/addv/bli_addv_ref.c +++ b/frame/1/addv/bli_addv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/addv/bli_addv_ref.h b/frame/1/addv/bli_addv_ref.h index b39c6cfd9..f9b34d656 100644 --- a/frame/1/addv/bli_addv_ref.h +++ b/frame/1/addv/bli_addv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/axpyv/bli_axpyv.c b/frame/1/axpyv/bli_axpyv.c index 1fb4d8243..3b975aa93 100644 --- a/frame/1/axpyv/bli_axpyv.c +++ b/frame/1/axpyv/bli_axpyv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/axpyv/bli_axpyv.h b/frame/1/axpyv/bli_axpyv.h index 4e1abe4b3..a1124b8a3 100644 --- a/frame/1/axpyv/bli_axpyv.h +++ b/frame/1/axpyv/bli_axpyv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/axpyv/bli_axpyv_check.c b/frame/1/axpyv/bli_axpyv_check.c index dac7c1aaf..679b653e1 100644 --- a/frame/1/axpyv/bli_axpyv_check.c +++ b/frame/1/axpyv/bli_axpyv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/axpyv/bli_axpyv_check.h b/frame/1/axpyv/bli_axpyv_check.h index 0d8571157..494cdc1c1 100644 --- a/frame/1/axpyv/bli_axpyv_check.h +++ b/frame/1/axpyv/bli_axpyv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/axpyv/bli_axpyv_kernel.c b/frame/1/axpyv/bli_axpyv_kernel.c index 3ccb262f9..e7689732e 100644 --- a/frame/1/axpyv/bli_axpyv_kernel.c +++ b/frame/1/axpyv/bli_axpyv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/axpyv/bli_axpyv_kernel.h b/frame/1/axpyv/bli_axpyv_kernel.h index b75611967..c66e4786c 100644 --- a/frame/1/axpyv/bli_axpyv_kernel.h +++ b/frame/1/axpyv/bli_axpyv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/axpyv/bli_axpyv_ref.c b/frame/1/axpyv/bli_axpyv_ref.c index 67323e223..a5de632fc 100644 --- a/frame/1/axpyv/bli_axpyv_ref.c +++ b/frame/1/axpyv/bli_axpyv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/axpyv/bli_axpyv_ref.h b/frame/1/axpyv/bli_axpyv_ref.h index 2dfe64ada..aad2bda79 100644 --- a/frame/1/axpyv/bli_axpyv_ref.h +++ b/frame/1/axpyv/bli_axpyv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/copyv/bli_copyv.c b/frame/1/copyv/bli_copyv.c index 1f29e1b30..708066ad6 100644 --- a/frame/1/copyv/bli_copyv.c +++ b/frame/1/copyv/bli_copyv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/copyv/bli_copyv.h b/frame/1/copyv/bli_copyv.h index baef1b9c8..b8e914491 100644 --- a/frame/1/copyv/bli_copyv.h +++ b/frame/1/copyv/bli_copyv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/copyv/bli_copyv_check.c b/frame/1/copyv/bli_copyv_check.c index 905ba38fa..1c6413bed 100644 --- a/frame/1/copyv/bli_copyv_check.c +++ b/frame/1/copyv/bli_copyv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/copyv/bli_copyv_check.h b/frame/1/copyv/bli_copyv_check.h index d68adf599..795cef276 100644 --- a/frame/1/copyv/bli_copyv_check.h +++ b/frame/1/copyv/bli_copyv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/copyv/bli_copyv_kernel.c b/frame/1/copyv/bli_copyv_kernel.c index 40cf15f0c..d48fe134e 100644 --- a/frame/1/copyv/bli_copyv_kernel.c +++ b/frame/1/copyv/bli_copyv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/copyv/bli_copyv_kernel.h b/frame/1/copyv/bli_copyv_kernel.h index e0420253a..bd1fdfedd 100644 --- a/frame/1/copyv/bli_copyv_kernel.h +++ b/frame/1/copyv/bli_copyv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/copyv/bli_copyv_ref.c b/frame/1/copyv/bli_copyv_ref.c index 06bafedaf..c9aa424b7 100644 --- a/frame/1/copyv/bli_copyv_ref.c +++ b/frame/1/copyv/bli_copyv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/copyv/bli_copyv_ref.h b/frame/1/copyv/bli_copyv_ref.h index 0ede9aeea..2b9da5d88 100644 --- a/frame/1/copyv/bli_copyv_ref.h +++ b/frame/1/copyv/bli_copyv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotv/bli_dotv.c b/frame/1/dotv/bli_dotv.c index 07772d80f..a6db37887 100644 --- a/frame/1/dotv/bli_dotv.c +++ b/frame/1/dotv/bli_dotv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotv/bli_dotv.h b/frame/1/dotv/bli_dotv.h index 7a0ea8265..3067939b9 100644 --- a/frame/1/dotv/bli_dotv.h +++ b/frame/1/dotv/bli_dotv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotv/bli_dotv_check.c b/frame/1/dotv/bli_dotv_check.c index 8ed0d1db6..817e553cd 100644 --- a/frame/1/dotv/bli_dotv_check.c +++ b/frame/1/dotv/bli_dotv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotv/bli_dotv_check.h b/frame/1/dotv/bli_dotv_check.h index c5e2a630d..b90d39460 100644 --- a/frame/1/dotv/bli_dotv_check.h +++ b/frame/1/dotv/bli_dotv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotv/bli_dotv_kernel.c b/frame/1/dotv/bli_dotv_kernel.c index 9d7de4bbf..cdfb6ef1c 100644 --- a/frame/1/dotv/bli_dotv_kernel.c +++ b/frame/1/dotv/bli_dotv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotv/bli_dotv_kernel.h b/frame/1/dotv/bli_dotv_kernel.h index 78b77bc33..febe7c166 100644 --- a/frame/1/dotv/bli_dotv_kernel.h +++ b/frame/1/dotv/bli_dotv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotv/bli_dotv_ref.c b/frame/1/dotv/bli_dotv_ref.c index cbdf33f8e..61bfb2c22 100644 --- a/frame/1/dotv/bli_dotv_ref.c +++ b/frame/1/dotv/bli_dotv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotv/bli_dotv_ref.h b/frame/1/dotv/bli_dotv_ref.h index c5fcef764..f87d53a41 100644 --- a/frame/1/dotv/bli_dotv_ref.h +++ b/frame/1/dotv/bli_dotv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotxv/bli_dotxv.c b/frame/1/dotxv/bli_dotxv.c index 5d30ff546..b93d56713 100644 --- a/frame/1/dotxv/bli_dotxv.c +++ b/frame/1/dotxv/bli_dotxv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotxv/bli_dotxv.h b/frame/1/dotxv/bli_dotxv.h index e2d8a9521..a6c4e44a6 100644 --- a/frame/1/dotxv/bli_dotxv.h +++ b/frame/1/dotxv/bli_dotxv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotxv/bli_dotxv_check.c b/frame/1/dotxv/bli_dotxv_check.c index 738a70475..71231b8cd 100644 --- a/frame/1/dotxv/bli_dotxv_check.c +++ b/frame/1/dotxv/bli_dotxv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotxv/bli_dotxv_check.h b/frame/1/dotxv/bli_dotxv_check.h index 4a67ce500..77a1a5a14 100644 --- a/frame/1/dotxv/bli_dotxv_check.h +++ b/frame/1/dotxv/bli_dotxv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotxv/bli_dotxv_kernel.c b/frame/1/dotxv/bli_dotxv_kernel.c index 0df32fce9..16ec792ac 100644 --- a/frame/1/dotxv/bli_dotxv_kernel.c +++ b/frame/1/dotxv/bli_dotxv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotxv/bli_dotxv_kernel.h b/frame/1/dotxv/bli_dotxv_kernel.h index e2fd97e03..e3f0ab520 100644 --- a/frame/1/dotxv/bli_dotxv_kernel.h +++ b/frame/1/dotxv/bli_dotxv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotxv/bli_dotxv_ref.c b/frame/1/dotxv/bli_dotxv_ref.c index 001e37437..b1d0cd61c 100644 --- a/frame/1/dotxv/bli_dotxv_ref.c +++ b/frame/1/dotxv/bli_dotxv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/dotxv/bli_dotxv_ref.h b/frame/1/dotxv/bli_dotxv_ref.h index 59e06f43d..2fa27710d 100644 --- a/frame/1/dotxv/bli_dotxv_ref.h +++ b/frame/1/dotxv/bli_dotxv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/invertv/bli_invertv.c b/frame/1/invertv/bli_invertv.c index d43a4fa93..256bebdac 100644 --- a/frame/1/invertv/bli_invertv.c +++ b/frame/1/invertv/bli_invertv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/invertv/bli_invertv.h b/frame/1/invertv/bli_invertv.h index c70a630d3..99a8643b2 100644 --- a/frame/1/invertv/bli_invertv.h +++ b/frame/1/invertv/bli_invertv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/invertv/bli_invertv_check.c b/frame/1/invertv/bli_invertv_check.c index 3efa8f22e..11dbca51a 100644 --- a/frame/1/invertv/bli_invertv_check.c +++ b/frame/1/invertv/bli_invertv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/invertv/bli_invertv_check.h b/frame/1/invertv/bli_invertv_check.h index 01a6a7ce6..341db4be4 100644 --- a/frame/1/invertv/bli_invertv_check.h +++ b/frame/1/invertv/bli_invertv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/invertv/bli_invertv_kernel.c b/frame/1/invertv/bli_invertv_kernel.c index 55f8eb186..522428a81 100644 --- a/frame/1/invertv/bli_invertv_kernel.c +++ b/frame/1/invertv/bli_invertv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/invertv/bli_invertv_kernel.h b/frame/1/invertv/bli_invertv_kernel.h index aeb594350..667d75ee4 100644 --- a/frame/1/invertv/bli_invertv_kernel.h +++ b/frame/1/invertv/bli_invertv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/invertv/bli_invertv_ref.c b/frame/1/invertv/bli_invertv_ref.c index 4d9d3d4fd..4b764a579 100644 --- a/frame/1/invertv/bli_invertv_ref.c +++ b/frame/1/invertv/bli_invertv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/invertv/bli_invertv_ref.h b/frame/1/invertv/bli_invertv_ref.h index df87f92bf..1794c972c 100644 --- a/frame/1/invertv/bli_invertv_ref.h +++ b/frame/1/invertv/bli_invertv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv.c b/frame/1/packv/bli_packv.c index 9df09633d..e3e02532a 100644 --- a/frame/1/packv/bli_packv.c +++ b/frame/1/packv/bli_packv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv.h b/frame/1/packv/bli_packv.h index 1ae23d950..b62786ebc 100644 --- a/frame/1/packv/bli_packv.h +++ b/frame/1/packv/bli_packv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_check.c b/frame/1/packv/bli_packv_check.c index dc6bc7c86..7006de1da 100644 --- a/frame/1/packv/bli_packv_check.c +++ b/frame/1/packv/bli_packv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_check.h b/frame/1/packv/bli_packv_check.h index d2d905f26..1cf0bba03 100644 --- a/frame/1/packv/bli_packv_check.h +++ b/frame/1/packv/bli_packv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_cntl.c b/frame/1/packv/bli_packv_cntl.c index 64596b728..73f4b1756 100644 --- a/frame/1/packv/bli_packv_cntl.c +++ b/frame/1/packv/bli_packv_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_cntl.h b/frame/1/packv/bli_packv_cntl.h index 0ef561d13..afc4e5b06 100644 --- a/frame/1/packv/bli_packv_cntl.h +++ b/frame/1/packv/bli_packv_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_init.c b/frame/1/packv/bli_packv_init.c index de14ea2f3..ce633ad47 100644 --- a/frame/1/packv/bli_packv_init.c +++ b/frame/1/packv/bli_packv_init.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_init.h b/frame/1/packv/bli_packv_init.h index 915d01758..7d69434d2 100644 --- a/frame/1/packv/bli_packv_init.h +++ b/frame/1/packv/bli_packv_init.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_int.c b/frame/1/packv/bli_packv_int.c index 796666335..b148d4e38 100644 --- a/frame/1/packv/bli_packv_int.c +++ b/frame/1/packv/bli_packv_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_int.h b/frame/1/packv/bli_packv_int.h index 6dd73a603..d11b533da 100644 --- a/frame/1/packv/bli_packv_int.h +++ b/frame/1/packv/bli_packv_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_unb_var1.c b/frame/1/packv/bli_packv_unb_var1.c index 4c294ad3a..2fca1077d 100644 --- a/frame/1/packv/bli_packv_unb_var1.c +++ b/frame/1/packv/bli_packv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/packv/bli_packv_unb_var1.h b/frame/1/packv/bli_packv_unb_var1.h index ec5cd95e6..eb5ad535a 100644 --- a/frame/1/packv/bli_packv_unb_var1.h +++ b/frame/1/packv/bli_packv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scal2v/bli_scal2v.c b/frame/1/scal2v/bli_scal2v.c index f9acbb4bd..d1bd7cc77 100644 --- a/frame/1/scal2v/bli_scal2v.c +++ b/frame/1/scal2v/bli_scal2v.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scal2v/bli_scal2v.h b/frame/1/scal2v/bli_scal2v.h index 7091f45b2..426f54ae1 100644 --- a/frame/1/scal2v/bli_scal2v.h +++ b/frame/1/scal2v/bli_scal2v.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scal2v/bli_scal2v_check.c b/frame/1/scal2v/bli_scal2v_check.c index 847c59671..4a0fc57d4 100644 --- a/frame/1/scal2v/bli_scal2v_check.c +++ b/frame/1/scal2v/bli_scal2v_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scal2v/bli_scal2v_check.h b/frame/1/scal2v/bli_scal2v_check.h index 73db9b9da..c3afdf9f7 100644 --- a/frame/1/scal2v/bli_scal2v_check.h +++ b/frame/1/scal2v/bli_scal2v_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scal2v/bli_scal2v_kernel.c b/frame/1/scal2v/bli_scal2v_kernel.c index 8fb0690d6..644f1bc10 100644 --- a/frame/1/scal2v/bli_scal2v_kernel.c +++ b/frame/1/scal2v/bli_scal2v_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scal2v/bli_scal2v_kernel.h b/frame/1/scal2v/bli_scal2v_kernel.h index 8ac9c48e1..3b7d626fc 100644 --- a/frame/1/scal2v/bli_scal2v_kernel.h +++ b/frame/1/scal2v/bli_scal2v_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scal2v/bli_scal2v_ref.c b/frame/1/scal2v/bli_scal2v_ref.c index 5cd78414e..25bc50457 100644 --- a/frame/1/scal2v/bli_scal2v_ref.c +++ b/frame/1/scal2v/bli_scal2v_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scal2v/bli_scal2v_ref.h b/frame/1/scal2v/bli_scal2v_ref.h index 5de497b1f..94b6d276f 100644 --- a/frame/1/scal2v/bli_scal2v_ref.h +++ b/frame/1/scal2v/bli_scal2v_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv.c b/frame/1/scalv/bli_scalv.c index a1c29dffd..f2c83f053 100644 --- a/frame/1/scalv/bli_scalv.c +++ b/frame/1/scalv/bli_scalv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv.h b/frame/1/scalv/bli_scalv.h index fa58f8b2d..bb445fe53 100644 --- a/frame/1/scalv/bli_scalv.h +++ b/frame/1/scalv/bli_scalv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_check.c b/frame/1/scalv/bli_scalv_check.c index fae46fb68..d1fcece1e 100644 --- a/frame/1/scalv/bli_scalv_check.c +++ b/frame/1/scalv/bli_scalv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_check.h b/frame/1/scalv/bli_scalv_check.h index 2f83ef9e3..c04ace50b 100644 --- a/frame/1/scalv/bli_scalv_check.h +++ b/frame/1/scalv/bli_scalv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_cntl.c b/frame/1/scalv/bli_scalv_cntl.c index 650c51987..1e537e1f0 100644 --- a/frame/1/scalv/bli_scalv_cntl.c +++ b/frame/1/scalv/bli_scalv_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_cntl.h b/frame/1/scalv/bli_scalv_cntl.h index 3496e19ff..4b3e3a3d9 100644 --- a/frame/1/scalv/bli_scalv_cntl.h +++ b/frame/1/scalv/bli_scalv_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_int.c b/frame/1/scalv/bli_scalv_int.c index e58bedf24..a3de0cfcd 100644 --- a/frame/1/scalv/bli_scalv_int.c +++ b/frame/1/scalv/bli_scalv_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_int.h b/frame/1/scalv/bli_scalv_int.h index dac2a0d13..a8975e1fb 100644 --- a/frame/1/scalv/bli_scalv_int.h +++ b/frame/1/scalv/bli_scalv_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_kernel.c b/frame/1/scalv/bli_scalv_kernel.c index 27e91251c..cf901b0c3 100644 --- a/frame/1/scalv/bli_scalv_kernel.c +++ b/frame/1/scalv/bli_scalv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_kernel.h b/frame/1/scalv/bli_scalv_kernel.h index 140630280..d4afdacfa 100644 --- a/frame/1/scalv/bli_scalv_kernel.h +++ b/frame/1/scalv/bli_scalv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_ref.c b/frame/1/scalv/bli_scalv_ref.c index 0bae6eff0..7d99af4ac 100644 --- a/frame/1/scalv/bli_scalv_ref.c +++ b/frame/1/scalv/bli_scalv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/scalv/bli_scalv_ref.h b/frame/1/scalv/bli_scalv_ref.h index 0bca900cf..5eafcbd7f 100644 --- a/frame/1/scalv/bli_scalv_ref.h +++ b/frame/1/scalv/bli_scalv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/bli_setv.c b/frame/1/setv/bli_setv.c index 33da76bf0..f8898e4cd 100644 --- a/frame/1/setv/bli_setv.c +++ b/frame/1/setv/bli_setv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/bli_setv.h b/frame/1/setv/bli_setv.h index edd6c2897..547c3118e 100644 --- a/frame/1/setv/bli_setv.h +++ b/frame/1/setv/bli_setv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/bli_setv_check.c b/frame/1/setv/bli_setv_check.c index 9efe0eb21..830706879 100644 --- a/frame/1/setv/bli_setv_check.c +++ b/frame/1/setv/bli_setv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/bli_setv_check.h b/frame/1/setv/bli_setv_check.h index 468c2c954..c3dfc840a 100644 --- a/frame/1/setv/bli_setv_check.h +++ b/frame/1/setv/bli_setv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/bli_setv_kernel.c b/frame/1/setv/bli_setv_kernel.c index 6f4c1a827..ded4af1ad 100644 --- a/frame/1/setv/bli_setv_kernel.c +++ b/frame/1/setv/bli_setv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/bli_setv_kernel.h b/frame/1/setv/bli_setv_kernel.h index fe6009b5b..b10687327 100644 --- a/frame/1/setv/bli_setv_kernel.h +++ b/frame/1/setv/bli_setv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/bli_setv_ref.c b/frame/1/setv/bli_setv_ref.c index 3d231b01c..2c2473fdd 100644 --- a/frame/1/setv/bli_setv_ref.c +++ b/frame/1/setv/bli_setv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/bli_setv_ref.h b/frame/1/setv/bli_setv_ref.h index 2962004f9..325262ea6 100644 --- a/frame/1/setv/bli_setv_ref.h +++ b/frame/1/setv/bli_setv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/old/bli_setv_unb_var2.c b/frame/1/setv/old/bli_setv_unb_var2.c index 9b9e0457a..7764d25b2 100644 --- a/frame/1/setv/old/bli_setv_unb_var2.c +++ b/frame/1/setv/old/bli_setv_unb_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/setv/old/bli_setv_unb_var2.h b/frame/1/setv/old/bli_setv_unb_var2.h index 5038daad4..517dfe210 100644 --- a/frame/1/setv/old/bli_setv_unb_var2.h +++ b/frame/1/setv/old/bli_setv_unb_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/subv/bli_subv.c b/frame/1/subv/bli_subv.c index 8a9e97ed2..cea807049 100644 --- a/frame/1/subv/bli_subv.c +++ b/frame/1/subv/bli_subv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/subv/bli_subv.h b/frame/1/subv/bli_subv.h index 49dd33b89..ea516a0eb 100644 --- a/frame/1/subv/bli_subv.h +++ b/frame/1/subv/bli_subv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/subv/bli_subv_check.c b/frame/1/subv/bli_subv_check.c index 78d27dcf7..a540c510a 100644 --- a/frame/1/subv/bli_subv_check.c +++ b/frame/1/subv/bli_subv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/subv/bli_subv_check.h b/frame/1/subv/bli_subv_check.h index a8dddb7fb..bf1a30ce2 100644 --- a/frame/1/subv/bli_subv_check.h +++ b/frame/1/subv/bli_subv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/subv/bli_subv_kernel.c b/frame/1/subv/bli_subv_kernel.c index 094f8699c..3b1e0db2d 100644 --- a/frame/1/subv/bli_subv_kernel.c +++ b/frame/1/subv/bli_subv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/subv/bli_subv_kernel.h b/frame/1/subv/bli_subv_kernel.h index a8252316a..b724718a4 100644 --- a/frame/1/subv/bli_subv_kernel.h +++ b/frame/1/subv/bli_subv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/subv/bli_subv_ref.c b/frame/1/subv/bli_subv_ref.c index 0c83ad123..770d26e76 100644 --- a/frame/1/subv/bli_subv_ref.c +++ b/frame/1/subv/bli_subv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/subv/bli_subv_ref.h b/frame/1/subv/bli_subv_ref.h index 96abd5f4c..23c67f3fc 100644 --- a/frame/1/subv/bli_subv_ref.h +++ b/frame/1/subv/bli_subv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/swapv/bli_swapv.c b/frame/1/swapv/bli_swapv.c index e8fb0625f..c5a72ab52 100644 --- a/frame/1/swapv/bli_swapv.c +++ b/frame/1/swapv/bli_swapv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/swapv/bli_swapv.h b/frame/1/swapv/bli_swapv.h index 8fa54c707..dee3a017c 100644 --- a/frame/1/swapv/bli_swapv.h +++ b/frame/1/swapv/bli_swapv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/swapv/bli_swapv_check.c b/frame/1/swapv/bli_swapv_check.c index 11070686f..d3bf4c4a7 100644 --- a/frame/1/swapv/bli_swapv_check.c +++ b/frame/1/swapv/bli_swapv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/swapv/bli_swapv_check.h b/frame/1/swapv/bli_swapv_check.h index 32ec032ec..095333443 100644 --- a/frame/1/swapv/bli_swapv_check.h +++ b/frame/1/swapv/bli_swapv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/swapv/bli_swapv_kernel.c b/frame/1/swapv/bli_swapv_kernel.c index 7feb9ee9b..7df387c2d 100644 --- a/frame/1/swapv/bli_swapv_kernel.c +++ b/frame/1/swapv/bli_swapv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/swapv/bli_swapv_kernel.h b/frame/1/swapv/bli_swapv_kernel.h index 4f4536111..d9deca1b1 100644 --- a/frame/1/swapv/bli_swapv_kernel.h +++ b/frame/1/swapv/bli_swapv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/swapv/bli_swapv_ref.c b/frame/1/swapv/bli_swapv_ref.c index c3ab90b29..6492821d4 100644 --- a/frame/1/swapv/bli_swapv_ref.c +++ b/frame/1/swapv/bli_swapv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/swapv/bli_swapv_ref.h b/frame/1/swapv/bli_swapv_ref.h index 2ec73336c..f8900f0d9 100644 --- a/frame/1/swapv/bli_swapv_ref.h +++ b/frame/1/swapv/bli_swapv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv.c b/frame/1/unpackv/bli_unpackv.c index 9df09633d..e3e02532a 100644 --- a/frame/1/unpackv/bli_unpackv.c +++ b/frame/1/unpackv/bli_unpackv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv.h b/frame/1/unpackv/bli_unpackv.h index f5ebcf24c..e394057a9 100644 --- a/frame/1/unpackv/bli_unpackv.h +++ b/frame/1/unpackv/bli_unpackv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv_check.c b/frame/1/unpackv/bli_unpackv_check.c index ce0bf3a85..879411a1b 100644 --- a/frame/1/unpackv/bli_unpackv_check.c +++ b/frame/1/unpackv/bli_unpackv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv_check.h b/frame/1/unpackv/bli_unpackv_check.h index 759640f6d..2d4c301e0 100644 --- a/frame/1/unpackv/bli_unpackv_check.h +++ b/frame/1/unpackv/bli_unpackv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv_cntl.c b/frame/1/unpackv/bli_unpackv_cntl.c index 5dd2a9a32..e6ba25928 100644 --- a/frame/1/unpackv/bli_unpackv_cntl.c +++ b/frame/1/unpackv/bli_unpackv_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv_cntl.h b/frame/1/unpackv/bli_unpackv_cntl.h index 0775fcc45..7726bc1ed 100644 --- a/frame/1/unpackv/bli_unpackv_cntl.h +++ b/frame/1/unpackv/bli_unpackv_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv_int.c b/frame/1/unpackv/bli_unpackv_int.c index 1c872b090..8924aab9e 100644 --- a/frame/1/unpackv/bli_unpackv_int.c +++ b/frame/1/unpackv/bli_unpackv_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv_int.h b/frame/1/unpackv/bli_unpackv_int.h index 5609585f2..1c48902b0 100644 --- a/frame/1/unpackv/bli_unpackv_int.h +++ b/frame/1/unpackv/bli_unpackv_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv_unb_var1.c b/frame/1/unpackv/bli_unpackv_unb_var1.c index f854c301e..37c539806 100644 --- a/frame/1/unpackv/bli_unpackv_unb_var1.c +++ b/frame/1/unpackv/bli_unpackv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1/unpackv/bli_unpackv_unb_var1.h b/frame/1/unpackv/bli_unpackv_unb_var1.h index 53bd797f9..313dc94d6 100644 --- a/frame/1/unpackv/bli_unpackv_unb_var1.h +++ b/frame/1/unpackv/bli_unpackv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/addd/bli_addd.c b/frame/1d/addd/bli_addd.c index 5f90b412c..0cf03c7c4 100644 --- a/frame/1d/addd/bli_addd.c +++ b/frame/1d/addd/bli_addd.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/addd/bli_addd.h b/frame/1d/addd/bli_addd.h index 043dfa564..e654e99ea 100644 --- a/frame/1d/addd/bli_addd.h +++ b/frame/1d/addd/bli_addd.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/addd/bli_addd_check.c b/frame/1d/addd/bli_addd_check.c index 60a8fd428..b8ee1e856 100644 --- a/frame/1d/addd/bli_addd_check.c +++ b/frame/1d/addd/bli_addd_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/addd/bli_addd_check.h b/frame/1d/addd/bli_addd_check.h index 171231e84..ca2bca4b1 100644 --- a/frame/1d/addd/bli_addd_check.h +++ b/frame/1d/addd/bli_addd_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/addd/bli_addd_unb_var1.c b/frame/1d/addd/bli_addd_unb_var1.c index 89a87da60..f77da17e7 100644 --- a/frame/1d/addd/bli_addd_unb_var1.c +++ b/frame/1d/addd/bli_addd_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/addd/bli_addd_unb_var1.h b/frame/1d/addd/bli_addd_unb_var1.h index 43f3ca402..e43e597d1 100644 --- a/frame/1d/addd/bli_addd_unb_var1.h +++ b/frame/1d/addd/bli_addd_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/axpyd/bli_axpyd.c b/frame/1d/axpyd/bli_axpyd.c index 814bd4d71..b754b9773 100644 --- a/frame/1d/axpyd/bli_axpyd.c +++ b/frame/1d/axpyd/bli_axpyd.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/axpyd/bli_axpyd.h b/frame/1d/axpyd/bli_axpyd.h index af73bc468..b4fe6b0b2 100644 --- a/frame/1d/axpyd/bli_axpyd.h +++ b/frame/1d/axpyd/bli_axpyd.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/axpyd/bli_axpyd_check.c b/frame/1d/axpyd/bli_axpyd_check.c index b9e06dc3b..cc0d962b3 100644 --- a/frame/1d/axpyd/bli_axpyd_check.c +++ b/frame/1d/axpyd/bli_axpyd_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/axpyd/bli_axpyd_check.h b/frame/1d/axpyd/bli_axpyd_check.h index 59ea42078..1db196dfb 100644 --- a/frame/1d/axpyd/bli_axpyd_check.h +++ b/frame/1d/axpyd/bli_axpyd_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/axpyd/bli_axpyd_unb_var1.c b/frame/1d/axpyd/bli_axpyd_unb_var1.c index 787470bde..459c75af8 100644 --- a/frame/1d/axpyd/bli_axpyd_unb_var1.c +++ b/frame/1d/axpyd/bli_axpyd_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/axpyd/bli_axpyd_unb_var1.h b/frame/1d/axpyd/bli_axpyd_unb_var1.h index 2343b3a2e..ec62ace17 100644 --- a/frame/1d/axpyd/bli_axpyd_unb_var1.h +++ b/frame/1d/axpyd/bli_axpyd_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/copyd/bli_copyd.c b/frame/1d/copyd/bli_copyd.c index 2a7015eea..d5a929ed4 100644 --- a/frame/1d/copyd/bli_copyd.c +++ b/frame/1d/copyd/bli_copyd.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/copyd/bli_copyd.h b/frame/1d/copyd/bli_copyd.h index b40ca1c38..62f998703 100644 --- a/frame/1d/copyd/bli_copyd.h +++ b/frame/1d/copyd/bli_copyd.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/copyd/bli_copyd_check.c b/frame/1d/copyd/bli_copyd_check.c index 7704f23b9..f0fd204d5 100644 --- a/frame/1d/copyd/bli_copyd_check.c +++ b/frame/1d/copyd/bli_copyd_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/copyd/bli_copyd_check.h b/frame/1d/copyd/bli_copyd_check.h index 48edfce00..97714b8bc 100644 --- a/frame/1d/copyd/bli_copyd_check.h +++ b/frame/1d/copyd/bli_copyd_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/copyd/bli_copyd_unb_var1.c b/frame/1d/copyd/bli_copyd_unb_var1.c index bce0b723d..60949c7f7 100644 --- a/frame/1d/copyd/bli_copyd_unb_var1.c +++ b/frame/1d/copyd/bli_copyd_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/copyd/bli_copyd_unb_var1.h b/frame/1d/copyd/bli_copyd_unb_var1.h index 0cf409518..a7cc12721 100644 --- a/frame/1d/copyd/bli_copyd_unb_var1.h +++ b/frame/1d/copyd/bli_copyd_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/invertd/bli_invertd.c b/frame/1d/invertd/bli_invertd.c index d2cacb6f9..aa1fad9cd 100644 --- a/frame/1d/invertd/bli_invertd.c +++ b/frame/1d/invertd/bli_invertd.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/invertd/bli_invertd.h b/frame/1d/invertd/bli_invertd.h index 045bddb38..b2352592a 100644 --- a/frame/1d/invertd/bli_invertd.h +++ b/frame/1d/invertd/bli_invertd.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/invertd/bli_invertd_check.c b/frame/1d/invertd/bli_invertd_check.c index d743b23f4..b05984c9b 100644 --- a/frame/1d/invertd/bli_invertd_check.c +++ b/frame/1d/invertd/bli_invertd_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/invertd/bli_invertd_check.h b/frame/1d/invertd/bli_invertd_check.h index f5b78bfc8..e62ce8d7c 100644 --- a/frame/1d/invertd/bli_invertd_check.h +++ b/frame/1d/invertd/bli_invertd_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/invertd/bli_invertd_unb_var1.c b/frame/1d/invertd/bli_invertd_unb_var1.c index 745a67168..adfb25631 100644 --- a/frame/1d/invertd/bli_invertd_unb_var1.c +++ b/frame/1d/invertd/bli_invertd_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/invertd/bli_invertd_unb_var1.h b/frame/1d/invertd/bli_invertd_unb_var1.h index f632bcf3d..93d7130b9 100644 --- a/frame/1d/invertd/bli_invertd_unb_var1.h +++ b/frame/1d/invertd/bli_invertd_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scal2d/bli_scal2d.c b/frame/1d/scal2d/bli_scal2d.c index 0509a4e1c..4980d8445 100644 --- a/frame/1d/scal2d/bli_scal2d.c +++ b/frame/1d/scal2d/bli_scal2d.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scal2d/bli_scal2d.h b/frame/1d/scal2d/bli_scal2d.h index 80d15c05e..355240916 100644 --- a/frame/1d/scal2d/bli_scal2d.h +++ b/frame/1d/scal2d/bli_scal2d.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scal2d/bli_scal2d_check.c b/frame/1d/scal2d/bli_scal2d_check.c index 763258874..2b370e957 100644 --- a/frame/1d/scal2d/bli_scal2d_check.c +++ b/frame/1d/scal2d/bli_scal2d_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scal2d/bli_scal2d_check.h b/frame/1d/scal2d/bli_scal2d_check.h index 73938fe97..446ace97e 100644 --- a/frame/1d/scal2d/bli_scal2d_check.h +++ b/frame/1d/scal2d/bli_scal2d_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scal2d/bli_scal2d_unb_var1.c b/frame/1d/scal2d/bli_scal2d_unb_var1.c index b7d2eeb2a..dd67bbc1f 100644 --- a/frame/1d/scal2d/bli_scal2d_unb_var1.c +++ b/frame/1d/scal2d/bli_scal2d_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scal2d/bli_scal2d_unb_var1.h b/frame/1d/scal2d/bli_scal2d_unb_var1.h index b53ed5a09..f4456fb35 100644 --- a/frame/1d/scal2d/bli_scal2d_unb_var1.h +++ b/frame/1d/scal2d/bli_scal2d_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scald/bli_scald.c b/frame/1d/scald/bli_scald.c index 9b0f04541..12c953967 100644 --- a/frame/1d/scald/bli_scald.c +++ b/frame/1d/scald/bli_scald.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scald/bli_scald.h b/frame/1d/scald/bli_scald.h index 366bbe5ab..d6426cf69 100644 --- a/frame/1d/scald/bli_scald.h +++ b/frame/1d/scald/bli_scald.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scald/bli_scald_check.c b/frame/1d/scald/bli_scald_check.c index ac1fa81db..8acf52ca0 100644 --- a/frame/1d/scald/bli_scald_check.c +++ b/frame/1d/scald/bli_scald_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scald/bli_scald_check.h b/frame/1d/scald/bli_scald_check.h index abc5631b8..9a1d31ac2 100644 --- a/frame/1d/scald/bli_scald_check.h +++ b/frame/1d/scald/bli_scald_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scald/bli_scald_unb_var1.c b/frame/1d/scald/bli_scald_unb_var1.c index 19bf557b7..66559b22a 100644 --- a/frame/1d/scald/bli_scald_unb_var1.c +++ b/frame/1d/scald/bli_scald_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/scald/bli_scald_unb_var1.h b/frame/1d/scald/bli_scald_unb_var1.h index 7451cbf22..5a1c7815b 100644 --- a/frame/1d/scald/bli_scald_unb_var1.h +++ b/frame/1d/scald/bli_scald_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/setd/bli_setd.c b/frame/1d/setd/bli_setd.c index bc6ceb2d2..f33861de7 100644 --- a/frame/1d/setd/bli_setd.c +++ b/frame/1d/setd/bli_setd.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/setd/bli_setd.h b/frame/1d/setd/bli_setd.h index 625b63c31..54faa4dea 100644 --- a/frame/1d/setd/bli_setd.h +++ b/frame/1d/setd/bli_setd.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/setd/bli_setd_check.c b/frame/1d/setd/bli_setd_check.c index b6a8507b8..ea5a128f6 100644 --- a/frame/1d/setd/bli_setd_check.c +++ b/frame/1d/setd/bli_setd_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/setd/bli_setd_check.h b/frame/1d/setd/bli_setd_check.h index 0209e8e2a..1cd516f64 100644 --- a/frame/1d/setd/bli_setd_check.h +++ b/frame/1d/setd/bli_setd_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/setd/bli_setd_unb_var1.c b/frame/1d/setd/bli_setd_unb_var1.c index 9e75ce7cb..a4512430c 100644 --- a/frame/1d/setd/bli_setd_unb_var1.c +++ b/frame/1d/setd/bli_setd_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/setd/bli_setd_unb_var1.h b/frame/1d/setd/bli_setd_unb_var1.h index 74848ac58..dc61e2387 100644 --- a/frame/1d/setd/bli_setd_unb_var1.h +++ b/frame/1d/setd/bli_setd_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/subd/bli_subd.c b/frame/1d/subd/bli_subd.c index d1e4f75c3..5ede9101a 100644 --- a/frame/1d/subd/bli_subd.c +++ b/frame/1d/subd/bli_subd.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/subd/bli_subd.h b/frame/1d/subd/bli_subd.h index 3f1d79367..4f06f0c18 100644 --- a/frame/1d/subd/bli_subd.h +++ b/frame/1d/subd/bli_subd.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/subd/bli_subd_check.c b/frame/1d/subd/bli_subd_check.c index 9509205ce..57e6c73ab 100644 --- a/frame/1d/subd/bli_subd_check.c +++ b/frame/1d/subd/bli_subd_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/subd/bli_subd_check.h b/frame/1d/subd/bli_subd_check.h index 386619943..6f1a15dbe 100644 --- a/frame/1d/subd/bli_subd_check.h +++ b/frame/1d/subd/bli_subd_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/subd/bli_subd_unb_var1.c b/frame/1d/subd/bli_subd_unb_var1.c index d00b5b574..47bdfd2b9 100644 --- a/frame/1d/subd/bli_subd_unb_var1.c +++ b/frame/1d/subd/bli_subd_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1d/subd/bli_subd_unb_var1.h b/frame/1d/subd/bli_subd_unb_var1.h index 1294e206f..73ffb1bb1 100644 --- a/frame/1d/subd/bli_subd_unb_var1.h +++ b/frame/1d/subd/bli_subd_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpy2v/bli_axpy2v.c b/frame/1f/axpy2v/bli_axpy2v.c index f7c4bf2af..c0e3fddc4 100644 --- a/frame/1f/axpy2v/bli_axpy2v.c +++ b/frame/1f/axpy2v/bli_axpy2v.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpy2v/bli_axpy2v.h b/frame/1f/axpy2v/bli_axpy2v.h index 9a758974a..8b133da95 100644 --- a/frame/1f/axpy2v/bli_axpy2v.h +++ b/frame/1f/axpy2v/bli_axpy2v.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpy2v/bli_axpy2v_check.c b/frame/1f/axpy2v/bli_axpy2v_check.c index 099ccc45e..49c716374 100644 --- a/frame/1f/axpy2v/bli_axpy2v_check.c +++ b/frame/1f/axpy2v/bli_axpy2v_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpy2v/bli_axpy2v_check.h b/frame/1f/axpy2v/bli_axpy2v_check.h index f70c8fa4d..6b6a75b3b 100644 --- a/frame/1f/axpy2v/bli_axpy2v_check.h +++ b/frame/1f/axpy2v/bli_axpy2v_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpy2v/bli_axpy2v_kernel.c b/frame/1f/axpy2v/bli_axpy2v_kernel.c index 6420eca65..62920cf4f 100644 --- a/frame/1f/axpy2v/bli_axpy2v_kernel.c +++ b/frame/1f/axpy2v/bli_axpy2v_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpy2v/bli_axpy2v_kernel.h b/frame/1f/axpy2v/bli_axpy2v_kernel.h index 0bd10485d..d642315e4 100644 --- a/frame/1f/axpy2v/bli_axpy2v_kernel.h +++ b/frame/1f/axpy2v/bli_axpy2v_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpy2v/bli_axpy2v_ref.c b/frame/1f/axpy2v/bli_axpy2v_ref.c index f999bf86f..8781736dc 100644 --- a/frame/1f/axpy2v/bli_axpy2v_ref.c +++ b/frame/1f/axpy2v/bli_axpy2v_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpy2v/bli_axpy2v_ref.h b/frame/1f/axpy2v/bli_axpy2v_ref.h index 34c0cb06d..6d23ac0fa 100644 --- a/frame/1f/axpy2v/bli_axpy2v_ref.h +++ b/frame/1f/axpy2v/bli_axpy2v_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf.c b/frame/1f/axpyf/bli_axpyf.c index 24e8ca79e..f255313d9 100644 --- a/frame/1f/axpyf/bli_axpyf.c +++ b/frame/1f/axpyf/bli_axpyf.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf.h b/frame/1f/axpyf/bli_axpyf.h index c5590c1e5..c24217d9a 100644 --- a/frame/1f/axpyf/bli_axpyf.h +++ b/frame/1f/axpyf/bli_axpyf.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf_check.c b/frame/1f/axpyf/bli_axpyf_check.c index 6ac045b6c..7531c8a2c 100644 --- a/frame/1f/axpyf/bli_axpyf_check.c +++ b/frame/1f/axpyf/bli_axpyf_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf_check.h b/frame/1f/axpyf/bli_axpyf_check.h index de1865155..aadbe3c1e 100644 --- a/frame/1f/axpyf/bli_axpyf_check.h +++ b/frame/1f/axpyf/bli_axpyf_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf_fusefac.c b/frame/1f/axpyf/bli_axpyf_fusefac.c index 0272fe7c6..a2cd4d956 100644 --- a/frame/1f/axpyf/bli_axpyf_fusefac.c +++ b/frame/1f/axpyf/bli_axpyf_fusefac.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf_fusefac.h b/frame/1f/axpyf/bli_axpyf_fusefac.h index 5c24d4b5b..756ac4e42 100644 --- a/frame/1f/axpyf/bli_axpyf_fusefac.h +++ b/frame/1f/axpyf/bli_axpyf_fusefac.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf_kernel.c b/frame/1f/axpyf/bli_axpyf_kernel.c index 43ed77ae5..577d3c8c2 100644 --- a/frame/1f/axpyf/bli_axpyf_kernel.c +++ b/frame/1f/axpyf/bli_axpyf_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf_kernel.h b/frame/1f/axpyf/bli_axpyf_kernel.h index 3dca6b5ba..b6aa90ded 100644 --- a/frame/1f/axpyf/bli_axpyf_kernel.h +++ b/frame/1f/axpyf/bli_axpyf_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf_ref.c b/frame/1f/axpyf/bli_axpyf_ref.c index 1264717c3..b11904420 100644 --- a/frame/1f/axpyf/bli_axpyf_ref.c +++ b/frame/1f/axpyf/bli_axpyf_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/axpyf/bli_axpyf_ref.h b/frame/1f/axpyf/bli_axpyf_ref.h index 8f56a230d..00095152c 100644 --- a/frame/1f/axpyf/bli_axpyf_ref.h +++ b/frame/1f/axpyf/bli_axpyf_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv.c b/frame/1f/dotaxpyv/bli_dotaxpyv.c index 68500110b..c16919ef6 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv.c +++ b/frame/1f/dotaxpyv/bli_dotaxpyv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv.h b/frame/1f/dotaxpyv/bli_dotaxpyv.h index e0831bd7c..02d1fc323 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv.h +++ b/frame/1f/dotaxpyv/bli_dotaxpyv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_check.c b/frame/1f/dotaxpyv/bli_dotaxpyv_check.c index 0cedb1aed..3308c6e94 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_check.c +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_check.h b/frame/1f/dotaxpyv/bli_dotaxpyv_check.h index d3b870ed6..5f06c049b 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_check.h +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c b/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c index 42814336a..bc1a5754a 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h b/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h index bf1d5f097..0390d7700 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_ref.c b/frame/1f/dotaxpyv/bli_dotaxpyv_ref.c index 1bd3e0735..595845a42 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_ref.c +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_ref.h b/frame/1f/dotaxpyv/bli_dotaxpyv_ref.h index ffdaa7d0c..29081c705 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_ref.h +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf.c index a65936203..3680dc57a 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf.h index 5a2fd7f8b..2001b5663 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c index d696d51f1..3df435449 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h index cca0203e9..f1f3dd151 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c index c09fed594..9b43302da 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h index 1b6fdf367..4e09e31a1 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c index babf08b99..27c0a604d 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h index eeb4a10eb..111699559 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c index b43828076..440898c2b 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h index 5315a8a14..15d61e838 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c index 7aa70ae0c..1147574aa 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h index 742f56981..387386bd1 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf.c b/frame/1f/dotxf/bli_dotxf.c index 4f449a0b6..791c90b1f 100644 --- a/frame/1f/dotxf/bli_dotxf.c +++ b/frame/1f/dotxf/bli_dotxf.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf.h b/frame/1f/dotxf/bli_dotxf.h index 06c9d151b..54ef43f4e 100644 --- a/frame/1f/dotxf/bli_dotxf.h +++ b/frame/1f/dotxf/bli_dotxf.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf_check.c b/frame/1f/dotxf/bli_dotxf_check.c index 656045f7c..e9188846b 100644 --- a/frame/1f/dotxf/bli_dotxf_check.c +++ b/frame/1f/dotxf/bli_dotxf_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf_check.h b/frame/1f/dotxf/bli_dotxf_check.h index 1a85043fa..65296de62 100644 --- a/frame/1f/dotxf/bli_dotxf_check.h +++ b/frame/1f/dotxf/bli_dotxf_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf_fusefac.c b/frame/1f/dotxf/bli_dotxf_fusefac.c index bf79b7b88..7db7a1505 100644 --- a/frame/1f/dotxf/bli_dotxf_fusefac.c +++ b/frame/1f/dotxf/bli_dotxf_fusefac.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf_fusefac.h b/frame/1f/dotxf/bli_dotxf_fusefac.h index 0d0796d2f..d09777fc1 100644 --- a/frame/1f/dotxf/bli_dotxf_fusefac.h +++ b/frame/1f/dotxf/bli_dotxf_fusefac.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf_kernel.c b/frame/1f/dotxf/bli_dotxf_kernel.c index 841ee7c6a..eba71f737 100644 --- a/frame/1f/dotxf/bli_dotxf_kernel.c +++ b/frame/1f/dotxf/bli_dotxf_kernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf_kernel.h b/frame/1f/dotxf/bli_dotxf_kernel.h index 1821a22a7..cc0f0e95e 100644 --- a/frame/1f/dotxf/bli_dotxf_kernel.h +++ b/frame/1f/dotxf/bli_dotxf_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf_ref.c b/frame/1f/dotxf/bli_dotxf_ref.c index 27b46756e..77ba0c9f6 100644 --- a/frame/1f/dotxf/bli_dotxf_ref.c +++ b/frame/1f/dotxf/bli_dotxf_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1f/dotxf/bli_dotxf_ref.h b/frame/1f/dotxf/bli_dotxf_ref.h index 6f03252d6..5d73e7412 100644 --- a/frame/1f/dotxf/bli_dotxf_ref.h +++ b/frame/1f/dotxf/bli_dotxf_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/addm/bli_addm.c b/frame/1m/addm/bli_addm.c index 0d8ae5655..421fa3b74 100644 --- a/frame/1m/addm/bli_addm.c +++ b/frame/1m/addm/bli_addm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/addm/bli_addm.h b/frame/1m/addm/bli_addm.h index af856b59c..d174f7c59 100644 --- a/frame/1m/addm/bli_addm.h +++ b/frame/1m/addm/bli_addm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/addm/bli_addm_check.c b/frame/1m/addm/bli_addm_check.c index cca55e547..f0d638f7d 100644 --- a/frame/1m/addm/bli_addm_check.c +++ b/frame/1m/addm/bli_addm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/addm/bli_addm_check.h b/frame/1m/addm/bli_addm_check.h index b6531b376..0203600c0 100644 --- a/frame/1m/addm/bli_addm_check.h +++ b/frame/1m/addm/bli_addm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/addm/bli_addm_unb_var1.c b/frame/1m/addm/bli_addm_unb_var1.c index 7fa9ac280..34b5372ae 100644 --- a/frame/1m/addm/bli_addm_unb_var1.c +++ b/frame/1m/addm/bli_addm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/addm/bli_addm_unb_var1.h b/frame/1m/addm/bli_addm_unb_var1.h index 1033190dc..8de8b3a18 100644 --- a/frame/1m/addm/bli_addm_unb_var1.h +++ b/frame/1m/addm/bli_addm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/axpym/bli_axpym.c b/frame/1m/axpym/bli_axpym.c index d323f2613..ff8ebe824 100644 --- a/frame/1m/axpym/bli_axpym.c +++ b/frame/1m/axpym/bli_axpym.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/axpym/bli_axpym.h b/frame/1m/axpym/bli_axpym.h index b6b4edeee..9162d6af6 100644 --- a/frame/1m/axpym/bli_axpym.h +++ b/frame/1m/axpym/bli_axpym.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/axpym/bli_axpym_check.c b/frame/1m/axpym/bli_axpym_check.c index f289fdd55..b8f8bfdaa 100644 --- a/frame/1m/axpym/bli_axpym_check.c +++ b/frame/1m/axpym/bli_axpym_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/axpym/bli_axpym_check.h b/frame/1m/axpym/bli_axpym_check.h index e905b39f0..909374aad 100644 --- a/frame/1m/axpym/bli_axpym_check.h +++ b/frame/1m/axpym/bli_axpym_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/axpym/bli_axpym_unb_var1.c b/frame/1m/axpym/bli_axpym_unb_var1.c index a01e88c7a..576d1d692 100644 --- a/frame/1m/axpym/bli_axpym_unb_var1.c +++ b/frame/1m/axpym/bli_axpym_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/axpym/bli_axpym_unb_var1.h b/frame/1m/axpym/bli_axpym_unb_var1.h index 2b7395cc6..06caeb718 100644 --- a/frame/1m/axpym/bli_axpym_unb_var1.h +++ b/frame/1m/axpym/bli_axpym_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/copym/bli_copym.c b/frame/1m/copym/bli_copym.c index 81a85ac05..5bcdb067a 100644 --- a/frame/1m/copym/bli_copym.c +++ b/frame/1m/copym/bli_copym.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/copym/bli_copym.h b/frame/1m/copym/bli_copym.h index 44b1f79c2..23c5ac28a 100644 --- a/frame/1m/copym/bli_copym.h +++ b/frame/1m/copym/bli_copym.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/copym/bli_copym_check.c b/frame/1m/copym/bli_copym_check.c index 3cb6fafa5..0256717eb 100644 --- a/frame/1m/copym/bli_copym_check.c +++ b/frame/1m/copym/bli_copym_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/copym/bli_copym_check.h b/frame/1m/copym/bli_copym_check.h index b71ee2f9d..8b1cc472d 100644 --- a/frame/1m/copym/bli_copym_check.h +++ b/frame/1m/copym/bli_copym_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/copym/bli_copym_unb_var1.c b/frame/1m/copym/bli_copym_unb_var1.c index 2fd54f3db..e4ab021f0 100644 --- a/frame/1m/copym/bli_copym_unb_var1.c +++ b/frame/1m/copym/bli_copym_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/copym/bli_copym_unb_var1.h b/frame/1m/copym/bli_copym_unb_var1.h index 66c7e1ec7..9704dce9c 100644 --- a/frame/1m/copym/bli_copym_unb_var1.h +++ b/frame/1m/copym/bli_copym_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm.c b/frame/1m/packm/bli_packm.c index 9df09633d..e3e02532a 100644 --- a/frame/1m/packm/bli_packm.c +++ b/frame/1m/packm/bli_packm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm.h b/frame/1m/packm/bli_packm.h index a89cd75dc..835da0deb 100644 --- a/frame/1m/packm/bli_packm.h +++ b/frame/1m/packm/bli_packm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_blk_var1.c b/frame/1m/packm/bli_packm_blk_var1.c index c666a9b44..699b3d18e 100644 --- a/frame/1m/packm/bli_packm_blk_var1.c +++ b/frame/1m/packm/bli_packm_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_blk_var1.h b/frame/1m/packm/bli_packm_blk_var1.h index e4cd44e78..d6714530f 100644 --- a/frame/1m/packm/bli_packm_blk_var1.h +++ b/frame/1m/packm/bli_packm_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_blk_var3.c b/frame/1m/packm/bli_packm_blk_var3.c index 2d69e51d7..8f9f08148 100644 --- a/frame/1m/packm/bli_packm_blk_var3.c +++ b/frame/1m/packm/bli_packm_blk_var3.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_blk_var3.h b/frame/1m/packm/bli_packm_blk_var3.h index b1d684262..f025be409 100644 --- a/frame/1m/packm/bli_packm_blk_var3.h +++ b/frame/1m/packm/bli_packm_blk_var3.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_blk_var4.c b/frame/1m/packm/bli_packm_blk_var4.c index 8cfd49afa..83d56f096 100644 --- a/frame/1m/packm/bli_packm_blk_var4.c +++ b/frame/1m/packm/bli_packm_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_blk_var4.h b/frame/1m/packm/bli_packm_blk_var4.h index e727873e4..be11465cb 100644 --- a/frame/1m/packm/bli_packm_blk_var4.h +++ b/frame/1m/packm/bli_packm_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_check.c b/frame/1m/packm/bli_packm_check.c index 1501f475f..8ff6e6f6c 100644 --- a/frame/1m/packm/bli_packm_check.c +++ b/frame/1m/packm/bli_packm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_check.h b/frame/1m/packm/bli_packm_check.h index ea4a8204d..261647fbb 100644 --- a/frame/1m/packm/bli_packm_check.h +++ b/frame/1m/packm/bli_packm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_cntl.c b/frame/1m/packm/bli_packm_cntl.c index a849c337a..81f8e7f9f 100644 --- a/frame/1m/packm/bli_packm_cntl.c +++ b/frame/1m/packm/bli_packm_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_cntl.h b/frame/1m/packm/bli_packm_cntl.h index 35ec797b4..29b2875ef 100644 --- a/frame/1m/packm/bli_packm_cntl.h +++ b/frame/1m/packm/bli_packm_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_cxk.c b/frame/1m/packm/bli_packm_cxk.c index f104a8fd3..188343322 100644 --- a/frame/1m/packm/bli_packm_cxk.c +++ b/frame/1m/packm/bli_packm_cxk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_cxk.h b/frame/1m/packm/bli_packm_cxk.h index 60a88657e..790f72bdf 100644 --- a/frame/1m/packm/bli_packm_cxk.h +++ b/frame/1m/packm/bli_packm_cxk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_cxk_ri.c b/frame/1m/packm/bli_packm_cxk_ri.c index fecac4fc6..77dde8456 100644 --- a/frame/1m/packm/bli_packm_cxk_ri.c +++ b/frame/1m/packm/bli_packm_cxk_ri.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_cxk_ri.h b/frame/1m/packm/bli_packm_cxk_ri.h index 57d9afd15..efc1e6eee 100644 --- a/frame/1m/packm/bli_packm_cxk_ri.h +++ b/frame/1m/packm/bli_packm_cxk_ri.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_cxk_ri3.c b/frame/1m/packm/bli_packm_cxk_ri3.c index dde9031a5..09045809d 100644 --- a/frame/1m/packm/bli_packm_cxk_ri3.c +++ b/frame/1m/packm/bli_packm_cxk_ri3.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_cxk_ri3.h b/frame/1m/packm/bli_packm_cxk_ri3.h index 0c782252f..6dc8ae91b 100644 --- a/frame/1m/packm/bli_packm_cxk_ri3.h +++ b/frame/1m/packm/bli_packm_cxk_ri3.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_gen_cxk.c b/frame/1m/packm/bli_packm_gen_cxk.c index 27a7da2a2..0c42e0c50 100644 --- a/frame/1m/packm/bli_packm_gen_cxk.c +++ b/frame/1m/packm/bli_packm_gen_cxk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_gen_cxk.h b/frame/1m/packm/bli_packm_gen_cxk.h index 1c0ba8398..7fb600231 100644 --- a/frame/1m/packm/bli_packm_gen_cxk.h +++ b/frame/1m/packm/bli_packm_gen_cxk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_herm_cxk.c b/frame/1m/packm/bli_packm_herm_cxk.c index 7d1347d91..7f1029118 100644 --- a/frame/1m/packm/bli_packm_herm_cxk.c +++ b/frame/1m/packm/bli_packm_herm_cxk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_herm_cxk.h b/frame/1m/packm/bli_packm_herm_cxk.h index 049b57c1b..52043232d 100644 --- a/frame/1m/packm/bli_packm_herm_cxk.h +++ b/frame/1m/packm/bli_packm_herm_cxk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_init.c b/frame/1m/packm/bli_packm_init.c index eac2a7a8e..bbbf16e95 100644 --- a/frame/1m/packm/bli_packm_init.c +++ b/frame/1m/packm/bli_packm_init.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_init.h b/frame/1m/packm/bli_packm_init.h index 5acee0c07..7589d4cf6 100644 --- a/frame/1m/packm/bli_packm_init.h +++ b/frame/1m/packm/bli_packm_init.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_int.c b/frame/1m/packm/bli_packm_int.c index a3d89b679..f240326c0 100644 --- a/frame/1m/packm/bli_packm_int.c +++ b/frame/1m/packm/bli_packm_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_int.h b/frame/1m/packm/bli_packm_int.h index 1e6a122ac..1af860a4a 100644 --- a/frame/1m/packm/bli_packm_int.h +++ b/frame/1m/packm/bli_packm_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_part.c b/frame/1m/packm/bli_packm_part.c index d841db7f5..1e59d00cf 100644 --- a/frame/1m/packm/bli_packm_part.c +++ b/frame/1m/packm/bli_packm_part.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_part.h b/frame/1m/packm/bli_packm_part.h index 056ff4c79..cfdfdc3fb 100644 --- a/frame/1m/packm/bli_packm_part.h +++ b/frame/1m/packm/bli_packm_part.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_threading.c b/frame/1m/packm/bli_packm_threading.c index 098475c5e..8a05940e2 100644 --- a/frame/1m/packm/bli_packm_threading.c +++ b/frame/1m/packm/bli_packm_threading.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_threading.h b/frame/1m/packm/bli_packm_threading.h index 7b4dc0f22..51f3df40b 100644 --- a/frame/1m/packm/bli_packm_threading.h +++ b/frame/1m/packm/bli_packm_threading.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_tri_cxk.c b/frame/1m/packm/bli_packm_tri_cxk.c index de213a542..2d75c4a17 100644 --- a/frame/1m/packm/bli_packm_tri_cxk.c +++ b/frame/1m/packm/bli_packm_tri_cxk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_tri_cxk.h b/frame/1m/packm/bli_packm_tri_cxk.h index 771d75af0..08303759d 100644 --- a/frame/1m/packm/bli_packm_tri_cxk.h +++ b/frame/1m/packm/bli_packm_tri_cxk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_unb_var1.c b/frame/1m/packm/bli_packm_unb_var1.c index b344b93d6..0fa5859eb 100644 --- a/frame/1m/packm/bli_packm_unb_var1.c +++ b/frame/1m/packm/bli_packm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/bli_packm_unb_var1.h b/frame/1m/packm/bli_packm_unb_var1.h index 25e95994e..01b5374db 100644 --- a/frame/1m/packm/bli_packm_unb_var1.h +++ b/frame/1m/packm/bli_packm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/old/bli_packm_blk_var1.c b/frame/1m/packm/old/bli_packm_blk_var1.c index 1c885a7d7..53be87cc4 100644 --- a/frame/1m/packm/old/bli_packm_blk_var1.c +++ b/frame/1m/packm/old/bli_packm_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/old/bli_packm_blk_var1.h b/frame/1m/packm/old/bli_packm_blk_var1.h index ba824d1c1..9ae34eead 100644 --- a/frame/1m/packm/old/bli_packm_blk_var1.h +++ b/frame/1m/packm/old/bli_packm_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/old/bli_packm_blk_var2.c b/frame/1m/packm/old/bli_packm_blk_var2.c index 38a6a4622..9fba00869 100644 --- a/frame/1m/packm/old/bli_packm_blk_var2.c +++ b/frame/1m/packm/old/bli_packm_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/old/bli_packm_blk_var2.h b/frame/1m/packm/old/bli_packm_blk_var2.h index efecea9a1..2f2fedcba 100644 --- a/frame/1m/packm/old/bli_packm_blk_var2.h +++ b/frame/1m/packm/old/bli_packm_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/old/bli_packm_densify.c b/frame/1m/packm/old/bli_packm_densify.c index 965a0a56c..6ab2e97f1 100644 --- a/frame/1m/packm/old/bli_packm_densify.c +++ b/frame/1m/packm/old/bli_packm_densify.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/old/bli_packm_densify.h b/frame/1m/packm/old/bli_packm_densify.h index 0fd6b9342..1097bcf7e 100644 --- a/frame/1m/packm/old/bli_packm_densify.h +++ b/frame/1m/packm/old/bli_packm_densify.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/other/bli_packm_blk_var2.c b/frame/1m/packm/other/bli_packm_blk_var2.c index 2a28bcb55..01b8a883f 100644 --- a/frame/1m/packm/other/bli_packm_blk_var2.c +++ b/frame/1m/packm/other/bli_packm_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_10xk.c b/frame/1m/packm/ukernels/bli_packm_ref_10xk.c index 4ac18bf83..4ec82f40e 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_10xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_10xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_10xk.h b/frame/1m/packm/ukernels/bli_packm_ref_10xk.h index 5d39a278e..25995a94e 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_10xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_10xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_12xk.c b/frame/1m/packm/ukernels/bli_packm_ref_12xk.c index 50ade8e99..812e5ad2f 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_12xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_12xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_12xk.h b/frame/1m/packm/ukernels/bli_packm_ref_12xk.h index 80f82a001..26d930c3b 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_12xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_12xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_14xk.c b/frame/1m/packm/ukernels/bli_packm_ref_14xk.c index 5e0dd53f2..166367f51 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_14xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_14xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_14xk.h b/frame/1m/packm/ukernels/bli_packm_ref_14xk.h index e9e546d41..0a00a281c 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_14xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_14xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_16xk.c b/frame/1m/packm/ukernels/bli_packm_ref_16xk.c index f6f8c5eff..386fa330f 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_16xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_16xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_16xk.h b/frame/1m/packm/ukernels/bli_packm_ref_16xk.h index 6b4169cbf..2b4d2b96d 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_16xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_16xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_2xk.c b/frame/1m/packm/ukernels/bli_packm_ref_2xk.c index 3c16a94a4..1f031b7b5 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_2xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_2xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_2xk.h b/frame/1m/packm/ukernels/bli_packm_ref_2xk.h index e9b267f7e..ceb3c30e5 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_2xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_2xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_4xk.c b/frame/1m/packm/ukernels/bli_packm_ref_4xk.c index f17add370..2023d12b2 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_4xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_4xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_4xk.h b/frame/1m/packm/ukernels/bli_packm_ref_4xk.h index e39f5a894..0a0b6710f 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_4xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_4xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_6xk.c b/frame/1m/packm/ukernels/bli_packm_ref_6xk.c index 2392fb843..e2b329081 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_6xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_6xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_6xk.h b/frame/1m/packm/ukernels/bli_packm_ref_6xk.h index 1f992ea06..6db4168ec 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_6xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_6xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_8xk.c b/frame/1m/packm/ukernels/bli_packm_ref_8xk.c index d9c999fd1..bc44e22b5 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_8xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_8xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/packm/ukernels/bli_packm_ref_8xk.h b/frame/1m/packm/ukernels/bli_packm_ref_8xk.h index 572d04a0d..d0c62176a 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_8xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_8xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scal2m/bli_scal2m.c b/frame/1m/scal2m/bli_scal2m.c index 43dac068f..3775b3501 100644 --- a/frame/1m/scal2m/bli_scal2m.c +++ b/frame/1m/scal2m/bli_scal2m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scal2m/bli_scal2m.h b/frame/1m/scal2m/bli_scal2m.h index 08f901cd9..00a6aed3b 100644 --- a/frame/1m/scal2m/bli_scal2m.h +++ b/frame/1m/scal2m/bli_scal2m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scal2m/bli_scal2m_check.c b/frame/1m/scal2m/bli_scal2m_check.c index b85c0e385..5abb445fe 100644 --- a/frame/1m/scal2m/bli_scal2m_check.c +++ b/frame/1m/scal2m/bli_scal2m_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scal2m/bli_scal2m_check.h b/frame/1m/scal2m/bli_scal2m_check.h index 55e1024b5..2e8d77e7b 100644 --- a/frame/1m/scal2m/bli_scal2m_check.h +++ b/frame/1m/scal2m/bli_scal2m_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scal2m/bli_scal2m_unb_var1.c b/frame/1m/scal2m/bli_scal2m_unb_var1.c index 330cc8c63..eb4c1720a 100644 --- a/frame/1m/scal2m/bli_scal2m_unb_var1.c +++ b/frame/1m/scal2m/bli_scal2m_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scal2m/bli_scal2m_unb_var1.h b/frame/1m/scal2m/bli_scal2m_unb_var1.h index 1ef683434..a447eb57f 100644 --- a/frame/1m/scal2m/bli_scal2m_unb_var1.h +++ b/frame/1m/scal2m/bli_scal2m_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm.c b/frame/1m/scalm/bli_scalm.c index 0bfdaa3a9..c98db30b6 100644 --- a/frame/1m/scalm/bli_scalm.c +++ b/frame/1m/scalm/bli_scalm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm.h b/frame/1m/scalm/bli_scalm.h index 018d10abe..5a238039a 100644 --- a/frame/1m/scalm/bli_scalm.h +++ b/frame/1m/scalm/bli_scalm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm_check.c b/frame/1m/scalm/bli_scalm_check.c index 1af0d0425..55f597a03 100644 --- a/frame/1m/scalm/bli_scalm_check.c +++ b/frame/1m/scalm/bli_scalm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm_check.h b/frame/1m/scalm/bli_scalm_check.h index 0538cd132..b6cd1863f 100644 --- a/frame/1m/scalm/bli_scalm_check.h +++ b/frame/1m/scalm/bli_scalm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm_cntl.c b/frame/1m/scalm/bli_scalm_cntl.c index 37a86c477..912edd196 100644 --- a/frame/1m/scalm/bli_scalm_cntl.c +++ b/frame/1m/scalm/bli_scalm_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm_cntl.h b/frame/1m/scalm/bli_scalm_cntl.h index 3107b5dce..d7bdab4b1 100644 --- a/frame/1m/scalm/bli_scalm_cntl.h +++ b/frame/1m/scalm/bli_scalm_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm_int.c b/frame/1m/scalm/bli_scalm_int.c index ccfdc1755..7260061d6 100644 --- a/frame/1m/scalm/bli_scalm_int.c +++ b/frame/1m/scalm/bli_scalm_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm_int.h b/frame/1m/scalm/bli_scalm_int.h index 00b007478..d1c69fd02 100644 --- a/frame/1m/scalm/bli_scalm_int.h +++ b/frame/1m/scalm/bli_scalm_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm_unb_var1.c b/frame/1m/scalm/bli_scalm_unb_var1.c index e36dd4226..a3b67b93c 100644 --- a/frame/1m/scalm/bli_scalm_unb_var1.c +++ b/frame/1m/scalm/bli_scalm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/scalm/bli_scalm_unb_var1.h b/frame/1m/scalm/bli_scalm_unb_var1.h index dec00def3..00b1651d8 100644 --- a/frame/1m/scalm/bli_scalm_unb_var1.h +++ b/frame/1m/scalm/bli_scalm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/setm/bli_setm.c b/frame/1m/setm/bli_setm.c index 91dafa147..ed01f480e 100644 --- a/frame/1m/setm/bli_setm.c +++ b/frame/1m/setm/bli_setm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/setm/bli_setm.h b/frame/1m/setm/bli_setm.h index 7f4cdddbd..bd92401ab 100644 --- a/frame/1m/setm/bli_setm.h +++ b/frame/1m/setm/bli_setm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/setm/bli_setm_check.c b/frame/1m/setm/bli_setm_check.c index 5329cadb2..81153f858 100644 --- a/frame/1m/setm/bli_setm_check.c +++ b/frame/1m/setm/bli_setm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/setm/bli_setm_check.h b/frame/1m/setm/bli_setm_check.h index e54d4b60e..f6863827a 100644 --- a/frame/1m/setm/bli_setm_check.h +++ b/frame/1m/setm/bli_setm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/setm/bli_setm_unb_var1.c b/frame/1m/setm/bli_setm_unb_var1.c index 4828ccbef..f063b584e 100644 --- a/frame/1m/setm/bli_setm_unb_var1.c +++ b/frame/1m/setm/bli_setm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/setm/bli_setm_unb_var1.h b/frame/1m/setm/bli_setm_unb_var1.h index 2af532bc4..4db72de44 100644 --- a/frame/1m/setm/bli_setm_unb_var1.h +++ b/frame/1m/setm/bli_setm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/subm/bli_subm.c b/frame/1m/subm/bli_subm.c index 8be1c9b44..2be7caac0 100644 --- a/frame/1m/subm/bli_subm.c +++ b/frame/1m/subm/bli_subm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/subm/bli_subm.h b/frame/1m/subm/bli_subm.h index 71ba0538a..da4ceb179 100644 --- a/frame/1m/subm/bli_subm.h +++ b/frame/1m/subm/bli_subm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/subm/bli_subm_check.c b/frame/1m/subm/bli_subm_check.c index 9e0315616..a22e821bc 100644 --- a/frame/1m/subm/bli_subm_check.c +++ b/frame/1m/subm/bli_subm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/subm/bli_subm_check.h b/frame/1m/subm/bli_subm_check.h index da278d931..0d0167774 100644 --- a/frame/1m/subm/bli_subm_check.h +++ b/frame/1m/subm/bli_subm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/subm/bli_subm_unb_var1.c b/frame/1m/subm/bli_subm_unb_var1.c index b74574b0a..7f7fd363d 100644 --- a/frame/1m/subm/bli_subm_unb_var1.c +++ b/frame/1m/subm/bli_subm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/subm/bli_subm_unb_var1.h b/frame/1m/subm/bli_subm_unb_var1.h index c98809e3e..9c7cad13d 100644 --- a/frame/1m/subm/bli_subm_unb_var1.h +++ b/frame/1m/subm/bli_subm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm.c b/frame/1m/unpackm/bli_unpackm.c index 9df09633d..e3e02532a 100644 --- a/frame/1m/unpackm/bli_unpackm.c +++ b/frame/1m/unpackm/bli_unpackm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm.h b/frame/1m/unpackm/bli_unpackm.h index f26755554..d24cd41b4 100644 --- a/frame/1m/unpackm/bli_unpackm.h +++ b/frame/1m/unpackm/bli_unpackm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_blk_var2.c b/frame/1m/unpackm/bli_unpackm_blk_var2.c index 9e7869ef6..cc7815c98 100644 --- a/frame/1m/unpackm/bli_unpackm_blk_var2.c +++ b/frame/1m/unpackm/bli_unpackm_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_blk_var2.h b/frame/1m/unpackm/bli_unpackm_blk_var2.h index c50144390..fc930ce6b 100644 --- a/frame/1m/unpackm/bli_unpackm_blk_var2.h +++ b/frame/1m/unpackm/bli_unpackm_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_check.c b/frame/1m/unpackm/bli_unpackm_check.c index f0d027d63..748646880 100644 --- a/frame/1m/unpackm/bli_unpackm_check.c +++ b/frame/1m/unpackm/bli_unpackm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_check.h b/frame/1m/unpackm/bli_unpackm_check.h index c3a6e4845..381d6fd33 100644 --- a/frame/1m/unpackm/bli_unpackm_check.h +++ b/frame/1m/unpackm/bli_unpackm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_cntl.c b/frame/1m/unpackm/bli_unpackm_cntl.c index a0e7a4578..e37a96d26 100644 --- a/frame/1m/unpackm/bli_unpackm_cntl.c +++ b/frame/1m/unpackm/bli_unpackm_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_cntl.h b/frame/1m/unpackm/bli_unpackm_cntl.h index f236f7ea9..46530f907 100644 --- a/frame/1m/unpackm/bli_unpackm_cntl.h +++ b/frame/1m/unpackm/bli_unpackm_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_cxk.c b/frame/1m/unpackm/bli_unpackm_cxk.c index 75f562db2..df2ace13c 100644 --- a/frame/1m/unpackm/bli_unpackm_cxk.c +++ b/frame/1m/unpackm/bli_unpackm_cxk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_cxk.h b/frame/1m/unpackm/bli_unpackm_cxk.h index d3d8b1d9b..b94d95ec6 100644 --- a/frame/1m/unpackm/bli_unpackm_cxk.h +++ b/frame/1m/unpackm/bli_unpackm_cxk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_int.c b/frame/1m/unpackm/bli_unpackm_int.c index 70a520403..8bd94a86c 100644 --- a/frame/1m/unpackm/bli_unpackm_int.c +++ b/frame/1m/unpackm/bli_unpackm_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_int.h b/frame/1m/unpackm/bli_unpackm_int.h index 89b8489f6..94a7bb4e1 100644 --- a/frame/1m/unpackm/bli_unpackm_int.h +++ b/frame/1m/unpackm/bli_unpackm_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_unb_var1.c b/frame/1m/unpackm/bli_unpackm_unb_var1.c index 6add782b3..900e2d208 100644 --- a/frame/1m/unpackm/bli_unpackm_unb_var1.c +++ b/frame/1m/unpackm/bli_unpackm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/bli_unpackm_unb_var1.h b/frame/1m/unpackm/bli_unpackm_unb_var1.h index f0e22f12a..e49d56904 100644 --- a/frame/1m/unpackm/bli_unpackm_unb_var1.h +++ b/frame/1m/unpackm/bli_unpackm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/old/bli_unpackm_blk_var1.c b/frame/1m/unpackm/old/bli_unpackm_blk_var1.c index 7828dc728..c0d00b274 100644 --- a/frame/1m/unpackm/old/bli_unpackm_blk_var1.c +++ b/frame/1m/unpackm/old/bli_unpackm_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/old/bli_unpackm_blk_var1.h b/frame/1m/unpackm/old/bli_unpackm_blk_var1.h index 40da47c95..f32974386 100644 --- a/frame/1m/unpackm/old/bli_unpackm_blk_var1.h +++ b/frame/1m/unpackm/old/bli_unpackm_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.c index adca4e86e..715871e59 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.h index ad0ccabfc..f7834cefd 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.c index 174580a94..b5b858165 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.h index 40a5d0d81..848e91bae 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.c index e2ecc63ff..f7d09f205 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.h index 1a1b27a16..003ef0e92 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.c index 153121e80..602e75c34 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.h index 2da2fc948..e61a6d63d 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.c index 849b3b7d5..532a18b41 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.h index f63c512a4..6e8e5577d 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.c index 5895f0c01..fb50b6bde 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.h index 42a5a1f0c..f8640bbad 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.c index c39b9c546..2db608e3e 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.h index f9a79edff..60184af07 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.c index 63a038564..9d3d8c336 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.h index 983697fe2..678ac2d46 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv.c b/frame/2/gemv/bli_gemv.c index d932610ad..4faa65571 100644 --- a/frame/2/gemv/bli_gemv.c +++ b/frame/2/gemv/bli_gemv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv.h b/frame/2/gemv/bli_gemv.h index f0d56c3e8..e67cb3926 100644 --- a/frame/2/gemv/bli_gemv.h +++ b/frame/2/gemv/bli_gemv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_blk_var1.c b/frame/2/gemv/bli_gemv_blk_var1.c index 4f95118c2..5c7c72706 100644 --- a/frame/2/gemv/bli_gemv_blk_var1.c +++ b/frame/2/gemv/bli_gemv_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_blk_var1.h b/frame/2/gemv/bli_gemv_blk_var1.h index 64edfe420..641cd04b9 100644 --- a/frame/2/gemv/bli_gemv_blk_var1.h +++ b/frame/2/gemv/bli_gemv_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_blk_var2.c b/frame/2/gemv/bli_gemv_blk_var2.c index 4d6fdba0d..a920aaeec 100644 --- a/frame/2/gemv/bli_gemv_blk_var2.c +++ b/frame/2/gemv/bli_gemv_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_blk_var2.h b/frame/2/gemv/bli_gemv_blk_var2.h index 9f99b3e1b..88bce1a57 100644 --- a/frame/2/gemv/bli_gemv_blk_var2.h +++ b/frame/2/gemv/bli_gemv_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_check.c b/frame/2/gemv/bli_gemv_check.c index 9bef1cd73..bcbe9ea0a 100644 --- a/frame/2/gemv/bli_gemv_check.c +++ b/frame/2/gemv/bli_gemv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_check.h b/frame/2/gemv/bli_gemv_check.h index f0e441a67..7ccdc78a3 100644 --- a/frame/2/gemv/bli_gemv_check.h +++ b/frame/2/gemv/bli_gemv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_cntl.c b/frame/2/gemv/bli_gemv_cntl.c index 200e8376c..926cba1a4 100644 --- a/frame/2/gemv/bli_gemv_cntl.c +++ b/frame/2/gemv/bli_gemv_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_cntl.h b/frame/2/gemv/bli_gemv_cntl.h index dbf3e3eb5..1d5faf430 100644 --- a/frame/2/gemv/bli_gemv_cntl.h +++ b/frame/2/gemv/bli_gemv_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_int.c b/frame/2/gemv/bli_gemv_int.c index 16b5515a6..335d240cc 100644 --- a/frame/2/gemv/bli_gemv_int.c +++ b/frame/2/gemv/bli_gemv_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_int.h b/frame/2/gemv/bli_gemv_int.h index 01180dbfc..2570b4eb8 100644 --- a/frame/2/gemv/bli_gemv_int.h +++ b/frame/2/gemv/bli_gemv_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_unb_var1.c b/frame/2/gemv/bli_gemv_unb_var1.c index 8932b2598..978b89b8f 100644 --- a/frame/2/gemv/bli_gemv_unb_var1.c +++ b/frame/2/gemv/bli_gemv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_unb_var1.h b/frame/2/gemv/bli_gemv_unb_var1.h index e4fac67b7..7e5ac4a50 100644 --- a/frame/2/gemv/bli_gemv_unb_var1.h +++ b/frame/2/gemv/bli_gemv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_unb_var2.c b/frame/2/gemv/bli_gemv_unb_var2.c index fe7a50aaf..30ed22caa 100644 --- a/frame/2/gemv/bli_gemv_unb_var2.c +++ b/frame/2/gemv/bli_gemv_unb_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_unb_var2.h b/frame/2/gemv/bli_gemv_unb_var2.h index 22766bcd5..021ff8956 100644 --- a/frame/2/gemv/bli_gemv_unb_var2.h +++ b/frame/2/gemv/bli_gemv_unb_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_unf_var1.c b/frame/2/gemv/bli_gemv_unf_var1.c index 6fad19f0b..3deefba49 100644 --- a/frame/2/gemv/bli_gemv_unf_var1.c +++ b/frame/2/gemv/bli_gemv_unf_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_unf_var1.h b/frame/2/gemv/bli_gemv_unf_var1.h index 828c6c4d7..452facf44 100644 --- a/frame/2/gemv/bli_gemv_unf_var1.h +++ b/frame/2/gemv/bli_gemv_unf_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_unf_var2.c b/frame/2/gemv/bli_gemv_unf_var2.c index 2e85a92de..f21305533 100644 --- a/frame/2/gemv/bli_gemv_unf_var2.c +++ b/frame/2/gemv/bli_gemv_unf_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/gemv/bli_gemv_unf_var2.h b/frame/2/gemv/bli_gemv_unf_var2.h index a6c3512fa..ad04963c8 100644 --- a/frame/2/gemv/bli_gemv_unf_var2.h +++ b/frame/2/gemv/bli_gemv_unf_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger.c b/frame/2/ger/bli_ger.c index 02b2e27e5..93eca6946 100644 --- a/frame/2/ger/bli_ger.c +++ b/frame/2/ger/bli_ger.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger.h b/frame/2/ger/bli_ger.h index 911e78177..0d48a64ce 100644 --- a/frame/2/ger/bli_ger.h +++ b/frame/2/ger/bli_ger.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_blk_var1.c b/frame/2/ger/bli_ger_blk_var1.c index 77b6ace11..bef76b200 100644 --- a/frame/2/ger/bli_ger_blk_var1.c +++ b/frame/2/ger/bli_ger_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_blk_var1.h b/frame/2/ger/bli_ger_blk_var1.h index aa33d5fc0..d9758c7f6 100644 --- a/frame/2/ger/bli_ger_blk_var1.h +++ b/frame/2/ger/bli_ger_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_blk_var2.c b/frame/2/ger/bli_ger_blk_var2.c index 6405497aa..08fca6a63 100644 --- a/frame/2/ger/bli_ger_blk_var2.c +++ b/frame/2/ger/bli_ger_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_blk_var2.h b/frame/2/ger/bli_ger_blk_var2.h index f43bce1f2..f0a8b73e5 100644 --- a/frame/2/ger/bli_ger_blk_var2.h +++ b/frame/2/ger/bli_ger_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_check.c b/frame/2/ger/bli_ger_check.c index 70694df5d..d2dc4004d 100644 --- a/frame/2/ger/bli_ger_check.c +++ b/frame/2/ger/bli_ger_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_check.h b/frame/2/ger/bli_ger_check.h index 568b0962e..cbc6e0677 100644 --- a/frame/2/ger/bli_ger_check.h +++ b/frame/2/ger/bli_ger_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_cntl.c b/frame/2/ger/bli_ger_cntl.c index 706f1784c..3b5cc9c55 100644 --- a/frame/2/ger/bli_ger_cntl.c +++ b/frame/2/ger/bli_ger_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_cntl.h b/frame/2/ger/bli_ger_cntl.h index 3d558c659..99aaea74a 100644 --- a/frame/2/ger/bli_ger_cntl.h +++ b/frame/2/ger/bli_ger_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_int.c b/frame/2/ger/bli_ger_int.c index ebbed2b2f..1c734ef16 100644 --- a/frame/2/ger/bli_ger_int.c +++ b/frame/2/ger/bli_ger_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_int.h b/frame/2/ger/bli_ger_int.h index cea6c3b77..9bd39fa94 100644 --- a/frame/2/ger/bli_ger_int.h +++ b/frame/2/ger/bli_ger_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_unb_var1.c b/frame/2/ger/bli_ger_unb_var1.c index 65e0f523d..f02abe9be 100644 --- a/frame/2/ger/bli_ger_unb_var1.c +++ b/frame/2/ger/bli_ger_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_unb_var1.h b/frame/2/ger/bli_ger_unb_var1.h index ddd747eac..f0eea8291 100644 --- a/frame/2/ger/bli_ger_unb_var1.h +++ b/frame/2/ger/bli_ger_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_unb_var2.c b/frame/2/ger/bli_ger_unb_var2.c index 526131f95..3b5592eeb 100644 --- a/frame/2/ger/bli_ger_unb_var2.c +++ b/frame/2/ger/bli_ger_unb_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/ger/bli_ger_unb_var2.h b/frame/2/ger/bli_ger_unb_var2.h index 3c2afd4ba..362537d45 100644 --- a/frame/2/ger/bli_ger_unb_var2.h +++ b/frame/2/ger/bli_ger_unb_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv.c b/frame/2/hemv/bli_hemv.c index a20453072..d6f09f888 100644 --- a/frame/2/hemv/bli_hemv.c +++ b/frame/2/hemv/bli_hemv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv.h b/frame/2/hemv/bli_hemv.h index f99291cef..12bb67c92 100644 --- a/frame/2/hemv/bli_hemv.h +++ b/frame/2/hemv/bli_hemv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_blk_var1.c b/frame/2/hemv/bli_hemv_blk_var1.c index 5beb1be75..f9ff178db 100644 --- a/frame/2/hemv/bli_hemv_blk_var1.c +++ b/frame/2/hemv/bli_hemv_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_blk_var1.h b/frame/2/hemv/bli_hemv_blk_var1.h index a3514cdd1..79276c548 100644 --- a/frame/2/hemv/bli_hemv_blk_var1.h +++ b/frame/2/hemv/bli_hemv_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_blk_var2.c b/frame/2/hemv/bli_hemv_blk_var2.c index 371f53d82..e5b30ebb0 100644 --- a/frame/2/hemv/bli_hemv_blk_var2.c +++ b/frame/2/hemv/bli_hemv_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_blk_var2.h b/frame/2/hemv/bli_hemv_blk_var2.h index b7cc4e3f2..06cfb9c4e 100644 --- a/frame/2/hemv/bli_hemv_blk_var2.h +++ b/frame/2/hemv/bli_hemv_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_blk_var3.c b/frame/2/hemv/bli_hemv_blk_var3.c index 072706300..c5b334cb5 100644 --- a/frame/2/hemv/bli_hemv_blk_var3.c +++ b/frame/2/hemv/bli_hemv_blk_var3.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_blk_var3.h b/frame/2/hemv/bli_hemv_blk_var3.h index 4b8cc88c5..cc91195c8 100644 --- a/frame/2/hemv/bli_hemv_blk_var3.h +++ b/frame/2/hemv/bli_hemv_blk_var3.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_blk_var4.c b/frame/2/hemv/bli_hemv_blk_var4.c index d4fc17324..9abd6c773 100644 --- a/frame/2/hemv/bli_hemv_blk_var4.c +++ b/frame/2/hemv/bli_hemv_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_blk_var4.h b/frame/2/hemv/bli_hemv_blk_var4.h index db86f4c24..0b3870374 100644 --- a/frame/2/hemv/bli_hemv_blk_var4.h +++ b/frame/2/hemv/bli_hemv_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_check.c b/frame/2/hemv/bli_hemv_check.c index 72c686a22..c6b898640 100644 --- a/frame/2/hemv/bli_hemv_check.c +++ b/frame/2/hemv/bli_hemv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_check.h b/frame/2/hemv/bli_hemv_check.h index 2a8223845..60c8b165c 100644 --- a/frame/2/hemv/bli_hemv_check.h +++ b/frame/2/hemv/bli_hemv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_cntl.c b/frame/2/hemv/bli_hemv_cntl.c index 4a825d9da..5292bfae5 100644 --- a/frame/2/hemv/bli_hemv_cntl.c +++ b/frame/2/hemv/bli_hemv_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_cntl.h b/frame/2/hemv/bli_hemv_cntl.h index 48ca400c9..8930edd47 100644 --- a/frame/2/hemv/bli_hemv_cntl.h +++ b/frame/2/hemv/bli_hemv_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_int.c b/frame/2/hemv/bli_hemv_int.c index 3eea28a85..85c5ce800 100644 --- a/frame/2/hemv/bli_hemv_int.c +++ b/frame/2/hemv/bli_hemv_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_int.h b/frame/2/hemv/bli_hemv_int.h index 7e6f58c2a..b20590926 100644 --- a/frame/2/hemv/bli_hemv_int.h +++ b/frame/2/hemv/bli_hemv_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unb_var1.c b/frame/2/hemv/bli_hemv_unb_var1.c index 61e8a7ee1..d8fc94488 100644 --- a/frame/2/hemv/bli_hemv_unb_var1.c +++ b/frame/2/hemv/bli_hemv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unb_var1.h b/frame/2/hemv/bli_hemv_unb_var1.h index d36cdb870..4113fe8a9 100644 --- a/frame/2/hemv/bli_hemv_unb_var1.h +++ b/frame/2/hemv/bli_hemv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unb_var2.c b/frame/2/hemv/bli_hemv_unb_var2.c index 174c28ad1..97f077df8 100644 --- a/frame/2/hemv/bli_hemv_unb_var2.c +++ b/frame/2/hemv/bli_hemv_unb_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unb_var2.h b/frame/2/hemv/bli_hemv_unb_var2.h index 973bed08a..a441d4a8c 100644 --- a/frame/2/hemv/bli_hemv_unb_var2.h +++ b/frame/2/hemv/bli_hemv_unb_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unb_var3.c b/frame/2/hemv/bli_hemv_unb_var3.c index a66fa0afb..b538e9ba9 100644 --- a/frame/2/hemv/bli_hemv_unb_var3.c +++ b/frame/2/hemv/bli_hemv_unb_var3.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unb_var3.h b/frame/2/hemv/bli_hemv_unb_var3.h index 18576408b..282736204 100644 --- a/frame/2/hemv/bli_hemv_unb_var3.h +++ b/frame/2/hemv/bli_hemv_unb_var3.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unb_var4.c b/frame/2/hemv/bli_hemv_unb_var4.c index 0d7c8b27d..55739fb63 100644 --- a/frame/2/hemv/bli_hemv_unb_var4.c +++ b/frame/2/hemv/bli_hemv_unb_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unb_var4.h b/frame/2/hemv/bli_hemv_unb_var4.h index ae9dbd448..5b31b848c 100644 --- a/frame/2/hemv/bli_hemv_unb_var4.h +++ b/frame/2/hemv/bli_hemv_unb_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unf_var1.c b/frame/2/hemv/bli_hemv_unf_var1.c index 4a88f3da7..c770949a5 100644 --- a/frame/2/hemv/bli_hemv_unf_var1.c +++ b/frame/2/hemv/bli_hemv_unf_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unf_var1.h b/frame/2/hemv/bli_hemv_unf_var1.h index 9b90c47af..fe40a43b1 100644 --- a/frame/2/hemv/bli_hemv_unf_var1.h +++ b/frame/2/hemv/bli_hemv_unf_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unf_var1a.c b/frame/2/hemv/bli_hemv_unf_var1a.c index c1772614f..7814546bf 100644 --- a/frame/2/hemv/bli_hemv_unf_var1a.c +++ b/frame/2/hemv/bli_hemv_unf_var1a.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unf_var1a.h b/frame/2/hemv/bli_hemv_unf_var1a.h index 8cfe24248..a6d0a7c93 100644 --- a/frame/2/hemv/bli_hemv_unf_var1a.h +++ b/frame/2/hemv/bli_hemv_unf_var1a.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unf_var3.c b/frame/2/hemv/bli_hemv_unf_var3.c index 2b64529ca..7a6e9f6bf 100644 --- a/frame/2/hemv/bli_hemv_unf_var3.c +++ b/frame/2/hemv/bli_hemv_unf_var3.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unf_var3.h b/frame/2/hemv/bli_hemv_unf_var3.h index 1b5782f7c..b9120e00c 100644 --- a/frame/2/hemv/bli_hemv_unf_var3.h +++ b/frame/2/hemv/bli_hemv_unf_var3.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unf_var3a.c b/frame/2/hemv/bli_hemv_unf_var3a.c index b816f2e8c..a7c71489e 100644 --- a/frame/2/hemv/bli_hemv_unf_var3a.c +++ b/frame/2/hemv/bli_hemv_unf_var3a.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/hemv/bli_hemv_unf_var3a.h b/frame/2/hemv/bli_hemv_unf_var3a.h index 21b8f2ea1..eabeee52d 100644 --- a/frame/2/hemv/bli_hemv_unf_var3a.h +++ b/frame/2/hemv/bli_hemv_unf_var3a.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her.c b/frame/2/her/bli_her.c index 640e96eb5..abf7ea60e 100644 --- a/frame/2/her/bli_her.c +++ b/frame/2/her/bli_her.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her.h b/frame/2/her/bli_her.h index 2f6b3c6ec..d65516f27 100644 --- a/frame/2/her/bli_her.h +++ b/frame/2/her/bli_her.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_blk_var1.c b/frame/2/her/bli_her_blk_var1.c index 45fc9c1d4..95f7386d5 100644 --- a/frame/2/her/bli_her_blk_var1.c +++ b/frame/2/her/bli_her_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_blk_var1.h b/frame/2/her/bli_her_blk_var1.h index 789c2fa68..a61c1adc3 100644 --- a/frame/2/her/bli_her_blk_var1.h +++ b/frame/2/her/bli_her_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_blk_var2.c b/frame/2/her/bli_her_blk_var2.c index a856269b0..97ffe5db3 100644 --- a/frame/2/her/bli_her_blk_var2.c +++ b/frame/2/her/bli_her_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_blk_var2.h b/frame/2/her/bli_her_blk_var2.h index e4d37146a..f91af34b6 100644 --- a/frame/2/her/bli_her_blk_var2.h +++ b/frame/2/her/bli_her_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_check.c b/frame/2/her/bli_her_check.c index a85bb35de..8d6f62fd7 100644 --- a/frame/2/her/bli_her_check.c +++ b/frame/2/her/bli_her_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_check.h b/frame/2/her/bli_her_check.h index c03795e1e..a4f05d0de 100644 --- a/frame/2/her/bli_her_check.h +++ b/frame/2/her/bli_her_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_cntl.c b/frame/2/her/bli_her_cntl.c index 1977a1610..3f9c115f5 100644 --- a/frame/2/her/bli_her_cntl.c +++ b/frame/2/her/bli_her_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_cntl.h b/frame/2/her/bli_her_cntl.h index 693948dfa..3fb52bc61 100644 --- a/frame/2/her/bli_her_cntl.h +++ b/frame/2/her/bli_her_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_int.c b/frame/2/her/bli_her_int.c index 6f13dd64a..e37f81f84 100644 --- a/frame/2/her/bli_her_int.c +++ b/frame/2/her/bli_her_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_int.h b/frame/2/her/bli_her_int.h index 8ce735646..b4e5ea62e 100644 --- a/frame/2/her/bli_her_int.h +++ b/frame/2/her/bli_her_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_unb_var1.c b/frame/2/her/bli_her_unb_var1.c index a03f531a5..c6eefe163 100644 --- a/frame/2/her/bli_her_unb_var1.c +++ b/frame/2/her/bli_her_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_unb_var1.h b/frame/2/her/bli_her_unb_var1.h index 3c6be532d..f80a48044 100644 --- a/frame/2/her/bli_her_unb_var1.h +++ b/frame/2/her/bli_her_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_unb_var2.c b/frame/2/her/bli_her_unb_var2.c index 3ca63e6b4..97e6e3a25 100644 --- a/frame/2/her/bli_her_unb_var2.c +++ b/frame/2/her/bli_her_unb_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her/bli_her_unb_var2.h b/frame/2/her/bli_her_unb_var2.h index 6ca9951b4..ac4b8a206 100644 --- a/frame/2/her/bli_her_unb_var2.h +++ b/frame/2/her/bli_her_unb_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2.c b/frame/2/her2/bli_her2.c index f8455bfc7..594f1f869 100644 --- a/frame/2/her2/bli_her2.c +++ b/frame/2/her2/bli_her2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2.h b/frame/2/her2/bli_her2.h index b1e029535..1e41122f7 100644 --- a/frame/2/her2/bli_her2.h +++ b/frame/2/her2/bli_her2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_blk_var1.c b/frame/2/her2/bli_her2_blk_var1.c index af15b674f..fd05b1569 100644 --- a/frame/2/her2/bli_her2_blk_var1.c +++ b/frame/2/her2/bli_her2_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_blk_var1.h b/frame/2/her2/bli_her2_blk_var1.h index 42616edf5..3e31eb90e 100644 --- a/frame/2/her2/bli_her2_blk_var1.h +++ b/frame/2/her2/bli_her2_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_blk_var2.c b/frame/2/her2/bli_her2_blk_var2.c index d57da2bff..25a3aa6f6 100644 --- a/frame/2/her2/bli_her2_blk_var2.c +++ b/frame/2/her2/bli_her2_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_blk_var2.h b/frame/2/her2/bli_her2_blk_var2.h index 1a92acafb..21446d4a9 100644 --- a/frame/2/her2/bli_her2_blk_var2.h +++ b/frame/2/her2/bli_her2_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_blk_var3.c b/frame/2/her2/bli_her2_blk_var3.c index 8270f8dff..21463759a 100644 --- a/frame/2/her2/bli_her2_blk_var3.c +++ b/frame/2/her2/bli_her2_blk_var3.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_blk_var3.h b/frame/2/her2/bli_her2_blk_var3.h index 826321b4e..75e951524 100644 --- a/frame/2/her2/bli_her2_blk_var3.h +++ b/frame/2/her2/bli_her2_blk_var3.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_blk_var4.c b/frame/2/her2/bli_her2_blk_var4.c index 77b750230..cd9d1bcf3 100644 --- a/frame/2/her2/bli_her2_blk_var4.c +++ b/frame/2/her2/bli_her2_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_blk_var4.h b/frame/2/her2/bli_her2_blk_var4.h index e225e0fcb..c3693b352 100644 --- a/frame/2/her2/bli_her2_blk_var4.h +++ b/frame/2/her2/bli_her2_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_check.c b/frame/2/her2/bli_her2_check.c index fd448fcf4..d4df1b27f 100644 --- a/frame/2/her2/bli_her2_check.c +++ b/frame/2/her2/bli_her2_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_check.h b/frame/2/her2/bli_her2_check.h index ae3cc72e7..05697bfb0 100644 --- a/frame/2/her2/bli_her2_check.h +++ b/frame/2/her2/bli_her2_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_cntl.c b/frame/2/her2/bli_her2_cntl.c index 797075f5b..cf964a663 100644 --- a/frame/2/her2/bli_her2_cntl.c +++ b/frame/2/her2/bli_her2_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_cntl.h b/frame/2/her2/bli_her2_cntl.h index e15f9fbe0..70e605397 100644 --- a/frame/2/her2/bli_her2_cntl.h +++ b/frame/2/her2/bli_her2_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_int.c b/frame/2/her2/bli_her2_int.c index efb5dc1ab..70e7c6f2d 100644 --- a/frame/2/her2/bli_her2_int.c +++ b/frame/2/her2/bli_her2_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_int.h b/frame/2/her2/bli_her2_int.h index 0fae6b270..107a2d61e 100644 --- a/frame/2/her2/bli_her2_int.h +++ b/frame/2/her2/bli_her2_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unb_var1.c b/frame/2/her2/bli_her2_unb_var1.c index 0bb02c6eb..510e671b4 100644 --- a/frame/2/her2/bli_her2_unb_var1.c +++ b/frame/2/her2/bli_her2_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unb_var1.h b/frame/2/her2/bli_her2_unb_var1.h index 83b693765..a731cc576 100644 --- a/frame/2/her2/bli_her2_unb_var1.h +++ b/frame/2/her2/bli_her2_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unb_var2.c b/frame/2/her2/bli_her2_unb_var2.c index cd7796f9b..3d1b3432b 100644 --- a/frame/2/her2/bli_her2_unb_var2.c +++ b/frame/2/her2/bli_her2_unb_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unb_var2.h b/frame/2/her2/bli_her2_unb_var2.h index d5ebf7f14..1c4352f32 100644 --- a/frame/2/her2/bli_her2_unb_var2.h +++ b/frame/2/her2/bli_her2_unb_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unb_var3.c b/frame/2/her2/bli_her2_unb_var3.c index a8145238c..df831178b 100644 --- a/frame/2/her2/bli_her2_unb_var3.c +++ b/frame/2/her2/bli_her2_unb_var3.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unb_var3.h b/frame/2/her2/bli_her2_unb_var3.h index 4c4263f9d..7dcf2fa36 100644 --- a/frame/2/her2/bli_her2_unb_var3.h +++ b/frame/2/her2/bli_her2_unb_var3.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unb_var4.c b/frame/2/her2/bli_her2_unb_var4.c index 6332c61a0..6393ac7a2 100644 --- a/frame/2/her2/bli_her2_unb_var4.c +++ b/frame/2/her2/bli_her2_unb_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unb_var4.h b/frame/2/her2/bli_her2_unb_var4.h index 6783088ef..3c3c9c330 100644 --- a/frame/2/her2/bli_her2_unb_var4.h +++ b/frame/2/her2/bli_her2_unb_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unf_var1.c b/frame/2/her2/bli_her2_unf_var1.c index d26d72ebb..883bb4964 100644 --- a/frame/2/her2/bli_her2_unf_var1.c +++ b/frame/2/her2/bli_her2_unf_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unf_var1.h b/frame/2/her2/bli_her2_unf_var1.h index c0fce9521..cb27a53d7 100644 --- a/frame/2/her2/bli_her2_unf_var1.h +++ b/frame/2/her2/bli_her2_unf_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unf_var4.c b/frame/2/her2/bli_her2_unf_var4.c index b87345eb0..50580793e 100644 --- a/frame/2/her2/bli_her2_unf_var4.c +++ b/frame/2/her2/bli_her2_unf_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/her2/bli_her2_unf_var4.h b/frame/2/her2/bli_her2_unf_var4.h index 4fbd7e835..7ed3307b1 100644 --- a/frame/2/her2/bli_her2_unf_var4.h +++ b/frame/2/her2/bli_her2_unf_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/symv/bli_symv.c b/frame/2/symv/bli_symv.c index 873fa41f8..13a461d44 100644 --- a/frame/2/symv/bli_symv.c +++ b/frame/2/symv/bli_symv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/symv/bli_symv.h b/frame/2/symv/bli_symv.h index da896001c..4313a625b 100644 --- a/frame/2/symv/bli_symv.h +++ b/frame/2/symv/bli_symv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/symv/bli_symv_check.c b/frame/2/symv/bli_symv_check.c index 88239a431..c4f948b28 100644 --- a/frame/2/symv/bli_symv_check.c +++ b/frame/2/symv/bli_symv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/symv/bli_symv_check.h b/frame/2/symv/bli_symv_check.h index 73f0d71c3..0915e73e9 100644 --- a/frame/2/symv/bli_symv_check.h +++ b/frame/2/symv/bli_symv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/syr/bli_syr.c b/frame/2/syr/bli_syr.c index 454db0466..d575e282f 100644 --- a/frame/2/syr/bli_syr.c +++ b/frame/2/syr/bli_syr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/syr/bli_syr.h b/frame/2/syr/bli_syr.h index 8bac095bb..1373a1fb6 100644 --- a/frame/2/syr/bli_syr.h +++ b/frame/2/syr/bli_syr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/syr/bli_syr_check.c b/frame/2/syr/bli_syr_check.c index 9be03b69b..197d4c9b6 100644 --- a/frame/2/syr/bli_syr_check.c +++ b/frame/2/syr/bli_syr_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/syr/bli_syr_check.h b/frame/2/syr/bli_syr_check.h index f2f731183..f8704780c 100644 --- a/frame/2/syr/bli_syr_check.h +++ b/frame/2/syr/bli_syr_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/syr2/bli_syr2.c b/frame/2/syr2/bli_syr2.c index 4a053e360..07c71be8e 100644 --- a/frame/2/syr2/bli_syr2.c +++ b/frame/2/syr2/bli_syr2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/syr2/bli_syr2.h b/frame/2/syr2/bli_syr2.h index f450254ca..50185fbc0 100644 --- a/frame/2/syr2/bli_syr2.h +++ b/frame/2/syr2/bli_syr2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/syr2/bli_syr2_check.c b/frame/2/syr2/bli_syr2_check.c index 2e0810876..a49ffbe17 100644 --- a/frame/2/syr2/bli_syr2_check.c +++ b/frame/2/syr2/bli_syr2_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/syr2/bli_syr2_check.h b/frame/2/syr2/bli_syr2_check.h index e8c28faee..f04d19af3 100644 --- a/frame/2/syr2/bli_syr2_check.h +++ b/frame/2/syr2/bli_syr2_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv.c b/frame/2/trmv/bli_trmv.c index 65742c8bb..e851d06bc 100644 --- a/frame/2/trmv/bli_trmv.c +++ b/frame/2/trmv/bli_trmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv.h b/frame/2/trmv/bli_trmv.h index 774ce1ec4..c6d96fb92 100644 --- a/frame/2/trmv/bli_trmv.h +++ b/frame/2/trmv/bli_trmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_check.c b/frame/2/trmv/bli_trmv_check.c index 7f3a6d8d8..acd9a218d 100644 --- a/frame/2/trmv/bli_trmv_check.c +++ b/frame/2/trmv/bli_trmv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_check.h b/frame/2/trmv/bli_trmv_check.h index 7828e5553..ba733f32f 100644 --- a/frame/2/trmv/bli_trmv_check.h +++ b/frame/2/trmv/bli_trmv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_cntl.c b/frame/2/trmv/bli_trmv_cntl.c index 555c62e90..4cbf76eb9 100644 --- a/frame/2/trmv/bli_trmv_cntl.c +++ b/frame/2/trmv/bli_trmv_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_cntl.h b/frame/2/trmv/bli_trmv_cntl.h index b5c891e2d..aa7c56fa2 100644 --- a/frame/2/trmv/bli_trmv_cntl.h +++ b/frame/2/trmv/bli_trmv_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_int.c b/frame/2/trmv/bli_trmv_int.c index 11ff3deed..00729c096 100644 --- a/frame/2/trmv/bli_trmv_int.c +++ b/frame/2/trmv/bli_trmv_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_int.h b/frame/2/trmv/bli_trmv_int.h index 156b1894b..6cd5394b3 100644 --- a/frame/2/trmv/bli_trmv_int.h +++ b/frame/2/trmv/bli_trmv_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_l_blk_var1.c b/frame/2/trmv/bli_trmv_l_blk_var1.c index 5550e9ee9..5a5982ca7 100644 --- a/frame/2/trmv/bli_trmv_l_blk_var1.c +++ b/frame/2/trmv/bli_trmv_l_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_l_blk_var1.h b/frame/2/trmv/bli_trmv_l_blk_var1.h index f7e4372d2..c62032d75 100644 --- a/frame/2/trmv/bli_trmv_l_blk_var1.h +++ b/frame/2/trmv/bli_trmv_l_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_l_blk_var2.c b/frame/2/trmv/bli_trmv_l_blk_var2.c index 1db28eb11..b83f2f98a 100644 --- a/frame/2/trmv/bli_trmv_l_blk_var2.c +++ b/frame/2/trmv/bli_trmv_l_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_l_blk_var2.h b/frame/2/trmv/bli_trmv_l_blk_var2.h index 9dd3b2caa..cb8b7d4f7 100644 --- a/frame/2/trmv/bli_trmv_l_blk_var2.h +++ b/frame/2/trmv/bli_trmv_l_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_u_blk_var1.c b/frame/2/trmv/bli_trmv_u_blk_var1.c index 1e82157af..079230376 100644 --- a/frame/2/trmv/bli_trmv_u_blk_var1.c +++ b/frame/2/trmv/bli_trmv_u_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_u_blk_var1.h b/frame/2/trmv/bli_trmv_u_blk_var1.h index 8104aff44..5929663e9 100644 --- a/frame/2/trmv/bli_trmv_u_blk_var1.h +++ b/frame/2/trmv/bli_trmv_u_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_u_blk_var2.c b/frame/2/trmv/bli_trmv_u_blk_var2.c index 0c9ea6d0b..fb50e833f 100644 --- a/frame/2/trmv/bli_trmv_u_blk_var2.c +++ b/frame/2/trmv/bli_trmv_u_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_u_blk_var2.h b/frame/2/trmv/bli_trmv_u_blk_var2.h index b371d5dbc..5864d74fc 100644 --- a/frame/2/trmv/bli_trmv_u_blk_var2.h +++ b/frame/2/trmv/bli_trmv_u_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_unb_var1.c b/frame/2/trmv/bli_trmv_unb_var1.c index c14410822..1035527cf 100644 --- a/frame/2/trmv/bli_trmv_unb_var1.c +++ b/frame/2/trmv/bli_trmv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_unb_var1.h b/frame/2/trmv/bli_trmv_unb_var1.h index b60afe11d..c112c9f9f 100644 --- a/frame/2/trmv/bli_trmv_unb_var1.h +++ b/frame/2/trmv/bli_trmv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_unb_var2.c b/frame/2/trmv/bli_trmv_unb_var2.c index 53b4d63fa..80418307f 100644 --- a/frame/2/trmv/bli_trmv_unb_var2.c +++ b/frame/2/trmv/bli_trmv_unb_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_unb_var2.h b/frame/2/trmv/bli_trmv_unb_var2.h index aaacbecbc..41f16d4c7 100644 --- a/frame/2/trmv/bli_trmv_unb_var2.h +++ b/frame/2/trmv/bli_trmv_unb_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_unf_var1.c b/frame/2/trmv/bli_trmv_unf_var1.c index 04b0f85ba..9e53f256c 100644 --- a/frame/2/trmv/bli_trmv_unf_var1.c +++ b/frame/2/trmv/bli_trmv_unf_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_unf_var1.h b/frame/2/trmv/bli_trmv_unf_var1.h index 2ba64c57a..122bbb5ad 100644 --- a/frame/2/trmv/bli_trmv_unf_var1.h +++ b/frame/2/trmv/bli_trmv_unf_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_unf_var2.c b/frame/2/trmv/bli_trmv_unf_var2.c index 099e85f8b..2d164df7f 100644 --- a/frame/2/trmv/bli_trmv_unf_var2.c +++ b/frame/2/trmv/bli_trmv_unf_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trmv/bli_trmv_unf_var2.h b/frame/2/trmv/bli_trmv_unf_var2.h index ae5b33c25..f0ddd32d5 100644 --- a/frame/2/trmv/bli_trmv_unf_var2.h +++ b/frame/2/trmv/bli_trmv_unf_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv.c b/frame/2/trsv/bli_trsv.c index e6d0ec66b..04b03687e 100644 --- a/frame/2/trsv/bli_trsv.c +++ b/frame/2/trsv/bli_trsv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv.h b/frame/2/trsv/bli_trsv.h index 9650b59d4..6c1bbc650 100644 --- a/frame/2/trsv/bli_trsv.h +++ b/frame/2/trsv/bli_trsv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_check.c b/frame/2/trsv/bli_trsv_check.c index 81d25bc4e..b821a8917 100644 --- a/frame/2/trsv/bli_trsv_check.c +++ b/frame/2/trsv/bli_trsv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_check.h b/frame/2/trsv/bli_trsv_check.h index 7acce15ea..b943533a6 100644 --- a/frame/2/trsv/bli_trsv_check.h +++ b/frame/2/trsv/bli_trsv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_cntl.c b/frame/2/trsv/bli_trsv_cntl.c index 46deca6c9..0c5eec394 100644 --- a/frame/2/trsv/bli_trsv_cntl.c +++ b/frame/2/trsv/bli_trsv_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_cntl.h b/frame/2/trsv/bli_trsv_cntl.h index 1a611ecd3..a7b73bad2 100644 --- a/frame/2/trsv/bli_trsv_cntl.h +++ b/frame/2/trsv/bli_trsv_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_int.c b/frame/2/trsv/bli_trsv_int.c index e4a0e216a..d029be792 100644 --- a/frame/2/trsv/bli_trsv_int.c +++ b/frame/2/trsv/bli_trsv_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_int.h b/frame/2/trsv/bli_trsv_int.h index 2d7311016..b442c47b8 100644 --- a/frame/2/trsv/bli_trsv_int.h +++ b/frame/2/trsv/bli_trsv_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_l_blk_var1.c b/frame/2/trsv/bli_trsv_l_blk_var1.c index b7b7e382a..0a33b977e 100644 --- a/frame/2/trsv/bli_trsv_l_blk_var1.c +++ b/frame/2/trsv/bli_trsv_l_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_l_blk_var1.h b/frame/2/trsv/bli_trsv_l_blk_var1.h index 0b737b0bb..59781f09e 100644 --- a/frame/2/trsv/bli_trsv_l_blk_var1.h +++ b/frame/2/trsv/bli_trsv_l_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_l_blk_var2.c b/frame/2/trsv/bli_trsv_l_blk_var2.c index 5e2718cb2..560020e86 100644 --- a/frame/2/trsv/bli_trsv_l_blk_var2.c +++ b/frame/2/trsv/bli_trsv_l_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_l_blk_var2.h b/frame/2/trsv/bli_trsv_l_blk_var2.h index 737f19e1d..2691e459b 100644 --- a/frame/2/trsv/bli_trsv_l_blk_var2.h +++ b/frame/2/trsv/bli_trsv_l_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_u_blk_var1.c b/frame/2/trsv/bli_trsv_u_blk_var1.c index 6f6c55558..dfdc70bf8 100644 --- a/frame/2/trsv/bli_trsv_u_blk_var1.c +++ b/frame/2/trsv/bli_trsv_u_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_u_blk_var1.h b/frame/2/trsv/bli_trsv_u_blk_var1.h index d620537a3..6d2ff3011 100644 --- a/frame/2/trsv/bli_trsv_u_blk_var1.h +++ b/frame/2/trsv/bli_trsv_u_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_u_blk_var2.c b/frame/2/trsv/bli_trsv_u_blk_var2.c index 7611e53dc..710f1017c 100644 --- a/frame/2/trsv/bli_trsv_u_blk_var2.c +++ b/frame/2/trsv/bli_trsv_u_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_u_blk_var2.h b/frame/2/trsv/bli_trsv_u_blk_var2.h index c280960d6..af350d6ed 100644 --- a/frame/2/trsv/bli_trsv_u_blk_var2.h +++ b/frame/2/trsv/bli_trsv_u_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_unb_var1.c b/frame/2/trsv/bli_trsv_unb_var1.c index c5357c019..2cbba6b37 100644 --- a/frame/2/trsv/bli_trsv_unb_var1.c +++ b/frame/2/trsv/bli_trsv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_unb_var1.h b/frame/2/trsv/bli_trsv_unb_var1.h index 25589b6af..47149d25c 100644 --- a/frame/2/trsv/bli_trsv_unb_var1.h +++ b/frame/2/trsv/bli_trsv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_unb_var2.c b/frame/2/trsv/bli_trsv_unb_var2.c index 54b2c1fc2..291f9b815 100644 --- a/frame/2/trsv/bli_trsv_unb_var2.c +++ b/frame/2/trsv/bli_trsv_unb_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_unb_var2.h b/frame/2/trsv/bli_trsv_unb_var2.h index d15e216a0..b886516d2 100644 --- a/frame/2/trsv/bli_trsv_unb_var2.h +++ b/frame/2/trsv/bli_trsv_unb_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_unf_var1.c b/frame/2/trsv/bli_trsv_unf_var1.c index e456a76be..f7989ae0a 100644 --- a/frame/2/trsv/bli_trsv_unf_var1.c +++ b/frame/2/trsv/bli_trsv_unf_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_unf_var1.h b/frame/2/trsv/bli_trsv_unf_var1.h index 57050de36..85893c169 100644 --- a/frame/2/trsv/bli_trsv_unf_var1.h +++ b/frame/2/trsv/bli_trsv_unf_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_unf_var2.c b/frame/2/trsv/bli_trsv_unf_var2.c index 722f0cc11..160bfc555 100644 --- a/frame/2/trsv/bli_trsv_unf_var2.c +++ b/frame/2/trsv/bli_trsv_unf_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/2/trsv/bli_trsv_unf_var2.h b/frame/2/trsv/bli_trsv_unf_var2.h index 3e68e0cc8..a3d5fe3d5 100644 --- a/frame/2/trsv/bli_trsv_unf_var2.h +++ b/frame/2/trsv/bli_trsv_unf_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/3m/bli_gemm3m.c b/frame/3/gemm/3m/bli_gemm3m.c index da2b211c3..c7ea33ae2 100644 --- a/frame/3/gemm/3m/bli_gemm3m.c +++ b/frame/3/gemm/3m/bli_gemm3m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/3m/bli_gemm3m.h b/frame/3/gemm/3m/bli_gemm3m.h index f07f9dbbf..98a5d8b44 100644 --- a/frame/3/gemm/3m/bli_gemm3m.h +++ b/frame/3/gemm/3m/bli_gemm3m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/3m/bli_gemm3m_cntl.c b/frame/3/gemm/3m/bli_gemm3m_cntl.c index f6ed61d6b..b2cd23791 100644 --- a/frame/3/gemm/3m/bli_gemm3m_cntl.c +++ b/frame/3/gemm/3m/bli_gemm3m_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/3m/bli_gemm3m_cntl.h b/frame/3/gemm/3m/bli_gemm3m_cntl.h index 3cef983fc..326be9a75 100644 --- a/frame/3/gemm/3m/bli_gemm3m_cntl.h +++ b/frame/3/gemm/3m/bli_gemm3m_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c b/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c index f8be95c1b..5d4ed3532 100644 --- a/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c +++ b/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h b/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h index 228606348..e6c740dfe 100644 --- a/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h +++ b/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/4m/bli_gemm4m.c b/frame/3/gemm/4m/bli_gemm4m.c index 1634bf795..00cbc762c 100644 --- a/frame/3/gemm/4m/bli_gemm4m.c +++ b/frame/3/gemm/4m/bli_gemm4m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/4m/bli_gemm4m.h b/frame/3/gemm/4m/bli_gemm4m.h index 47e35af0d..4246e02d4 100644 --- a/frame/3/gemm/4m/bli_gemm4m.h +++ b/frame/3/gemm/4m/bli_gemm4m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/4m/bli_gemm4m_cntl.c b/frame/3/gemm/4m/bli_gemm4m_cntl.c index 90141bf88..3d395c64f 100644 --- a/frame/3/gemm/4m/bli_gemm4m_cntl.c +++ b/frame/3/gemm/4m/bli_gemm4m_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/4m/bli_gemm4m_cntl.h b/frame/3/gemm/4m/bli_gemm4m_cntl.h index 87cb6c05d..00ece73e5 100644 --- a/frame/3/gemm/4m/bli_gemm4m_cntl.h +++ b/frame/3/gemm/4m/bli_gemm4m_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c b/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c index c91cbde55..4114235bd 100644 --- a/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c +++ b/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h b/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h index 4049be320..306980800 100644 --- a/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h +++ b/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm.c b/frame/3/gemm/bli_gemm.c index e028ba0ee..2012e6cbc 100644 --- a/frame/3/gemm/bli_gemm.c +++ b/frame/3/gemm/bli_gemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm.h b/frame/3/gemm/bli_gemm.h index 704402f58..6896fc2b7 100644 --- a/frame/3/gemm/bli_gemm.h +++ b/frame/3/gemm/bli_gemm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_blk_var1f.c b/frame/3/gemm/bli_gemm_blk_var1f.c index 8288f3ac9..865387c5a 100644 --- a/frame/3/gemm/bli_gemm_blk_var1f.c +++ b/frame/3/gemm/bli_gemm_blk_var1f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_blk_var1f.h b/frame/3/gemm/bli_gemm_blk_var1f.h index 99548ac12..15ef41647 100644 --- a/frame/3/gemm/bli_gemm_blk_var1f.h +++ b/frame/3/gemm/bli_gemm_blk_var1f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_blk_var2f.c b/frame/3/gemm/bli_gemm_blk_var2f.c index 63c2f5824..456226aa4 100644 --- a/frame/3/gemm/bli_gemm_blk_var2f.c +++ b/frame/3/gemm/bli_gemm_blk_var2f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_blk_var2f.h b/frame/3/gemm/bli_gemm_blk_var2f.h index 73dea73b8..c1d168048 100644 --- a/frame/3/gemm/bli_gemm_blk_var2f.h +++ b/frame/3/gemm/bli_gemm_blk_var2f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_blk_var3f.c b/frame/3/gemm/bli_gemm_blk_var3f.c index f1114daaf..f87fd6899 100644 --- a/frame/3/gemm/bli_gemm_blk_var3f.c +++ b/frame/3/gemm/bli_gemm_blk_var3f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_blk_var3f.h b/frame/3/gemm/bli_gemm_blk_var3f.h index cdd655c2f..0c3ef20d6 100644 --- a/frame/3/gemm/bli_gemm_blk_var3f.h +++ b/frame/3/gemm/bli_gemm_blk_var3f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_check.c b/frame/3/gemm/bli_gemm_check.c index 1e8cbab43..33be7e7e1 100644 --- a/frame/3/gemm/bli_gemm_check.c +++ b/frame/3/gemm/bli_gemm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_check.h b/frame/3/gemm/bli_gemm_check.h index 920815e53..d7466b3ab 100644 --- a/frame/3/gemm/bli_gemm_check.h +++ b/frame/3/gemm/bli_gemm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_cntl.c b/frame/3/gemm/bli_gemm_cntl.c index bb868b7a9..321d4a39e 100644 --- a/frame/3/gemm/bli_gemm_cntl.c +++ b/frame/3/gemm/bli_gemm_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_cntl.h b/frame/3/gemm/bli_gemm_cntl.h index 882b746eb..46f1f2d9c 100644 --- a/frame/3/gemm/bli_gemm_cntl.h +++ b/frame/3/gemm/bli_gemm_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_cntl_exp.c b/frame/3/gemm/bli_gemm_cntl_exp.c index 20a5beac2..d1321977b 100644 --- a/frame/3/gemm/bli_gemm_cntl_exp.c +++ b/frame/3/gemm/bli_gemm_cntl_exp.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_cntl_exp.h b/frame/3/gemm/bli_gemm_cntl_exp.h index b725b854b..88677f9e5 100644 --- a/frame/3/gemm/bli_gemm_cntl_exp.h +++ b/frame/3/gemm/bli_gemm_cntl_exp.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_front.c b/frame/3/gemm/bli_gemm_front.c index 01b8eaab7..a24e6c0c8 100644 --- a/frame/3/gemm/bli_gemm_front.c +++ b/frame/3/gemm/bli_gemm_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_front.h b/frame/3/gemm/bli_gemm_front.h index 1f1a1f88f..b8aa97e22 100644 --- a/frame/3/gemm/bli_gemm_front.h +++ b/frame/3/gemm/bli_gemm_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_int.c b/frame/3/gemm/bli_gemm_int.c index 5f59c43c8..b2fa9bd6f 100644 --- a/frame/3/gemm/bli_gemm_int.c +++ b/frame/3/gemm/bli_gemm_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_int.h b/frame/3/gemm/bli_gemm_int.h index bfefe30c7..6652a948b 100644 --- a/frame/3/gemm/bli_gemm_int.h +++ b/frame/3/gemm/bli_gemm_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_ker_var2.c b/frame/3/gemm/bli_gemm_ker_var2.c index 2d5cc7bca..4131bb8b9 100644 --- a/frame/3/gemm/bli_gemm_ker_var2.c +++ b/frame/3/gemm/bli_gemm_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_ker_var2.h b/frame/3/gemm/bli_gemm_ker_var2.h index ca5ac1eff..a403b0332 100644 --- a/frame/3/gemm/bli_gemm_ker_var2.h +++ b/frame/3/gemm/bli_gemm_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_ker_var5.c b/frame/3/gemm/bli_gemm_ker_var5.c index 33d245780..60a906d6e 100644 --- a/frame/3/gemm/bli_gemm_ker_var5.c +++ b/frame/3/gemm/bli_gemm_ker_var5.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_ker_var5.h b/frame/3/gemm/bli_gemm_ker_var5.h index 52a237bbc..4c16ff755 100644 --- a/frame/3/gemm/bli_gemm_ker_var5.h +++ b/frame/3/gemm/bli_gemm_ker_var5.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_target.c b/frame/3/gemm/bli_gemm_target.c index 3613d469f..72cebbf40 100644 --- a/frame/3/gemm/bli_gemm_target.c +++ b/frame/3/gemm/bli_gemm_target.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_target.h b/frame/3/gemm/bli_gemm_target.h index 5eb346e5e..03d502cd3 100644 --- a/frame/3/gemm/bli_gemm_target.h +++ b/frame/3/gemm/bli_gemm_target.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_threading.c b/frame/3/gemm/bli_gemm_threading.c index 3056f019f..511f4fe30 100644 --- a/frame/3/gemm/bli_gemm_threading.c +++ b/frame/3/gemm/bli_gemm_threading.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_threading.h b/frame/3/gemm/bli_gemm_threading.h index b789ba09b..3e313fb00 100644 --- a/frame/3/gemm/bli_gemm_threading.h +++ b/frame/3/gemm/bli_gemm_threading.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_ukernel.c b/frame/3/gemm/bli_gemm_ukernel.c index 5418d40a4..788302b3f 100644 --- a/frame/3/gemm/bli_gemm_ukernel.c +++ b/frame/3/gemm/bli_gemm_ukernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/bli_gemm_ukernel.h b/frame/3/gemm/bli_gemm_ukernel.h index a4c4e0576..627222530 100644 --- a/frame/3/gemm/bli_gemm_ukernel.h +++ b/frame/3/gemm/bli_gemm_ukernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/other/bli_gemm_blk_var4.c b/frame/3/gemm/other/bli_gemm_blk_var4.c index b572107d8..05dae95b2 100644 --- a/frame/3/gemm/other/bli_gemm_blk_var4.c +++ b/frame/3/gemm/other/bli_gemm_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/other/bli_gemm_blk_var4.h b/frame/3/gemm/other/bli_gemm_blk_var4.h index 2b59b0882..f9c46121a 100644 --- a/frame/3/gemm/other/bli_gemm_blk_var4.h +++ b/frame/3/gemm/other/bli_gemm_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/other/bli_gemm_ker_var2.c b/frame/3/gemm/other/bli_gemm_ker_var2.c index 21768300c..c8be88da3 100644 --- a/frame/3/gemm/other/bli_gemm_ker_var2.c +++ b/frame/3/gemm/other/bli_gemm_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/ukernels/bli_gemm_ukr_ref.c b/frame/3/gemm/ukernels/bli_gemm_ukr_ref.c index f1c383d1e..c4a482916 100644 --- a/frame/3/gemm/ukernels/bli_gemm_ukr_ref.c +++ b/frame/3/gemm/ukernels/bli_gemm_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/gemm/ukernels/bli_gemm_ukr_ref.h b/frame/3/gemm/ukernels/bli_gemm_ukr_ref.h index 797439b09..f494b7b33 100644 --- a/frame/3/gemm/ukernels/bli_gemm_ukr_ref.h +++ b/frame/3/gemm/ukernels/bli_gemm_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/3m/bli_hemm3m.c b/frame/3/hemm/3m/bli_hemm3m.c index f7a96ea7a..4ab526cbe 100644 --- a/frame/3/hemm/3m/bli_hemm3m.c +++ b/frame/3/hemm/3m/bli_hemm3m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/3m/bli_hemm3m.h b/frame/3/hemm/3m/bli_hemm3m.h index 88e9fcdfb..174fc5fdd 100644 --- a/frame/3/hemm/3m/bli_hemm3m.h +++ b/frame/3/hemm/3m/bli_hemm3m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/4m/bli_hemm4m.c b/frame/3/hemm/4m/bli_hemm4m.c index 1a54e2380..b16367d02 100644 --- a/frame/3/hemm/4m/bli_hemm4m.c +++ b/frame/3/hemm/4m/bli_hemm4m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/4m/bli_hemm4m.h b/frame/3/hemm/4m/bli_hemm4m.h index 2fa4cdbc0..ee6fea482 100644 --- a/frame/3/hemm/4m/bli_hemm4m.h +++ b/frame/3/hemm/4m/bli_hemm4m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/bli_hemm.c b/frame/3/hemm/bli_hemm.c index 5cc32f6aa..b18995dd4 100644 --- a/frame/3/hemm/bli_hemm.c +++ b/frame/3/hemm/bli_hemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/bli_hemm.h b/frame/3/hemm/bli_hemm.h index 4fbd1de6f..f92ba689f 100644 --- a/frame/3/hemm/bli_hemm.h +++ b/frame/3/hemm/bli_hemm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/bli_hemm_check.c b/frame/3/hemm/bli_hemm_check.c index d3e07f00d..ccc6d7059 100644 --- a/frame/3/hemm/bli_hemm_check.c +++ b/frame/3/hemm/bli_hemm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/bli_hemm_check.h b/frame/3/hemm/bli_hemm_check.h index 9f6a1894d..7d1d224d6 100644 --- a/frame/3/hemm/bli_hemm_check.h +++ b/frame/3/hemm/bli_hemm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/bli_hemm_front.c b/frame/3/hemm/bli_hemm_front.c index 7848e1117..044030855 100644 --- a/frame/3/hemm/bli_hemm_front.c +++ b/frame/3/hemm/bli_hemm_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/hemm/bli_hemm_front.h b/frame/3/hemm/bli_hemm_front.h index 9adb7a3b6..b4304acde 100644 --- a/frame/3/hemm/bli_hemm_front.h +++ b/frame/3/hemm/bli_hemm_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/3m/bli_her2k3m.c b/frame/3/her2k/3m/bli_her2k3m.c index d8b31fbf3..0b6ed4c47 100644 --- a/frame/3/her2k/3m/bli_her2k3m.c +++ b/frame/3/her2k/3m/bli_her2k3m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/3m/bli_her2k3m.h b/frame/3/her2k/3m/bli_her2k3m.h index 4a4dbd3cf..a6791b88f 100644 --- a/frame/3/her2k/3m/bli_her2k3m.h +++ b/frame/3/her2k/3m/bli_her2k3m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/4m/bli_her2k4m.c b/frame/3/her2k/4m/bli_her2k4m.c index 43aaaca05..4d6bd400d 100644 --- a/frame/3/her2k/4m/bli_her2k4m.c +++ b/frame/3/her2k/4m/bli_her2k4m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/4m/bli_her2k4m.h b/frame/3/her2k/4m/bli_her2k4m.h index eb5678ac7..469419699 100644 --- a/frame/3/her2k/4m/bli_her2k4m.h +++ b/frame/3/her2k/4m/bli_her2k4m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_blk_var1f.c b/frame/3/her2k/attic/bli_her2k_blk_var1f.c index 712d3513f..b3ed3e084 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var1f.c +++ b/frame/3/her2k/attic/bli_her2k_blk_var1f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_blk_var1f.h b/frame/3/her2k/attic/bli_her2k_blk_var1f.h index d77a1788e..32df70fc4 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var1f.h +++ b/frame/3/her2k/attic/bli_her2k_blk_var1f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_blk_var2f.c b/frame/3/her2k/attic/bli_her2k_blk_var2f.c index 2c8611bb8..d95f44c1d 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var2f.c +++ b/frame/3/her2k/attic/bli_her2k_blk_var2f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_blk_var2f.h b/frame/3/her2k/attic/bli_her2k_blk_var2f.h index b8a440c4f..036255380 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var2f.h +++ b/frame/3/her2k/attic/bli_her2k_blk_var2f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_blk_var3f.c b/frame/3/her2k/attic/bli_her2k_blk_var3f.c index 0bc1a80bf..4fa784c6e 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var3f.c +++ b/frame/3/her2k/attic/bli_her2k_blk_var3f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_blk_var3f.h b/frame/3/her2k/attic/bli_her2k_blk_var3f.h index 81aa0eada..c5523b9e5 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var3f.h +++ b/frame/3/her2k/attic/bli_her2k_blk_var3f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_cntl.c b/frame/3/her2k/attic/bli_her2k_cntl.c index fc2770511..8296cd7c1 100644 --- a/frame/3/her2k/attic/bli_her2k_cntl.c +++ b/frame/3/her2k/attic/bli_her2k_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_cntl.h b/frame/3/her2k/attic/bli_her2k_cntl.h index 9ae35d30a..bb1e8b227 100644 --- a/frame/3/her2k/attic/bli_her2k_cntl.h +++ b/frame/3/her2k/attic/bli_her2k_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_int.c b/frame/3/her2k/attic/bli_her2k_int.c index a7bb71f57..bced66035 100644 --- a/frame/3/her2k/attic/bli_her2k_int.c +++ b/frame/3/her2k/attic/bli_her2k_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_int.h b/frame/3/her2k/attic/bli_her2k_int.h index 935c239a5..4a41d8222 100644 --- a/frame/3/her2k/attic/bli_her2k_int.h +++ b/frame/3/her2k/attic/bli_her2k_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_l_ker_var2.c b/frame/3/her2k/attic/bli_her2k_l_ker_var2.c index 137df701a..c6a4c3e9d 100644 --- a/frame/3/her2k/attic/bli_her2k_l_ker_var2.c +++ b/frame/3/her2k/attic/bli_her2k_l_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_l_ker_var2.h b/frame/3/her2k/attic/bli_her2k_l_ker_var2.h index 9c48b15aa..02601e508 100644 --- a/frame/3/her2k/attic/bli_her2k_l_ker_var2.h +++ b/frame/3/her2k/attic/bli_her2k_l_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_target.c b/frame/3/her2k/attic/bli_her2k_target.c index 4f817959b..0c4f0a423 100644 --- a/frame/3/her2k/attic/bli_her2k_target.c +++ b/frame/3/her2k/attic/bli_her2k_target.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_target.h b/frame/3/her2k/attic/bli_her2k_target.h index 9a8dbb6aa..6eb98d533 100644 --- a/frame/3/her2k/attic/bli_her2k_target.h +++ b/frame/3/her2k/attic/bli_her2k_target.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_u_ker_var2.c b/frame/3/her2k/attic/bli_her2k_u_ker_var2.c index 4f60e9279..4f5e1dd62 100644 --- a/frame/3/her2k/attic/bli_her2k_u_ker_var2.c +++ b/frame/3/her2k/attic/bli_her2k_u_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/attic/bli_her2k_u_ker_var2.h b/frame/3/her2k/attic/bli_her2k_u_ker_var2.h index 97144468c..eb776ea75 100644 --- a/frame/3/her2k/attic/bli_her2k_u_ker_var2.h +++ b/frame/3/her2k/attic/bli_her2k_u_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/bli_her2k.c b/frame/3/her2k/bli_her2k.c index 8c8834b79..1bf00487d 100644 --- a/frame/3/her2k/bli_her2k.c +++ b/frame/3/her2k/bli_her2k.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/bli_her2k.h b/frame/3/her2k/bli_her2k.h index 6c3b0d2c7..aea56b9a5 100644 --- a/frame/3/her2k/bli_her2k.h +++ b/frame/3/her2k/bli_her2k.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/bli_her2k_check.c b/frame/3/her2k/bli_her2k_check.c index caa8f487f..c61869dc5 100644 --- a/frame/3/her2k/bli_her2k_check.c +++ b/frame/3/her2k/bli_her2k_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/bli_her2k_check.h b/frame/3/her2k/bli_her2k_check.h index 0730522ae..6b72a897b 100644 --- a/frame/3/her2k/bli_her2k_check.h +++ b/frame/3/her2k/bli_her2k_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/bli_her2k_front.c b/frame/3/her2k/bli_her2k_front.c index 01afc70dc..89fb8085c 100644 --- a/frame/3/her2k/bli_her2k_front.c +++ b/frame/3/her2k/bli_her2k_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/her2k/bli_her2k_front.h b/frame/3/her2k/bli_her2k_front.h index 7b9d9ac71..e05a3ea35 100644 --- a/frame/3/her2k/bli_her2k_front.h +++ b/frame/3/her2k/bli_her2k_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/3m/bli_herk3m.c b/frame/3/herk/3m/bli_herk3m.c index 62530faf8..f366bd181 100644 --- a/frame/3/herk/3m/bli_herk3m.c +++ b/frame/3/herk/3m/bli_herk3m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/3m/bli_herk3m.h b/frame/3/herk/3m/bli_herk3m.h index 71f83f2bf..113e1ef16 100644 --- a/frame/3/herk/3m/bli_herk3m.h +++ b/frame/3/herk/3m/bli_herk3m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/3m/bli_herk3m_cntl.c b/frame/3/herk/3m/bli_herk3m_cntl.c index 0dffc9820..700770633 100644 --- a/frame/3/herk/3m/bli_herk3m_cntl.c +++ b/frame/3/herk/3m/bli_herk3m_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/3m/bli_herk3m_cntl.h b/frame/3/herk/3m/bli_herk3m_cntl.h index 91ea940f1..0133c02bb 100644 --- a/frame/3/herk/3m/bli_herk3m_cntl.h +++ b/frame/3/herk/3m/bli_herk3m_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/4m/bli_herk4m.c b/frame/3/herk/4m/bli_herk4m.c index 33868cbc4..092eaeae9 100644 --- a/frame/3/herk/4m/bli_herk4m.c +++ b/frame/3/herk/4m/bli_herk4m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/4m/bli_herk4m.h b/frame/3/herk/4m/bli_herk4m.h index d77d3353f..c149c2c03 100644 --- a/frame/3/herk/4m/bli_herk4m.h +++ b/frame/3/herk/4m/bli_herk4m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/4m/bli_herk4m_cntl.c b/frame/3/herk/4m/bli_herk4m_cntl.c index 26de5aab9..7cacd3d55 100644 --- a/frame/3/herk/4m/bli_herk4m_cntl.c +++ b/frame/3/herk/4m/bli_herk4m_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/4m/bli_herk4m_cntl.h b/frame/3/herk/4m/bli_herk4m_cntl.h index c45c5ff19..3d4c6b480 100644 --- a/frame/3/herk/4m/bli_herk4m_cntl.h +++ b/frame/3/herk/4m/bli_herk4m_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk.c b/frame/3/herk/bli_herk.c index 5a089a9b3..6512eef54 100644 --- a/frame/3/herk/bli_herk.c +++ b/frame/3/herk/bli_herk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk.h b/frame/3/herk/bli_herk.h index b010fd037..d4e0c2a24 100644 --- a/frame/3/herk/bli_herk.h +++ b/frame/3/herk/bli_herk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_blk_var1f.c b/frame/3/herk/bli_herk_blk_var1f.c index fbee3a750..24df2bdbf 100644 --- a/frame/3/herk/bli_herk_blk_var1f.c +++ b/frame/3/herk/bli_herk_blk_var1f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_blk_var1f.h b/frame/3/herk/bli_herk_blk_var1f.h index 2a1b85f6e..7f063a217 100644 --- a/frame/3/herk/bli_herk_blk_var1f.h +++ b/frame/3/herk/bli_herk_blk_var1f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_blk_var2f.c b/frame/3/herk/bli_herk_blk_var2f.c index f8fc666ba..8947066dc 100644 --- a/frame/3/herk/bli_herk_blk_var2f.c +++ b/frame/3/herk/bli_herk_blk_var2f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_blk_var2f.h b/frame/3/herk/bli_herk_blk_var2f.h index 1d405f214..3fa573f81 100644 --- a/frame/3/herk/bli_herk_blk_var2f.h +++ b/frame/3/herk/bli_herk_blk_var2f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_blk_var3f.c b/frame/3/herk/bli_herk_blk_var3f.c index 943109156..50dbaaba7 100644 --- a/frame/3/herk/bli_herk_blk_var3f.c +++ b/frame/3/herk/bli_herk_blk_var3f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_blk_var3f.h b/frame/3/herk/bli_herk_blk_var3f.h index 22093d421..6cb1ef315 100644 --- a/frame/3/herk/bli_herk_blk_var3f.h +++ b/frame/3/herk/bli_herk_blk_var3f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_check.c b/frame/3/herk/bli_herk_check.c index b073dae52..dc6d2e42d 100644 --- a/frame/3/herk/bli_herk_check.c +++ b/frame/3/herk/bli_herk_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_check.h b/frame/3/herk/bli_herk_check.h index 35cfe3051..3eacdbd9d 100644 --- a/frame/3/herk/bli_herk_check.h +++ b/frame/3/herk/bli_herk_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_cntl.c b/frame/3/herk/bli_herk_cntl.c index f8555c870..2fde037d7 100644 --- a/frame/3/herk/bli_herk_cntl.c +++ b/frame/3/herk/bli_herk_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_cntl.h b/frame/3/herk/bli_herk_cntl.h index 2db055946..a5024b528 100644 --- a/frame/3/herk/bli_herk_cntl.h +++ b/frame/3/herk/bli_herk_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_front.c b/frame/3/herk/bli_herk_front.c index 6fb092460..6c1981db2 100644 --- a/frame/3/herk/bli_herk_front.c +++ b/frame/3/herk/bli_herk_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_front.h b/frame/3/herk/bli_herk_front.h index e038e7b6a..6813869f6 100644 --- a/frame/3/herk/bli_herk_front.h +++ b/frame/3/herk/bli_herk_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_int.c b/frame/3/herk/bli_herk_int.c index f604a55c6..42a3717b4 100644 --- a/frame/3/herk/bli_herk_int.c +++ b/frame/3/herk/bli_herk_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_int.h b/frame/3/herk/bli_herk_int.h index a3fa6343d..654db0bdb 100644 --- a/frame/3/herk/bli_herk_int.h +++ b/frame/3/herk/bli_herk_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_l_ker_var2.c b/frame/3/herk/bli_herk_l_ker_var2.c index 464e54588..10f650b38 100644 --- a/frame/3/herk/bli_herk_l_ker_var2.c +++ b/frame/3/herk/bli_herk_l_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_l_ker_var2.h b/frame/3/herk/bli_herk_l_ker_var2.h index 09f1c7b31..0276c050c 100644 --- a/frame/3/herk/bli_herk_l_ker_var2.h +++ b/frame/3/herk/bli_herk_l_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_target.c b/frame/3/herk/bli_herk_target.c index b77cd7531..0af709d61 100644 --- a/frame/3/herk/bli_herk_target.c +++ b/frame/3/herk/bli_herk_target.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_target.h b/frame/3/herk/bli_herk_target.h index 9ed2a9c46..ef715e91e 100644 --- a/frame/3/herk/bli_herk_target.h +++ b/frame/3/herk/bli_herk_target.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_threading.c b/frame/3/herk/bli_herk_threading.c index b0def6f3f..7fa43f08d 100644 --- a/frame/3/herk/bli_herk_threading.c +++ b/frame/3/herk/bli_herk_threading.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_threading.h b/frame/3/herk/bli_herk_threading.h index 33a04ff8b..6885a66db 100644 --- a/frame/3/herk/bli_herk_threading.h +++ b/frame/3/herk/bli_herk_threading.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_u_ker_var2.c b/frame/3/herk/bli_herk_u_ker_var2.c index 694f8a211..7e30d4550 100644 --- a/frame/3/herk/bli_herk_u_ker_var2.c +++ b/frame/3/herk/bli_herk_u_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/bli_herk_u_ker_var2.h b/frame/3/herk/bli_herk_u_ker_var2.h index 481947b8e..038d3954c 100644 --- a/frame/3/herk/bli_herk_u_ker_var2.h +++ b/frame/3/herk/bli_herk_u_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/other/bli_herk_l_blk_var4.c b/frame/3/herk/other/bli_herk_l_blk_var4.c index 3835013b3..813964eeb 100644 --- a/frame/3/herk/other/bli_herk_l_blk_var4.c +++ b/frame/3/herk/other/bli_herk_l_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/other/bli_herk_l_blk_var4.h b/frame/3/herk/other/bli_herk_l_blk_var4.h index ccf6e432c..f91bc5d25 100644 --- a/frame/3/herk/other/bli_herk_l_blk_var4.h +++ b/frame/3/herk/other/bli_herk_l_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/other/bli_herk_u_blk_var1.c b/frame/3/herk/other/bli_herk_u_blk_var1.c index 8284a4d88..f7d221935 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var1.c +++ b/frame/3/herk/other/bli_herk_u_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/other/bli_herk_u_blk_var1.h b/frame/3/herk/other/bli_herk_u_blk_var1.h index d672744be..d8d2b48d7 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var1.h +++ b/frame/3/herk/other/bli_herk_u_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/other/bli_herk_u_blk_var2.c b/frame/3/herk/other/bli_herk_u_blk_var2.c index 7d298d39c..41000e04a 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var2.c +++ b/frame/3/herk/other/bli_herk_u_blk_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/other/bli_herk_u_blk_var2.h b/frame/3/herk/other/bli_herk_u_blk_var2.h index 96d047953..478efc594 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var2.h +++ b/frame/3/herk/other/bli_herk_u_blk_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/other/bli_herk_u_blk_var4.c b/frame/3/herk/other/bli_herk_u_blk_var4.c index 0476a83a9..31fc83d1b 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var4.c +++ b/frame/3/herk/other/bli_herk_u_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/herk/other/bli_herk_u_blk_var4.h b/frame/3/herk/other/bli_herk_u_blk_var4.h index 9fb150fe9..4851a962f 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var4.h +++ b/frame/3/herk/other/bli_herk_u_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/3m/bli_symm3m.c b/frame/3/symm/3m/bli_symm3m.c index 5d170f8b6..1a433c41b 100644 --- a/frame/3/symm/3m/bli_symm3m.c +++ b/frame/3/symm/3m/bli_symm3m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/3m/bli_symm3m.h b/frame/3/symm/3m/bli_symm3m.h index cd5dcd4c9..15b846675 100644 --- a/frame/3/symm/3m/bli_symm3m.h +++ b/frame/3/symm/3m/bli_symm3m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/4m/bli_symm4m.c b/frame/3/symm/4m/bli_symm4m.c index 8525d4e2f..cb2ff5bdf 100644 --- a/frame/3/symm/4m/bli_symm4m.c +++ b/frame/3/symm/4m/bli_symm4m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/4m/bli_symm4m.h b/frame/3/symm/4m/bli_symm4m.h index 0cd0dc091..f1548c7d4 100644 --- a/frame/3/symm/4m/bli_symm4m.h +++ b/frame/3/symm/4m/bli_symm4m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/bli_symm.c b/frame/3/symm/bli_symm.c index 000d5de3a..85ed02371 100644 --- a/frame/3/symm/bli_symm.c +++ b/frame/3/symm/bli_symm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/bli_symm.h b/frame/3/symm/bli_symm.h index d5165e5b2..c1f040a2f 100644 --- a/frame/3/symm/bli_symm.h +++ b/frame/3/symm/bli_symm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/bli_symm_check.c b/frame/3/symm/bli_symm_check.c index 6a2d6fdba..fef47329c 100644 --- a/frame/3/symm/bli_symm_check.c +++ b/frame/3/symm/bli_symm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/bli_symm_check.h b/frame/3/symm/bli_symm_check.h index 486387ede..edb300017 100644 --- a/frame/3/symm/bli_symm_check.h +++ b/frame/3/symm/bli_symm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/bli_symm_front.c b/frame/3/symm/bli_symm_front.c index 796ad5196..0a57c39d3 100644 --- a/frame/3/symm/bli_symm_front.c +++ b/frame/3/symm/bli_symm_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/symm/bli_symm_front.h b/frame/3/symm/bli_symm_front.h index fc76592e3..7345a886f 100644 --- a/frame/3/symm/bli_symm_front.h +++ b/frame/3/symm/bli_symm_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/3m/bli_syr2k3m.c b/frame/3/syr2k/3m/bli_syr2k3m.c index e5acf56c0..5d0471a8a 100644 --- a/frame/3/syr2k/3m/bli_syr2k3m.c +++ b/frame/3/syr2k/3m/bli_syr2k3m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/3m/bli_syr2k3m.h b/frame/3/syr2k/3m/bli_syr2k3m.h index cdea4f196..8a8983e9d 100644 --- a/frame/3/syr2k/3m/bli_syr2k3m.h +++ b/frame/3/syr2k/3m/bli_syr2k3m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/4m/bli_syr2k4m.c b/frame/3/syr2k/4m/bli_syr2k4m.c index ebc1e453b..9b661d74b 100644 --- a/frame/3/syr2k/4m/bli_syr2k4m.c +++ b/frame/3/syr2k/4m/bli_syr2k4m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/4m/bli_syr2k4m.h b/frame/3/syr2k/4m/bli_syr2k4m.h index 45df1a95e..e6f95ad47 100644 --- a/frame/3/syr2k/4m/bli_syr2k4m.h +++ b/frame/3/syr2k/4m/bli_syr2k4m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/bli_syr2k.c b/frame/3/syr2k/bli_syr2k.c index 0f88529a9..611418ebf 100644 --- a/frame/3/syr2k/bli_syr2k.c +++ b/frame/3/syr2k/bli_syr2k.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/bli_syr2k.h b/frame/3/syr2k/bli_syr2k.h index 7d48b79a2..ba08fd996 100644 --- a/frame/3/syr2k/bli_syr2k.h +++ b/frame/3/syr2k/bli_syr2k.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/bli_syr2k_check.c b/frame/3/syr2k/bli_syr2k_check.c index d4818ae38..6f92ee2c0 100644 --- a/frame/3/syr2k/bli_syr2k_check.c +++ b/frame/3/syr2k/bli_syr2k_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/bli_syr2k_check.h b/frame/3/syr2k/bli_syr2k_check.h index 4b0aa3569..cdf162cd1 100644 --- a/frame/3/syr2k/bli_syr2k_check.h +++ b/frame/3/syr2k/bli_syr2k_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/bli_syr2k_front.c b/frame/3/syr2k/bli_syr2k_front.c index eceaf1913..5a21e6320 100644 --- a/frame/3/syr2k/bli_syr2k_front.c +++ b/frame/3/syr2k/bli_syr2k_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syr2k/bli_syr2k_front.h b/frame/3/syr2k/bli_syr2k_front.h index ca7438e34..9e01c6af6 100644 --- a/frame/3/syr2k/bli_syr2k_front.h +++ b/frame/3/syr2k/bli_syr2k_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/3m/bli_syrk3m.c b/frame/3/syrk/3m/bli_syrk3m.c index 7f672deb2..82501ca44 100644 --- a/frame/3/syrk/3m/bli_syrk3m.c +++ b/frame/3/syrk/3m/bli_syrk3m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/3m/bli_syrk3m.h b/frame/3/syrk/3m/bli_syrk3m.h index ba5eaa6b5..4a75a3b83 100644 --- a/frame/3/syrk/3m/bli_syrk3m.h +++ b/frame/3/syrk/3m/bli_syrk3m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/4m/bli_syrk4m.c b/frame/3/syrk/4m/bli_syrk4m.c index a311bafd1..8b5f45745 100644 --- a/frame/3/syrk/4m/bli_syrk4m.c +++ b/frame/3/syrk/4m/bli_syrk4m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/4m/bli_syrk4m.h b/frame/3/syrk/4m/bli_syrk4m.h index 75a8fcae5..3cc87c14c 100644 --- a/frame/3/syrk/4m/bli_syrk4m.h +++ b/frame/3/syrk/4m/bli_syrk4m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/bli_syrk.c b/frame/3/syrk/bli_syrk.c index ec474b102..b62303299 100644 --- a/frame/3/syrk/bli_syrk.c +++ b/frame/3/syrk/bli_syrk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/bli_syrk.h b/frame/3/syrk/bli_syrk.h index 2db0fa09f..6e99b20a9 100644 --- a/frame/3/syrk/bli_syrk.h +++ b/frame/3/syrk/bli_syrk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/bli_syrk_check.c b/frame/3/syrk/bli_syrk_check.c index 0f9fff0f3..29a3d317f 100644 --- a/frame/3/syrk/bli_syrk_check.c +++ b/frame/3/syrk/bli_syrk_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/bli_syrk_check.h b/frame/3/syrk/bli_syrk_check.h index d0bd19a87..c6543ecff 100644 --- a/frame/3/syrk/bli_syrk_check.h +++ b/frame/3/syrk/bli_syrk_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/bli_syrk_front.c b/frame/3/syrk/bli_syrk_front.c index 977a91cd8..e8b459523 100644 --- a/frame/3/syrk/bli_syrk_front.c +++ b/frame/3/syrk/bli_syrk_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/syrk/bli_syrk_front.h b/frame/3/syrk/bli_syrk_front.h index fc8a98cd4..18bbb3de0 100644 --- a/frame/3/syrk/bli_syrk_front.h +++ b/frame/3/syrk/bli_syrk_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/3m/bli_trmm3m.c b/frame/3/trmm/3m/bli_trmm3m.c index 62d06b7a1..17a059058 100644 --- a/frame/3/trmm/3m/bli_trmm3m.c +++ b/frame/3/trmm/3m/bli_trmm3m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/3m/bli_trmm3m.h b/frame/3/trmm/3m/bli_trmm3m.h index 846140b3f..e57eda1da 100644 --- a/frame/3/trmm/3m/bli_trmm3m.h +++ b/frame/3/trmm/3m/bli_trmm3m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/3m/bli_trmm3m_cntl.c b/frame/3/trmm/3m/bli_trmm3m_cntl.c index d5291f08e..851406891 100644 --- a/frame/3/trmm/3m/bli_trmm3m_cntl.c +++ b/frame/3/trmm/3m/bli_trmm3m_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/3m/bli_trmm3m_cntl.h b/frame/3/trmm/3m/bli_trmm3m_cntl.h index eac804f32..912e60cd0 100644 --- a/frame/3/trmm/3m/bli_trmm3m_cntl.h +++ b/frame/3/trmm/3m/bli_trmm3m_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/4m/bli_trmm4m.c b/frame/3/trmm/4m/bli_trmm4m.c index 64586ec67..c8660780f 100644 --- a/frame/3/trmm/4m/bli_trmm4m.c +++ b/frame/3/trmm/4m/bli_trmm4m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/4m/bli_trmm4m.h b/frame/3/trmm/4m/bli_trmm4m.h index 1f86b0ea6..bc883e97a 100644 --- a/frame/3/trmm/4m/bli_trmm4m.h +++ b/frame/3/trmm/4m/bli_trmm4m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/4m/bli_trmm4m_cntl.c b/frame/3/trmm/4m/bli_trmm4m_cntl.c index 3f98bccfe..bae4e05d5 100644 --- a/frame/3/trmm/4m/bli_trmm4m_cntl.c +++ b/frame/3/trmm/4m/bli_trmm4m_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/4m/bli_trmm4m_cntl.h b/frame/3/trmm/4m/bli_trmm4m_cntl.h index 68f7fbff2..919c6439a 100644 --- a/frame/3/trmm/4m/bli_trmm4m_cntl.h +++ b/frame/3/trmm/4m/bli_trmm4m_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm.c b/frame/3/trmm/bli_trmm.c index b44a1c061..3cfc068fc 100644 --- a/frame/3/trmm/bli_trmm.c +++ b/frame/3/trmm/bli_trmm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm.h b/frame/3/trmm/bli_trmm.h index f64a89b28..20b741a19 100644 --- a/frame/3/trmm/bli_trmm.h +++ b/frame/3/trmm/bli_trmm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var1f.c b/frame/3/trmm/bli_trmm_blk_var1f.c index c6cd75421..4cd42d0c7 100644 --- a/frame/3/trmm/bli_trmm_blk_var1f.c +++ b/frame/3/trmm/bli_trmm_blk_var1f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var1f.h b/frame/3/trmm/bli_trmm_blk_var1f.h index 63994a9a6..fab16b5fe 100644 --- a/frame/3/trmm/bli_trmm_blk_var1f.h +++ b/frame/3/trmm/bli_trmm_blk_var1f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var2b.c b/frame/3/trmm/bli_trmm_blk_var2b.c index 64b33f310..b354f79b3 100644 --- a/frame/3/trmm/bli_trmm_blk_var2b.c +++ b/frame/3/trmm/bli_trmm_blk_var2b.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var2b.h b/frame/3/trmm/bli_trmm_blk_var2b.h index afb9f9903..dcee405c8 100644 --- a/frame/3/trmm/bli_trmm_blk_var2b.h +++ b/frame/3/trmm/bli_trmm_blk_var2b.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var2f.c b/frame/3/trmm/bli_trmm_blk_var2f.c index 8adaf2b57..480433462 100644 --- a/frame/3/trmm/bli_trmm_blk_var2f.c +++ b/frame/3/trmm/bli_trmm_blk_var2f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var2f.h b/frame/3/trmm/bli_trmm_blk_var2f.h index 8c47d55b8..c167a9baa 100644 --- a/frame/3/trmm/bli_trmm_blk_var2f.h +++ b/frame/3/trmm/bli_trmm_blk_var2f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var3b.c b/frame/3/trmm/bli_trmm_blk_var3b.c index 6a1191936..9baf9474d 100644 --- a/frame/3/trmm/bli_trmm_blk_var3b.c +++ b/frame/3/trmm/bli_trmm_blk_var3b.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var3b.h b/frame/3/trmm/bli_trmm_blk_var3b.h index e3a5bfbb3..a8e376f6e 100644 --- a/frame/3/trmm/bli_trmm_blk_var3b.h +++ b/frame/3/trmm/bli_trmm_blk_var3b.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var3f.c b/frame/3/trmm/bli_trmm_blk_var3f.c index 67a4aa880..8ceda15ab 100644 --- a/frame/3/trmm/bli_trmm_blk_var3f.c +++ b/frame/3/trmm/bli_trmm_blk_var3f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_blk_var3f.h b/frame/3/trmm/bli_trmm_blk_var3f.h index 6f9338cbb..42ac48b6c 100644 --- a/frame/3/trmm/bli_trmm_blk_var3f.h +++ b/frame/3/trmm/bli_trmm_blk_var3f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_check.c b/frame/3/trmm/bli_trmm_check.c index c785a39d3..0ef785190 100644 --- a/frame/3/trmm/bli_trmm_check.c +++ b/frame/3/trmm/bli_trmm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_check.h b/frame/3/trmm/bli_trmm_check.h index 2cc2bf61f..80012802c 100644 --- a/frame/3/trmm/bli_trmm_check.h +++ b/frame/3/trmm/bli_trmm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_cntl.c b/frame/3/trmm/bli_trmm_cntl.c index a1a70ee22..a5be35b90 100644 --- a/frame/3/trmm/bli_trmm_cntl.c +++ b/frame/3/trmm/bli_trmm_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_cntl.h b/frame/3/trmm/bli_trmm_cntl.h index 75279f7ef..cdcb7a275 100644 --- a/frame/3/trmm/bli_trmm_cntl.h +++ b/frame/3/trmm/bli_trmm_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_front.c b/frame/3/trmm/bli_trmm_front.c index dea8b7771..5495ee9e3 100644 --- a/frame/3/trmm/bli_trmm_front.c +++ b/frame/3/trmm/bli_trmm_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_front.h b/frame/3/trmm/bli_trmm_front.h index 3fea7c174..c3d60bf10 100644 --- a/frame/3/trmm/bli_trmm_front.h +++ b/frame/3/trmm/bli_trmm_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_int.c b/frame/3/trmm/bli_trmm_int.c index 038348dd7..7298dad7a 100644 --- a/frame/3/trmm/bli_trmm_int.c +++ b/frame/3/trmm/bli_trmm_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_int.h b/frame/3/trmm/bli_trmm_int.h index 70d8b551e..ae98347a6 100644 --- a/frame/3/trmm/bli_trmm_int.h +++ b/frame/3/trmm/bli_trmm_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_ll_ker_var2.c b/frame/3/trmm/bli_trmm_ll_ker_var2.c index b5950a603..24ff3093b 100644 --- a/frame/3/trmm/bli_trmm_ll_ker_var2.c +++ b/frame/3/trmm/bli_trmm_ll_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_ll_ker_var2.h b/frame/3/trmm/bli_trmm_ll_ker_var2.h index 9710adc7c..3bf8f3df4 100644 --- a/frame/3/trmm/bli_trmm_ll_ker_var2.h +++ b/frame/3/trmm/bli_trmm_ll_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_lu_ker_var2.c b/frame/3/trmm/bli_trmm_lu_ker_var2.c index e4568c70c..003e90180 100644 --- a/frame/3/trmm/bli_trmm_lu_ker_var2.c +++ b/frame/3/trmm/bli_trmm_lu_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_lu_ker_var2.h b/frame/3/trmm/bli_trmm_lu_ker_var2.h index 508612a90..a62deee34 100644 --- a/frame/3/trmm/bli_trmm_lu_ker_var2.h +++ b/frame/3/trmm/bli_trmm_lu_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_rl_ker_var2.c b/frame/3/trmm/bli_trmm_rl_ker_var2.c index 133c0d8ed..f6b1c8712 100644 --- a/frame/3/trmm/bli_trmm_rl_ker_var2.c +++ b/frame/3/trmm/bli_trmm_rl_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_rl_ker_var2.h b/frame/3/trmm/bli_trmm_rl_ker_var2.h index d1e998bf6..098b79f1a 100644 --- a/frame/3/trmm/bli_trmm_rl_ker_var2.h +++ b/frame/3/trmm/bli_trmm_rl_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_ru_ker_var2.c b/frame/3/trmm/bli_trmm_ru_ker_var2.c index cb5ef580f..bd965ea3a 100644 --- a/frame/3/trmm/bli_trmm_ru_ker_var2.c +++ b/frame/3/trmm/bli_trmm_ru_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_ru_ker_var2.h b/frame/3/trmm/bli_trmm_ru_ker_var2.h index cb4a7b937..14a2d5301 100644 --- a/frame/3/trmm/bli_trmm_ru_ker_var2.h +++ b/frame/3/trmm/bli_trmm_ru_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_target.c b/frame/3/trmm/bli_trmm_target.c index 277f2a47a..29a5f6847 100644 --- a/frame/3/trmm/bli_trmm_target.c +++ b/frame/3/trmm/bli_trmm_target.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_target.h b/frame/3/trmm/bli_trmm_target.h index 26ca95ede..2e0c42e5e 100644 --- a/frame/3/trmm/bli_trmm_target.h +++ b/frame/3/trmm/bli_trmm_target.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_threading.c b/frame/3/trmm/bli_trmm_threading.c index 03dca3a10..b53003db0 100644 --- a/frame/3/trmm/bli_trmm_threading.c +++ b/frame/3/trmm/bli_trmm_threading.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/bli_trmm_threading.h b/frame/3/trmm/bli_trmm_threading.h index dadc65912..806d0825e 100644 --- a/frame/3/trmm/bli_trmm_threading.h +++ b/frame/3/trmm/bli_trmm_threading.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/other/bli_trmm_ll_blk_var1.c b/frame/3/trmm/other/bli_trmm_ll_blk_var1.c index 370f74066..9be32a816 100644 --- a/frame/3/trmm/other/bli_trmm_ll_blk_var1.c +++ b/frame/3/trmm/other/bli_trmm_ll_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/other/bli_trmm_ll_blk_var1.h b/frame/3/trmm/other/bli_trmm_ll_blk_var1.h index 7139b0884..99b02d949 100644 --- a/frame/3/trmm/other/bli_trmm_ll_blk_var1.h +++ b/frame/3/trmm/other/bli_trmm_ll_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/other/bli_trmm_ll_blk_var4.c b/frame/3/trmm/other/bli_trmm_ll_blk_var4.c index 456fbd0cf..214098b01 100644 --- a/frame/3/trmm/other/bli_trmm_ll_blk_var4.c +++ b/frame/3/trmm/other/bli_trmm_ll_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/other/bli_trmm_ll_blk_var4.h b/frame/3/trmm/other/bli_trmm_ll_blk_var4.h index 4c2885adb..2a2ea84aa 100644 --- a/frame/3/trmm/other/bli_trmm_ll_blk_var4.h +++ b/frame/3/trmm/other/bli_trmm_ll_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/other/bli_trmm_lu_blk_var1.c b/frame/3/trmm/other/bli_trmm_lu_blk_var1.c index fe8e8fca3..e52dd1f81 100644 --- a/frame/3/trmm/other/bli_trmm_lu_blk_var1.c +++ b/frame/3/trmm/other/bli_trmm_lu_blk_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/other/bli_trmm_lu_blk_var1.h b/frame/3/trmm/other/bli_trmm_lu_blk_var1.h index 8f11c07a7..94bb219df 100644 --- a/frame/3/trmm/other/bli_trmm_lu_blk_var1.h +++ b/frame/3/trmm/other/bli_trmm_lu_blk_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/other/bli_trmm_lu_blk_var4.c b/frame/3/trmm/other/bli_trmm_lu_blk_var4.c index 86e35c2ef..219469ac3 100644 --- a/frame/3/trmm/other/bli_trmm_lu_blk_var4.c +++ b/frame/3/trmm/other/bli_trmm_lu_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm/other/bli_trmm_lu_blk_var4.h b/frame/3/trmm/other/bli_trmm_lu_blk_var4.h index 2fbc3cffc..a284df844 100644 --- a/frame/3/trmm/other/bli_trmm_lu_blk_var4.h +++ b/frame/3/trmm/other/bli_trmm_lu_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/3m/bli_trmm33m.c b/frame/3/trmm3/3m/bli_trmm33m.c index 6aa0bc59b..9532e67e7 100644 --- a/frame/3/trmm3/3m/bli_trmm33m.c +++ b/frame/3/trmm3/3m/bli_trmm33m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/3m/bli_trmm33m.h b/frame/3/trmm3/3m/bli_trmm33m.h index 1038aa00c..8529da5ce 100644 --- a/frame/3/trmm3/3m/bli_trmm33m.h +++ b/frame/3/trmm3/3m/bli_trmm33m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/4m/bli_trmm34m.c b/frame/3/trmm3/4m/bli_trmm34m.c index e9d6c54f5..51384ba51 100644 --- a/frame/3/trmm3/4m/bli_trmm34m.c +++ b/frame/3/trmm3/4m/bli_trmm34m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/4m/bli_trmm34m.h b/frame/3/trmm3/4m/bli_trmm34m.h index 469620296..d3b487d55 100644 --- a/frame/3/trmm3/4m/bli_trmm34m.h +++ b/frame/3/trmm3/4m/bli_trmm34m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/bli_trmm3.c b/frame/3/trmm3/bli_trmm3.c index 9a915fd53..81b639dad 100644 --- a/frame/3/trmm3/bli_trmm3.c +++ b/frame/3/trmm3/bli_trmm3.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/bli_trmm3.h b/frame/3/trmm3/bli_trmm3.h index dba409cb5..c6e24a9fb 100644 --- a/frame/3/trmm3/bli_trmm3.h +++ b/frame/3/trmm3/bli_trmm3.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/bli_trmm3_check.c b/frame/3/trmm3/bli_trmm3_check.c index cf1dda7c5..c10d15b8e 100644 --- a/frame/3/trmm3/bli_trmm3_check.c +++ b/frame/3/trmm3/bli_trmm3_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/bli_trmm3_check.h b/frame/3/trmm3/bli_trmm3_check.h index 4508fbdb2..451a481d6 100644 --- a/frame/3/trmm3/bli_trmm3_check.h +++ b/frame/3/trmm3/bli_trmm3_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/bli_trmm3_front.c b/frame/3/trmm3/bli_trmm3_front.c index 16c41154d..b3dc01eb7 100644 --- a/frame/3/trmm3/bli_trmm3_front.c +++ b/frame/3/trmm3/bli_trmm3_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trmm3/bli_trmm3_front.h b/frame/3/trmm3/bli_trmm3_front.h index 80149566f..af276f35b 100644 --- a/frame/3/trmm3/bli_trmm3_front.h +++ b/frame/3/trmm3/bli_trmm3_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/bli_trsm3m.c b/frame/3/trsm/3m/bli_trsm3m.c index 307bef013..2c26527c7 100644 --- a/frame/3/trsm/3m/bli_trsm3m.c +++ b/frame/3/trsm/3m/bli_trsm3m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/bli_trsm3m.h b/frame/3/trsm/3m/bli_trsm3m.h index 81b7b5601..f14410d62 100644 --- a/frame/3/trsm/3m/bli_trsm3m.h +++ b/frame/3/trsm/3m/bli_trsm3m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/bli_trsm3m_cntl.c b/frame/3/trsm/3m/bli_trsm3m_cntl.c index 52ade0617..ab308e483 100644 --- a/frame/3/trsm/3m/bli_trsm3m_cntl.c +++ b/frame/3/trsm/3m/bli_trsm3m_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/bli_trsm3m_cntl.h b/frame/3/trsm/3m/bli_trsm3m_cntl.h index 495ecaf41..a6d328464 100644 --- a/frame/3/trsm/3m/bli_trsm3m_cntl.h +++ b/frame/3/trsm/3m/bli_trsm3m_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c index 19c7cdaaf..aef999481 100644 --- a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c +++ b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h index 105891eb2..7e6a17a84 100644 --- a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h +++ b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c index 95501f694..38c7bb372 100644 --- a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c +++ b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h index 58cc7bdd6..8b8f02b60 100644 --- a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h +++ b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c b/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c index ccb3445d8..5f72a04d5 100644 --- a/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c +++ b/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h b/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h index c5bc390ac..12a6fd466 100644 --- a/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h +++ b/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c b/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c index 6133cfbad..2be6b299e 100644 --- a/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c +++ b/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h b/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h index 2595b5caf..630b0e159 100644 --- a/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h +++ b/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/bli_trsm4m.c b/frame/3/trsm/4m/bli_trsm4m.c index 011594010..a8d6191d8 100644 --- a/frame/3/trsm/4m/bli_trsm4m.c +++ b/frame/3/trsm/4m/bli_trsm4m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/bli_trsm4m.h b/frame/3/trsm/4m/bli_trsm4m.h index 06374c3c6..0d5b3e4ea 100644 --- a/frame/3/trsm/4m/bli_trsm4m.h +++ b/frame/3/trsm/4m/bli_trsm4m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/bli_trsm4m_cntl.c b/frame/3/trsm/4m/bli_trsm4m_cntl.c index facf7334f..507de4635 100644 --- a/frame/3/trsm/4m/bli_trsm4m_cntl.c +++ b/frame/3/trsm/4m/bli_trsm4m_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/bli_trsm4m_cntl.h b/frame/3/trsm/4m/bli_trsm4m_cntl.h index 2646efbab..a582254e6 100644 --- a/frame/3/trsm/4m/bli_trsm4m_cntl.h +++ b/frame/3/trsm/4m/bli_trsm4m_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c index 0654cd0b4..4d91049a6 100644 --- a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c +++ b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h index 5d0ddaa17..2366e74a1 100644 --- a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h +++ b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c index 5b775a17b..8586eedf0 100644 --- a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c +++ b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h index 1e79bed3b..35e159dee 100644 --- a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h +++ b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c b/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c index 4fafd4fa9..b65322488 100644 --- a/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c +++ b/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h b/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h index a15fffc7d..7d6d07326 100644 --- a/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h +++ b/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c b/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c index 1228f0711..a2568273c 100644 --- a/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c +++ b/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h b/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h index 774e3660f..635c222b4 100644 --- a/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h +++ b/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_gemmtrsm_ukernel.c b/frame/3/trsm/bli_gemmtrsm_ukernel.c index 65ef744d3..06a1dfa79 100644 --- a/frame/3/trsm/bli_gemmtrsm_ukernel.c +++ b/frame/3/trsm/bli_gemmtrsm_ukernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_gemmtrsm_ukernel.h b/frame/3/trsm/bli_gemmtrsm_ukernel.h index 2cfb47bbd..af73b6908 100644 --- a/frame/3/trsm/bli_gemmtrsm_ukernel.h +++ b/frame/3/trsm/bli_gemmtrsm_ukernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm.c b/frame/3/trsm/bli_trsm.c index a9dad8b0f..ff58284f6 100644 --- a/frame/3/trsm/bli_trsm.c +++ b/frame/3/trsm/bli_trsm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm.h b/frame/3/trsm/bli_trsm.h index d358dd66c..2c0bcf48d 100644 --- a/frame/3/trsm/bli_trsm.h +++ b/frame/3/trsm/bli_trsm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var1b.c b/frame/3/trsm/bli_trsm_blk_var1b.c index d2037c202..4938aefe9 100644 --- a/frame/3/trsm/bli_trsm_blk_var1b.c +++ b/frame/3/trsm/bli_trsm_blk_var1b.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var1b.h b/frame/3/trsm/bli_trsm_blk_var1b.h index 99585b947..db4109801 100644 --- a/frame/3/trsm/bli_trsm_blk_var1b.h +++ b/frame/3/trsm/bli_trsm_blk_var1b.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var1f.c b/frame/3/trsm/bli_trsm_blk_var1f.c index 7072d0438..9b58bfd42 100644 --- a/frame/3/trsm/bli_trsm_blk_var1f.c +++ b/frame/3/trsm/bli_trsm_blk_var1f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var1f.h b/frame/3/trsm/bli_trsm_blk_var1f.h index 48384c369..4191f5567 100644 --- a/frame/3/trsm/bli_trsm_blk_var1f.h +++ b/frame/3/trsm/bli_trsm_blk_var1f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var2b.c b/frame/3/trsm/bli_trsm_blk_var2b.c index 2ee269cee..a903807c6 100644 --- a/frame/3/trsm/bli_trsm_blk_var2b.c +++ b/frame/3/trsm/bli_trsm_blk_var2b.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var2b.h b/frame/3/trsm/bli_trsm_blk_var2b.h index de4a8f899..152f65807 100644 --- a/frame/3/trsm/bli_trsm_blk_var2b.h +++ b/frame/3/trsm/bli_trsm_blk_var2b.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var2f.c b/frame/3/trsm/bli_trsm_blk_var2f.c index 41ccc668f..a7609abef 100644 --- a/frame/3/trsm/bli_trsm_blk_var2f.c +++ b/frame/3/trsm/bli_trsm_blk_var2f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var2f.h b/frame/3/trsm/bli_trsm_blk_var2f.h index ade7f0bf4..a69effd1f 100644 --- a/frame/3/trsm/bli_trsm_blk_var2f.h +++ b/frame/3/trsm/bli_trsm_blk_var2f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var3b.c b/frame/3/trsm/bli_trsm_blk_var3b.c index dd6b2c0c7..0d36f3f34 100644 --- a/frame/3/trsm/bli_trsm_blk_var3b.c +++ b/frame/3/trsm/bli_trsm_blk_var3b.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var3b.h b/frame/3/trsm/bli_trsm_blk_var3b.h index a1779dc67..bd5ef655b 100644 --- a/frame/3/trsm/bli_trsm_blk_var3b.h +++ b/frame/3/trsm/bli_trsm_blk_var3b.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var3f.c b/frame/3/trsm/bli_trsm_blk_var3f.c index 466fd4461..3f794cbc6 100644 --- a/frame/3/trsm/bli_trsm_blk_var3f.c +++ b/frame/3/trsm/bli_trsm_blk_var3f.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_blk_var3f.h b/frame/3/trsm/bli_trsm_blk_var3f.h index 013d70bc1..ee9e49171 100644 --- a/frame/3/trsm/bli_trsm_blk_var3f.h +++ b/frame/3/trsm/bli_trsm_blk_var3f.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_check.c b/frame/3/trsm/bli_trsm_check.c index 890540856..f3515670a 100644 --- a/frame/3/trsm/bli_trsm_check.c +++ b/frame/3/trsm/bli_trsm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_check.h b/frame/3/trsm/bli_trsm_check.h index 4f7773db5..2278bb3f2 100644 --- a/frame/3/trsm/bli_trsm_check.h +++ b/frame/3/trsm/bli_trsm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_cntl.c b/frame/3/trsm/bli_trsm_cntl.c index a9bec29bd..4586b45e8 100644 --- a/frame/3/trsm/bli_trsm_cntl.c +++ b/frame/3/trsm/bli_trsm_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_cntl.h b/frame/3/trsm/bli_trsm_cntl.h index 1a91024b5..b7a43b559 100644 --- a/frame/3/trsm/bli_trsm_cntl.h +++ b/frame/3/trsm/bli_trsm_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_front.c b/frame/3/trsm/bli_trsm_front.c index 2c42c24f9..d649dc11f 100644 --- a/frame/3/trsm/bli_trsm_front.c +++ b/frame/3/trsm/bli_trsm_front.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_front.h b/frame/3/trsm/bli_trsm_front.h index 3b805790e..d2174681e 100644 --- a/frame/3/trsm/bli_trsm_front.h +++ b/frame/3/trsm/bli_trsm_front.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_int.c b/frame/3/trsm/bli_trsm_int.c index 6644b3512..533995104 100644 --- a/frame/3/trsm/bli_trsm_int.c +++ b/frame/3/trsm/bli_trsm_int.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_int.h b/frame/3/trsm/bli_trsm_int.h index 62a937b3c..36d27879d 100644 --- a/frame/3/trsm/bli_trsm_int.h +++ b/frame/3/trsm/bli_trsm_int.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_ll_ker_var2.c b/frame/3/trsm/bli_trsm_ll_ker_var2.c index 137ffaf07..e538a68a2 100644 --- a/frame/3/trsm/bli_trsm_ll_ker_var2.c +++ b/frame/3/trsm/bli_trsm_ll_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_ll_ker_var2.h b/frame/3/trsm/bli_trsm_ll_ker_var2.h index d13ab6f23..308846549 100644 --- a/frame/3/trsm/bli_trsm_ll_ker_var2.h +++ b/frame/3/trsm/bli_trsm_ll_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_lu_ker_var2.c b/frame/3/trsm/bli_trsm_lu_ker_var2.c index 8d09567cf..d03949920 100644 --- a/frame/3/trsm/bli_trsm_lu_ker_var2.c +++ b/frame/3/trsm/bli_trsm_lu_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_lu_ker_var2.h b/frame/3/trsm/bli_trsm_lu_ker_var2.h index c26d0081a..7cb839f45 100644 --- a/frame/3/trsm/bli_trsm_lu_ker_var2.h +++ b/frame/3/trsm/bli_trsm_lu_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_rl_ker_var2.c b/frame/3/trsm/bli_trsm_rl_ker_var2.c index 341aae3aa..d223019a2 100644 --- a/frame/3/trsm/bli_trsm_rl_ker_var2.c +++ b/frame/3/trsm/bli_trsm_rl_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_rl_ker_var2.h b/frame/3/trsm/bli_trsm_rl_ker_var2.h index 8cc3c5fed..38d61c2cd 100644 --- a/frame/3/trsm/bli_trsm_rl_ker_var2.h +++ b/frame/3/trsm/bli_trsm_rl_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_ru_ker_var2.c b/frame/3/trsm/bli_trsm_ru_ker_var2.c index 50a19672e..37b58d75a 100644 --- a/frame/3/trsm/bli_trsm_ru_ker_var2.c +++ b/frame/3/trsm/bli_trsm_ru_ker_var2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_ru_ker_var2.h b/frame/3/trsm/bli_trsm_ru_ker_var2.h index c07b215af..c1216d02f 100644 --- a/frame/3/trsm/bli_trsm_ru_ker_var2.h +++ b/frame/3/trsm/bli_trsm_ru_ker_var2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_threading.c b/frame/3/trsm/bli_trsm_threading.c index 73832f4f8..758a62ce3 100644 --- a/frame/3/trsm/bli_trsm_threading.c +++ b/frame/3/trsm/bli_trsm_threading.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_threading.h b/frame/3/trsm/bli_trsm_threading.h index 8dab87d90..d8db3fcf5 100644 --- a/frame/3/trsm/bli_trsm_threading.h +++ b/frame/3/trsm/bli_trsm_threading.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_ukernel.c b/frame/3/trsm/bli_trsm_ukernel.c index fb19e0abb..930c5dc1b 100644 --- a/frame/3/trsm/bli_trsm_ukernel.c +++ b/frame/3/trsm/bli_trsm_ukernel.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/bli_trsm_ukernel.h b/frame/3/trsm/bli_trsm_ukernel.h index eaf18d1d4..073ff214a 100644 --- a/frame/3/trsm/bli_trsm_ukernel.h +++ b/frame/3/trsm/bli_trsm_ukernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/other/bli_trsm_l_blk_var4.c b/frame/3/trsm/other/bli_trsm_l_blk_var4.c index cac45bd9d..15718f687 100644 --- a/frame/3/trsm/other/bli_trsm_l_blk_var4.c +++ b/frame/3/trsm/other/bli_trsm_l_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/other/bli_trsm_l_blk_var4.h b/frame/3/trsm/other/bli_trsm_l_blk_var4.h index 66e0d1bec..0acd79d27 100644 --- a/frame/3/trsm/other/bli_trsm_l_blk_var4.h +++ b/frame/3/trsm/other/bli_trsm_l_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/other/bli_trsm_u_blk_var4.c b/frame/3/trsm/other/bli_trsm_u_blk_var4.c index d9ef4145a..5f25ef440 100644 --- a/frame/3/trsm/other/bli_trsm_u_blk_var4.c +++ b/frame/3/trsm/other/bli_trsm_u_blk_var4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/other/bli_trsm_u_blk_var4.h b/frame/3/trsm/other/bli_trsm_u_blk_var4.h index 92bf672a5..ab233b146 100644 --- a/frame/3/trsm/other/bli_trsm_u_blk_var4.h +++ b/frame/3/trsm/other/bli_trsm_u_blk_var4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c b/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c index a5f89de8f..9256ee95a 100644 --- a/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c +++ b/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h b/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h index d60689d49..2123c7c31 100644 --- a/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h +++ b/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c b/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c index e548ba33a..ab9e197fa 100644 --- a/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c +++ b/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h b/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h index e17880937..877a4dee4 100644 --- a/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h +++ b/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c b/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c index 93d80f3d9..be3273449 100644 --- a/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c +++ b/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h b/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h index 3ffecfbbc..e94f80c73 100644 --- a/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h +++ b/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c b/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c index d10d2df9b..e5f98c429 100644 --- a/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c +++ b/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h b/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h index 46d63e513..72e77f7fa 100644 --- a/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h +++ b/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_blocksize.c b/frame/base/bli_blocksize.c index 2358bd2c5..20443d2e7 100644 --- a/frame/base/bli_blocksize.c +++ b/frame/base/bli_blocksize.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_blocksize.h b/frame/base/bli_blocksize.h index d038d1cca..f22b55a9a 100644 --- a/frame/base/bli_blocksize.h +++ b/frame/base/bli_blocksize.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_check.c b/frame/base/bli_check.c index 67c2b26f4..3308c79e0 100644 --- a/frame/base/bli_check.c +++ b/frame/base/bli_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_check.h b/frame/base/bli_check.h index 5515ea7bd..76430f76e 100644 --- a/frame/base/bli_check.h +++ b/frame/base/bli_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_clock.c b/frame/base/bli_clock.c index ada2957b9..a1763ad2e 100644 --- a/frame/base/bli_clock.c +++ b/frame/base/bli_clock.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_clock.h b/frame/base/bli_clock.h index accd68971..db216fdf4 100644 --- a/frame/base/bli_clock.h +++ b/frame/base/bli_clock.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_error.c b/frame/base/bli_error.c index d5ec72e20..ccc178985 100644 --- a/frame/base/bli_error.c +++ b/frame/base/bli_error.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_error.h b/frame/base/bli_error.h index c98e96a74..f471652e9 100644 --- a/frame/base/bli_error.h +++ b/frame/base/bli_error.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_func.c b/frame/base/bli_func.c index 039b3b7bf..c24f3bd6d 100644 --- a/frame/base/bli_func.c +++ b/frame/base/bli_func.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_func.h b/frame/base/bli_func.h index c7a463c16..8e57ad779 100644 --- a/frame/base/bli_func.h +++ b/frame/base/bli_func.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_getopt.c b/frame/base/bli_getopt.c index 07a0e9ebd..27a4337e9 100644 --- a/frame/base/bli_getopt.c +++ b/frame/base/bli_getopt.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_getopt.h b/frame/base/bli_getopt.h index 1caa2f035..bc44baa76 100644 --- a/frame/base/bli_getopt.h +++ b/frame/base/bli_getopt.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_info.c b/frame/base/bli_info.c index 9d7498a7b..e8d1806bd 100644 --- a/frame/base/bli_info.c +++ b/frame/base/bli_info.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_info.h b/frame/base/bli_info.h index 4c5ccb120..49c4a322d 100644 --- a/frame/base/bli_info.h +++ b/frame/base/bli_info.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_init.c b/frame/base/bli_init.c index 80eadd8e2..6c38c8d34 100644 --- a/frame/base/bli_init.c +++ b/frame/base/bli_init.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_init.h b/frame/base/bli_init.h index 9f50c3045..3f1d55194 100644 --- a/frame/base/bli_init.h +++ b/frame/base/bli_init.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_machval.c b/frame/base/bli_machval.c index 6724ecfc5..ab43721f3 100644 --- a/frame/base/bli_machval.c +++ b/frame/base/bli_machval.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_machval.h b/frame/base/bli_machval.h index 75d8a5706..9184fb3c1 100644 --- a/frame/base/bli_machval.h +++ b/frame/base/bli_machval.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_malloc.c b/frame/base/bli_malloc.c index 1b9104b9d..9bb52b03d 100644 --- a/frame/base/bli_malloc.c +++ b/frame/base/bli_malloc.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_malloc.h b/frame/base/bli_malloc.h index 999cf568e..7236e58ea 100644 --- a/frame/base/bli_malloc.h +++ b/frame/base/bli_malloc.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_mem.c b/frame/base/bli_mem.c index 06688cacf..f50cbc465 100644 --- a/frame/base/bli_mem.c +++ b/frame/base/bli_mem.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_mem.h b/frame/base/bli_mem.h index a41d22e38..ff24ae7f5 100644 --- a/frame/base/bli_mem.h +++ b/frame/base/bli_mem.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_obj.c b/frame/base/bli_obj.c index 02426633a..7375c208e 100644 --- a/frame/base/bli_obj.c +++ b/frame/base/bli_obj.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_obj.h b/frame/base/bli_obj.h index 0457c5c13..2a9d39aa7 100644 --- a/frame/base/bli_obj.h +++ b/frame/base/bli_obj.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_obj_scalar.c b/frame/base/bli_obj_scalar.c index 5492aa997..2d70eb6c9 100644 --- a/frame/base/bli_obj_scalar.c +++ b/frame/base/bli_obj_scalar.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_obj_scalar.h b/frame/base/bli_obj_scalar.h index 91e4d628d..7cc8a5f84 100644 --- a/frame/base/bli_obj_scalar.h +++ b/frame/base/bli_obj_scalar.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_param_map.c b/frame/base/bli_param_map.c index 525ee88a2..98cab7384 100644 --- a/frame/base/bli_param_map.c +++ b/frame/base/bli_param_map.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_param_map.h b/frame/base/bli_param_map.h index 5d6c7dd38..ab5728435 100644 --- a/frame/base/bli_param_map.h +++ b/frame/base/bli_param_map.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_part.c b/frame/base/bli_part.c index 71e233aaa..ae3befd5f 100644 --- a/frame/base/bli_part.c +++ b/frame/base/bli_part.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_part.h b/frame/base/bli_part.h index 5c3548591..2cbc6c5af 100644 --- a/frame/base/bli_part.h +++ b/frame/base/bli_part.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_query.c b/frame/base/bli_query.c index 94024dd5d..e0c1d1833 100644 --- a/frame/base/bli_query.c +++ b/frame/base/bli_query.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_query.h b/frame/base/bli_query.h index 399919215..0a8c07f44 100644 --- a/frame/base/bli_query.h +++ b/frame/base/bli_query.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_threading.c b/frame/base/bli_threading.c index ca6503b8e..0c96124be 100644 --- a/frame/base/bli_threading.c +++ b/frame/base/bli_threading.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/bli_threading.h b/frame/base/bli_threading.h index aa8bd8152..67664e32f 100644 --- a/frame/base/bli_threading.h +++ b/frame/base/bli_threading.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/check/bli_obj_check.c b/frame/base/check/bli_obj_check.c index ec53b8b9f..8a69d145a 100644 --- a/frame/base/check/bli_obj_check.c +++ b/frame/base/check/bli_obj_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/check/bli_obj_check.h b/frame/base/check/bli_obj_check.h index 0a30af2f7..934a7c863 100644 --- a/frame/base/check/bli_obj_check.h +++ b/frame/base/check/bli_obj_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/check/bli_part_check.c b/frame/base/check/bli_part_check.c index 6b062de29..5be144c6f 100644 --- a/frame/base/check/bli_part_check.c +++ b/frame/base/check/bli_part_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/check/bli_part_check.h b/frame/base/check/bli_part_check.h index 1a1877ace..774cc3aae 100644 --- a/frame/base/check/bli_part_check.h +++ b/frame/base/check/bli_part_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/noopt/bli_dlamch.h b/frame/base/noopt/bli_dlamch.h index a295ab583..9874f25e9 100644 --- a/frame/base/noopt/bli_dlamch.h +++ b/frame/base/noopt/bli_dlamch.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/noopt/bli_lsame.h b/frame/base/noopt/bli_lsame.h index 52c197f76..c709da18c 100644 --- a/frame/base/noopt/bli_lsame.h +++ b/frame/base/noopt/bli_lsame.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/base/noopt/bli_slamch.h b/frame/base/noopt/bli_slamch.h index a16c80b30..bad120411 100644 --- a/frame/base/noopt/bli_slamch.h +++ b/frame/base/noopt/bli_slamch.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/cntl/bli_cntl.c b/frame/cntl/bli_cntl.c index 540f8a944..2ebd8d194 100644 --- a/frame/cntl/bli_cntl.c +++ b/frame/cntl/bli_cntl.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/cntl/bli_cntl.h b/frame/cntl/bli_cntl.h index bdd4afe8c..aa04dddfa 100644 --- a/frame/cntl/bli_cntl.h +++ b/frame/cntl/bli_cntl.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/cntl/bli_cntl_init.c b/frame/cntl/bli_cntl_init.c index 8ee9caefd..11a5bbd82 100644 --- a/frame/cntl/bli_cntl_init.c +++ b/frame/cntl/bli_cntl_init.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/cntl/bli_cntl_init.h b/frame/cntl/bli_cntl_init.h index 7738a4a2e..1a060d4fe 100644 --- a/frame/cntl/bli_cntl_init.h +++ b/frame/cntl/bli_cntl_init.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_gbmv.c b/frame/compat/attic/bla_gbmv.c index 3372a9845..4e037cf28 100644 --- a/frame/compat/attic/bla_gbmv.c +++ b/frame/compat/attic/bla_gbmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_gbmv.h b/frame/compat/attic/bla_gbmv.h index e2dc383f5..e9dcdfe59 100644 --- a/frame/compat/attic/bla_gbmv.h +++ b/frame/compat/attic/bla_gbmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_hbmv.c b/frame/compat/attic/bla_hbmv.c index fcc856677..4fddcb42f 100644 --- a/frame/compat/attic/bla_hbmv.c +++ b/frame/compat/attic/bla_hbmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_hbmv.h b/frame/compat/attic/bla_hbmv.h index c5a828b5a..e6f826541 100644 --- a/frame/compat/attic/bla_hbmv.h +++ b/frame/compat/attic/bla_hbmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_hpmv.c b/frame/compat/attic/bla_hpmv.c index 33a8ced7d..9f37e204e 100644 --- a/frame/compat/attic/bla_hpmv.c +++ b/frame/compat/attic/bla_hpmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_hpmv.h b/frame/compat/attic/bla_hpmv.h index c71d48009..2ada79add 100644 --- a/frame/compat/attic/bla_hpmv.h +++ b/frame/compat/attic/bla_hpmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_hpr.c b/frame/compat/attic/bla_hpr.c index fef952ba8..aa0c80af5 100644 --- a/frame/compat/attic/bla_hpr.c +++ b/frame/compat/attic/bla_hpr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_hpr.h b/frame/compat/attic/bla_hpr.h index 446cf455c..b67655f0b 100644 --- a/frame/compat/attic/bla_hpr.h +++ b/frame/compat/attic/bla_hpr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_hpr2.c b/frame/compat/attic/bla_hpr2.c index a8bb97993..232389653 100644 --- a/frame/compat/attic/bla_hpr2.c +++ b/frame/compat/attic/bla_hpr2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_hpr2.h b/frame/compat/attic/bla_hpr2.h index a5db36b01..9796fef57 100644 --- a/frame/compat/attic/bla_hpr2.h +++ b/frame/compat/attic/bla_hpr2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_rot.c b/frame/compat/attic/bla_rot.c index c1a548f85..7aabc971e 100644 --- a/frame/compat/attic/bla_rot.c +++ b/frame/compat/attic/bla_rot.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_rot.h b/frame/compat/attic/bla_rot.h index 42a6f0765..12caf6568 100644 --- a/frame/compat/attic/bla_rot.h +++ b/frame/compat/attic/bla_rot.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_rotg.c b/frame/compat/attic/bla_rotg.c index 3058efefe..8a5d5a535 100644 --- a/frame/compat/attic/bla_rotg.c +++ b/frame/compat/attic/bla_rotg.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_rotg.h b/frame/compat/attic/bla_rotg.h index 2d79f88d2..1fcf12c74 100644 --- a/frame/compat/attic/bla_rotg.h +++ b/frame/compat/attic/bla_rotg.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_rotm.c b/frame/compat/attic/bla_rotm.c index 3354816eb..f575fc8f0 100644 --- a/frame/compat/attic/bla_rotm.c +++ b/frame/compat/attic/bla_rotm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_rotm.h b/frame/compat/attic/bla_rotm.h index cf9d67395..c26a5277f 100644 --- a/frame/compat/attic/bla_rotm.h +++ b/frame/compat/attic/bla_rotm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_rotmg.c b/frame/compat/attic/bla_rotmg.c index ec0706e1c..68454e72c 100644 --- a/frame/compat/attic/bla_rotmg.c +++ b/frame/compat/attic/bla_rotmg.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_rotmg.h b/frame/compat/attic/bla_rotmg.h index 3b4a5f4e9..a985a3f0a 100644 --- a/frame/compat/attic/bla_rotmg.h +++ b/frame/compat/attic/bla_rotmg.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_sbmv.c b/frame/compat/attic/bla_sbmv.c index daf282a51..cab76ec43 100644 --- a/frame/compat/attic/bla_sbmv.c +++ b/frame/compat/attic/bla_sbmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_sbmv.h b/frame/compat/attic/bla_sbmv.h index 378703155..01ce63d8a 100644 --- a/frame/compat/attic/bla_sbmv.h +++ b/frame/compat/attic/bla_sbmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_spmv.c b/frame/compat/attic/bla_spmv.c index 668777981..47c6be708 100644 --- a/frame/compat/attic/bla_spmv.c +++ b/frame/compat/attic/bla_spmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_spmv.h b/frame/compat/attic/bla_spmv.h index a4bf67f19..2113afac5 100644 --- a/frame/compat/attic/bla_spmv.h +++ b/frame/compat/attic/bla_spmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_spr.c b/frame/compat/attic/bla_spr.c index 6c45b5602..d237ea904 100644 --- a/frame/compat/attic/bla_spr.c +++ b/frame/compat/attic/bla_spr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_spr.h b/frame/compat/attic/bla_spr.h index 96e74dba4..490bf2981 100644 --- a/frame/compat/attic/bla_spr.h +++ b/frame/compat/attic/bla_spr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_spr2.c b/frame/compat/attic/bla_spr2.c index 8ab28680e..b44684055 100644 --- a/frame/compat/attic/bla_spr2.c +++ b/frame/compat/attic/bla_spr2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_spr2.h b/frame/compat/attic/bla_spr2.h index 6b7eecb22..fa2ca1c4b 100644 --- a/frame/compat/attic/bla_spr2.h +++ b/frame/compat/attic/bla_spr2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_tbmv.c b/frame/compat/attic/bla_tbmv.c index 026983e4f..693d2d294 100644 --- a/frame/compat/attic/bla_tbmv.c +++ b/frame/compat/attic/bla_tbmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_tbmv.h b/frame/compat/attic/bla_tbmv.h index a70ba62f2..e1578e382 100644 --- a/frame/compat/attic/bla_tbmv.h +++ b/frame/compat/attic/bla_tbmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_tbsv.c b/frame/compat/attic/bla_tbsv.c index 90527e263..2282a3e93 100644 --- a/frame/compat/attic/bla_tbsv.c +++ b/frame/compat/attic/bla_tbsv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_tbsv.h b/frame/compat/attic/bla_tbsv.h index b9b44a852..483b48a1b 100644 --- a/frame/compat/attic/bla_tbsv.h +++ b/frame/compat/attic/bla_tbsv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_tpmv.c b/frame/compat/attic/bla_tpmv.c index 1b8616dbb..47b5c8ab2 100644 --- a/frame/compat/attic/bla_tpmv.c +++ b/frame/compat/attic/bla_tpmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_tpmv.h b/frame/compat/attic/bla_tpmv.h index 6cfcd67bf..f73546f7e 100644 --- a/frame/compat/attic/bla_tpmv.h +++ b/frame/compat/attic/bla_tpmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_tpsv.c b/frame/compat/attic/bla_tpsv.c index 4e85a4995..e1bb18b9d 100644 --- a/frame/compat/attic/bla_tpsv.c +++ b/frame/compat/attic/bla_tpsv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/attic/bla_tpsv.h b/frame/compat/attic/bla_tpsv.h index 7d8df5316..fdfd17766 100644 --- a/frame/compat/attic/bla_tpsv.h +++ b/frame/compat/attic/bla_tpsv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_amax.c b/frame/compat/bla_amax.c index 3758dd683..c1d6be14f 100644 --- a/frame/compat/bla_amax.c +++ b/frame/compat/bla_amax.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_amax.h b/frame/compat/bla_amax.h index 27d0b8a60..d8f5f1d27 100644 --- a/frame/compat/bla_amax.h +++ b/frame/compat/bla_amax.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_asum.c b/frame/compat/bla_asum.c index c7b36fe32..28d93740a 100644 --- a/frame/compat/bla_asum.c +++ b/frame/compat/bla_asum.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_asum.h b/frame/compat/bla_asum.h index aaf26f1dc..559919c54 100644 --- a/frame/compat/bla_asum.h +++ b/frame/compat/bla_asum.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_axpy.c b/frame/compat/bla_axpy.c index 39b33549d..7c20f4da2 100644 --- a/frame/compat/bla_axpy.c +++ b/frame/compat/bla_axpy.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_axpy.h b/frame/compat/bla_axpy.h index 8950571d6..59cfcfb8b 100644 --- a/frame/compat/bla_axpy.h +++ b/frame/compat/bla_axpy.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_copy.c b/frame/compat/bla_copy.c index 247f1d23c..ac4e70dcf 100644 --- a/frame/compat/bla_copy.c +++ b/frame/compat/bla_copy.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_copy.h b/frame/compat/bla_copy.h index 75d6d73fc..8b3415aac 100644 --- a/frame/compat/bla_copy.h +++ b/frame/compat/bla_copy.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_dot.c b/frame/compat/bla_dot.c index 440a63f97..b253d445e 100644 --- a/frame/compat/bla_dot.c +++ b/frame/compat/bla_dot.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_dot.h b/frame/compat/bla_dot.h index 93b25f1d4..47ae7fe5e 100644 --- a/frame/compat/bla_dot.h +++ b/frame/compat/bla_dot.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_gemm.c b/frame/compat/bla_gemm.c index 7e44d234c..c5daab2f4 100644 --- a/frame/compat/bla_gemm.c +++ b/frame/compat/bla_gemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_gemm.h b/frame/compat/bla_gemm.h index 164ec43e3..0581672ae 100644 --- a/frame/compat/bla_gemm.h +++ b/frame/compat/bla_gemm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_gemv.c b/frame/compat/bla_gemv.c index 5dd5ca275..8acb87511 100644 --- a/frame/compat/bla_gemv.c +++ b/frame/compat/bla_gemv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_gemv.h b/frame/compat/bla_gemv.h index 15dae9bdf..8b21c04fa 100644 --- a/frame/compat/bla_gemv.h +++ b/frame/compat/bla_gemv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_ger.c b/frame/compat/bla_ger.c index b30208cb5..2f571055d 100644 --- a/frame/compat/bla_ger.c +++ b/frame/compat/bla_ger.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_ger.h b/frame/compat/bla_ger.h index 67c09befd..c1f80c20e 100644 --- a/frame/compat/bla_ger.h +++ b/frame/compat/bla_ger.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_hemm.c b/frame/compat/bla_hemm.c index bbd3a8a04..32f6aae8a 100644 --- a/frame/compat/bla_hemm.c +++ b/frame/compat/bla_hemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_hemm.h b/frame/compat/bla_hemm.h index abd9c1974..2547435bc 100644 --- a/frame/compat/bla_hemm.h +++ b/frame/compat/bla_hemm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_hemv.c b/frame/compat/bla_hemv.c index 8dc167689..1191485a9 100644 --- a/frame/compat/bla_hemv.c +++ b/frame/compat/bla_hemv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_hemv.h b/frame/compat/bla_hemv.h index a3e9d0fdb..984959d52 100644 --- a/frame/compat/bla_hemv.h +++ b/frame/compat/bla_hemv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_her.c b/frame/compat/bla_her.c index e082f0f69..a60daf4da 100644 --- a/frame/compat/bla_her.c +++ b/frame/compat/bla_her.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_her.h b/frame/compat/bla_her.h index aac610e48..86233cb66 100644 --- a/frame/compat/bla_her.h +++ b/frame/compat/bla_her.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_her2.c b/frame/compat/bla_her2.c index b6f808f8c..c7b457be0 100644 --- a/frame/compat/bla_her2.c +++ b/frame/compat/bla_her2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_her2.h b/frame/compat/bla_her2.h index 608e33aad..05ad59dc5 100644 --- a/frame/compat/bla_her2.h +++ b/frame/compat/bla_her2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_her2k.c b/frame/compat/bla_her2k.c index 266cfebcb..983ebb36a 100644 --- a/frame/compat/bla_her2k.c +++ b/frame/compat/bla_her2k.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_her2k.h b/frame/compat/bla_her2k.h index 9510a6b8a..d3859bb34 100644 --- a/frame/compat/bla_her2k.h +++ b/frame/compat/bla_her2k.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_herk.c b/frame/compat/bla_herk.c index a8557a240..c64daf9c7 100644 --- a/frame/compat/bla_herk.c +++ b/frame/compat/bla_herk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_herk.h b/frame/compat/bla_herk.h index bb8b9f336..ab2ae35a8 100644 --- a/frame/compat/bla_herk.h +++ b/frame/compat/bla_herk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_nrm2.c b/frame/compat/bla_nrm2.c index 8f199e4a7..e81a8894f 100644 --- a/frame/compat/bla_nrm2.c +++ b/frame/compat/bla_nrm2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_nrm2.h b/frame/compat/bla_nrm2.h index f30056266..aa47dca8e 100644 --- a/frame/compat/bla_nrm2.h +++ b/frame/compat/bla_nrm2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_scal.c b/frame/compat/bla_scal.c index 4f1410f3f..240928f42 100644 --- a/frame/compat/bla_scal.c +++ b/frame/compat/bla_scal.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_scal.h b/frame/compat/bla_scal.h index 49e32854a..965cb28aa 100644 --- a/frame/compat/bla_scal.h +++ b/frame/compat/bla_scal.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_swap.c b/frame/compat/bla_swap.c index a41214ca6..efe7a6425 100644 --- a/frame/compat/bla_swap.c +++ b/frame/compat/bla_swap.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_swap.h b/frame/compat/bla_swap.h index d0a6c9b4a..becef29c8 100644 --- a/frame/compat/bla_swap.h +++ b/frame/compat/bla_swap.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_symm.c b/frame/compat/bla_symm.c index d85539ff6..7b181afc0 100644 --- a/frame/compat/bla_symm.c +++ b/frame/compat/bla_symm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_symm.h b/frame/compat/bla_symm.h index a79ebe4c5..f4a741219 100644 --- a/frame/compat/bla_symm.h +++ b/frame/compat/bla_symm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_symv.c b/frame/compat/bla_symv.c index 8fe0f8d64..07b878dc8 100644 --- a/frame/compat/bla_symv.c +++ b/frame/compat/bla_symv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_symv.h b/frame/compat/bla_symv.h index 38f9d0026..38b380f1c 100644 --- a/frame/compat/bla_symv.h +++ b/frame/compat/bla_symv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_syr.c b/frame/compat/bla_syr.c index e8edbf59c..14119a47b 100644 --- a/frame/compat/bla_syr.c +++ b/frame/compat/bla_syr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_syr.h b/frame/compat/bla_syr.h index c3a285ba0..b8eda89d7 100644 --- a/frame/compat/bla_syr.h +++ b/frame/compat/bla_syr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_syr2.c b/frame/compat/bla_syr2.c index c51301fa0..d17049dd2 100644 --- a/frame/compat/bla_syr2.c +++ b/frame/compat/bla_syr2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_syr2.h b/frame/compat/bla_syr2.h index 723608a73..871e40f0f 100644 --- a/frame/compat/bla_syr2.h +++ b/frame/compat/bla_syr2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_syr2k.c b/frame/compat/bla_syr2k.c index aa5744834..7b6a2e5fd 100644 --- a/frame/compat/bla_syr2k.c +++ b/frame/compat/bla_syr2k.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_syr2k.h b/frame/compat/bla_syr2k.h index 11081b91d..bf53ff67e 100644 --- a/frame/compat/bla_syr2k.h +++ b/frame/compat/bla_syr2k.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_syrk.c b/frame/compat/bla_syrk.c index 69ba443d3..be9ad40f0 100644 --- a/frame/compat/bla_syrk.c +++ b/frame/compat/bla_syrk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_syrk.h b/frame/compat/bla_syrk.h index e68b9769f..11190c53b 100644 --- a/frame/compat/bla_syrk.h +++ b/frame/compat/bla_syrk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_trmm.c b/frame/compat/bla_trmm.c index 18bd9a863..c51f20cad 100644 --- a/frame/compat/bla_trmm.c +++ b/frame/compat/bla_trmm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_trmm.h b/frame/compat/bla_trmm.h index 7d0ff9fa4..bec888119 100644 --- a/frame/compat/bla_trmm.h +++ b/frame/compat/bla_trmm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_trmv.c b/frame/compat/bla_trmv.c index 0060803ff..86b11c1cc 100644 --- a/frame/compat/bla_trmv.c +++ b/frame/compat/bla_trmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_trmv.h b/frame/compat/bla_trmv.h index ce0def79e..e88d2adb7 100644 --- a/frame/compat/bla_trmv.h +++ b/frame/compat/bla_trmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_trsm.c b/frame/compat/bla_trsm.c index 71ee9e3cf..8bbd8da48 100644 --- a/frame/compat/bla_trsm.c +++ b/frame/compat/bla_trsm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_trsm.h b/frame/compat/bla_trsm.h index 992c00215..45c15ba7e 100644 --- a/frame/compat/bla_trsm.h +++ b/frame/compat/bla_trsm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_trsv.c b/frame/compat/bla_trsv.c index 4cde434d2..44d8d54cf 100644 --- a/frame/compat/bla_trsv.c +++ b/frame/compat/bla_trsv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bla_trsv.h b/frame/compat/bla_trsv.h index 5223621de..f04377a81 100644 --- a/frame/compat/bla_trsv.h +++ b/frame/compat/bla_trsv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/bli_blas.h b/frame/compat/bli_blas.h index ef9a55a3a..e4fc24791 100644 --- a/frame/compat/bli_blas.h +++ b/frame/compat/bli_blas.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_gemm_check.c b/frame/compat/check/bla_gemm_check.c index 141dc68c5..11070cabc 100644 --- a/frame/compat/check/bla_gemm_check.c +++ b/frame/compat/check/bla_gemm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_gemm_check.h b/frame/compat/check/bla_gemm_check.h index fd6162591..51aff8ea1 100644 --- a/frame/compat/check/bla_gemm_check.h +++ b/frame/compat/check/bla_gemm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_gemv_check.c b/frame/compat/check/bla_gemv_check.c index fa1635d65..4ab1b639f 100644 --- a/frame/compat/check/bla_gemv_check.c +++ b/frame/compat/check/bla_gemv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_gemv_check.h b/frame/compat/check/bla_gemv_check.h index 938997dbb..6de31d018 100644 --- a/frame/compat/check/bla_gemv_check.h +++ b/frame/compat/check/bla_gemv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_ger_check.c b/frame/compat/check/bla_ger_check.c index 6497f835f..cb0a37b9d 100644 --- a/frame/compat/check/bla_ger_check.c +++ b/frame/compat/check/bla_ger_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_ger_check.h b/frame/compat/check/bla_ger_check.h index 0e1717553..cfd55c023 100644 --- a/frame/compat/check/bla_ger_check.h +++ b/frame/compat/check/bla_ger_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_hemm_check.c b/frame/compat/check/bla_hemm_check.c index 6120024a9..09ee233ca 100644 --- a/frame/compat/check/bla_hemm_check.c +++ b/frame/compat/check/bla_hemm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_hemm_check.h b/frame/compat/check/bla_hemm_check.h index a396d1a2b..3acf44824 100644 --- a/frame/compat/check/bla_hemm_check.h +++ b/frame/compat/check/bla_hemm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_hemv_check.c b/frame/compat/check/bla_hemv_check.c index b80a09614..d6e8a55cc 100644 --- a/frame/compat/check/bla_hemv_check.c +++ b/frame/compat/check/bla_hemv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_hemv_check.h b/frame/compat/check/bla_hemv_check.h index 07be3a855..347db56cd 100644 --- a/frame/compat/check/bla_hemv_check.h +++ b/frame/compat/check/bla_hemv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_her2_check.c b/frame/compat/check/bla_her2_check.c index 1cf07bfda..f1f286d3b 100644 --- a/frame/compat/check/bla_her2_check.c +++ b/frame/compat/check/bla_her2_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_her2_check.h b/frame/compat/check/bla_her2_check.h index 61152d156..d8947289f 100644 --- a/frame/compat/check/bla_her2_check.h +++ b/frame/compat/check/bla_her2_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_her2k_check.c b/frame/compat/check/bla_her2k_check.c index 5fc5fb6b2..202a6db9a 100644 --- a/frame/compat/check/bla_her2k_check.c +++ b/frame/compat/check/bla_her2k_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_her2k_check.h b/frame/compat/check/bla_her2k_check.h index 5a94e0335..0c01d2c5e 100644 --- a/frame/compat/check/bla_her2k_check.h +++ b/frame/compat/check/bla_her2k_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_her_check.c b/frame/compat/check/bla_her_check.c index c8807ac8f..528cf714c 100644 --- a/frame/compat/check/bla_her_check.c +++ b/frame/compat/check/bla_her_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_her_check.h b/frame/compat/check/bla_her_check.h index 38bcc403f..610e04097 100644 --- a/frame/compat/check/bla_her_check.h +++ b/frame/compat/check/bla_her_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_herk_check.c b/frame/compat/check/bla_herk_check.c index 626c999e0..daf261811 100644 --- a/frame/compat/check/bla_herk_check.c +++ b/frame/compat/check/bla_herk_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_herk_check.h b/frame/compat/check/bla_herk_check.h index 13d12c2fe..533dfba10 100644 --- a/frame/compat/check/bla_herk_check.h +++ b/frame/compat/check/bla_herk_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_symm_check.c b/frame/compat/check/bla_symm_check.c index 2d8d114df..c068d1af8 100644 --- a/frame/compat/check/bla_symm_check.c +++ b/frame/compat/check/bla_symm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_symm_check.h b/frame/compat/check/bla_symm_check.h index e40d07f80..447c5392e 100644 --- a/frame/compat/check/bla_symm_check.h +++ b/frame/compat/check/bla_symm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_symv_check.c b/frame/compat/check/bla_symv_check.c index bc85f25e9..27ce15ded 100644 --- a/frame/compat/check/bla_symv_check.c +++ b/frame/compat/check/bla_symv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_symv_check.h b/frame/compat/check/bla_symv_check.h index a5864480d..4cc194bb2 100644 --- a/frame/compat/check/bla_symv_check.h +++ b/frame/compat/check/bla_symv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_syr2_check.c b/frame/compat/check/bla_syr2_check.c index a2ad786f9..60b6cdda5 100644 --- a/frame/compat/check/bla_syr2_check.c +++ b/frame/compat/check/bla_syr2_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_syr2_check.h b/frame/compat/check/bla_syr2_check.h index 3ab8820a6..3c73ffe26 100644 --- a/frame/compat/check/bla_syr2_check.h +++ b/frame/compat/check/bla_syr2_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_syr2k_check.c b/frame/compat/check/bla_syr2k_check.c index fa923fe2e..73e4f0d88 100644 --- a/frame/compat/check/bla_syr2k_check.c +++ b/frame/compat/check/bla_syr2k_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_syr2k_check.h b/frame/compat/check/bla_syr2k_check.h index 7134da6e6..436632b67 100644 --- a/frame/compat/check/bla_syr2k_check.h +++ b/frame/compat/check/bla_syr2k_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_syr_check.c b/frame/compat/check/bla_syr_check.c index 24e3ac312..f364dbe15 100644 --- a/frame/compat/check/bla_syr_check.c +++ b/frame/compat/check/bla_syr_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_syr_check.h b/frame/compat/check/bla_syr_check.h index 6b844317b..249666d7c 100644 --- a/frame/compat/check/bla_syr_check.h +++ b/frame/compat/check/bla_syr_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_syrk_check.c b/frame/compat/check/bla_syrk_check.c index e42ab983d..52687e7b0 100644 --- a/frame/compat/check/bla_syrk_check.c +++ b/frame/compat/check/bla_syrk_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_syrk_check.h b/frame/compat/check/bla_syrk_check.h index 16a89f8da..d24bd1379 100644 --- a/frame/compat/check/bla_syrk_check.h +++ b/frame/compat/check/bla_syrk_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_trmm_check.c b/frame/compat/check/bla_trmm_check.c index 9aa9e99bc..5d48225e6 100644 --- a/frame/compat/check/bla_trmm_check.c +++ b/frame/compat/check/bla_trmm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_trmm_check.h b/frame/compat/check/bla_trmm_check.h index 348781799..f90a22a02 100644 --- a/frame/compat/check/bla_trmm_check.h +++ b/frame/compat/check/bla_trmm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_trmv_check.c b/frame/compat/check/bla_trmv_check.c index 1ff812f64..c95911803 100644 --- a/frame/compat/check/bla_trmv_check.c +++ b/frame/compat/check/bla_trmv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_trmv_check.h b/frame/compat/check/bla_trmv_check.h index eb6c195dd..7149620f7 100644 --- a/frame/compat/check/bla_trmv_check.h +++ b/frame/compat/check/bla_trmv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_trsm_check.c b/frame/compat/check/bla_trsm_check.c index 0a2643906..8ee7bc52e 100644 --- a/frame/compat/check/bla_trsm_check.c +++ b/frame/compat/check/bla_trsm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_trsm_check.h b/frame/compat/check/bla_trsm_check.h index 7ba2c6954..c4c6f3fb5 100644 --- a/frame/compat/check/bla_trsm_check.h +++ b/frame/compat/check/bla_trsm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_trsv_check.c b/frame/compat/check/bla_trsv_check.c index daf981e06..f0086f04a 100644 --- a/frame/compat/check/bla_trsv_check.c +++ b/frame/compat/check/bla_trsv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/check/bla_trsv_check.h b/frame/compat/check/bla_trsv_check.h index 11d6a8524..e4d5e38b9 100644 --- a/frame/compat/check/bla_trsv_check.h +++ b/frame/compat/check/bla_trsv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_gbmv.c b/frame/compat/f2c/bla_gbmv.c index ffa1a4ced..9c535f776 100644 --- a/frame/compat/f2c/bla_gbmv.c +++ b/frame/compat/f2c/bla_gbmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_gbmv.h b/frame/compat/f2c/bla_gbmv.h index 73940dc0e..0d1953335 100644 --- a/frame/compat/f2c/bla_gbmv.h +++ b/frame/compat/f2c/bla_gbmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_hbmv.c b/frame/compat/f2c/bla_hbmv.c index a313cf79b..499843f77 100644 --- a/frame/compat/f2c/bla_hbmv.c +++ b/frame/compat/f2c/bla_hbmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_hbmv.h b/frame/compat/f2c/bla_hbmv.h index e343aa305..f53ddd9d2 100644 --- a/frame/compat/f2c/bla_hbmv.h +++ b/frame/compat/f2c/bla_hbmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_hpmv.c b/frame/compat/f2c/bla_hpmv.c index d42e29370..0ce7b1d79 100644 --- a/frame/compat/f2c/bla_hpmv.c +++ b/frame/compat/f2c/bla_hpmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_hpmv.h b/frame/compat/f2c/bla_hpmv.h index cb1276ed8..0bd31383e 100644 --- a/frame/compat/f2c/bla_hpmv.h +++ b/frame/compat/f2c/bla_hpmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_hpr.c b/frame/compat/f2c/bla_hpr.c index 3242e7454..ddd0428e4 100644 --- a/frame/compat/f2c/bla_hpr.c +++ b/frame/compat/f2c/bla_hpr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_hpr.h b/frame/compat/f2c/bla_hpr.h index 58f0ac59a..0090b4cf4 100644 --- a/frame/compat/f2c/bla_hpr.h +++ b/frame/compat/f2c/bla_hpr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_hpr2.c b/frame/compat/f2c/bla_hpr2.c index fe7e728e3..6505823cf 100644 --- a/frame/compat/f2c/bla_hpr2.c +++ b/frame/compat/f2c/bla_hpr2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_hpr2.h b/frame/compat/f2c/bla_hpr2.h index 1b099267f..b219a471a 100644 --- a/frame/compat/f2c/bla_hpr2.h +++ b/frame/compat/f2c/bla_hpr2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_lsame.c b/frame/compat/f2c/bla_lsame.c index f7bcbd1d9..89c1d9ffe 100644 --- a/frame/compat/f2c/bla_lsame.c +++ b/frame/compat/f2c/bla_lsame.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_lsame.h b/frame/compat/f2c/bla_lsame.h index 05c3f3e69..2bd8c0e37 100644 --- a/frame/compat/f2c/bla_lsame.h +++ b/frame/compat/f2c/bla_lsame.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_rot.c b/frame/compat/f2c/bla_rot.c index 4f845789f..e1d9a0723 100644 --- a/frame/compat/f2c/bla_rot.c +++ b/frame/compat/f2c/bla_rot.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_rot.h b/frame/compat/f2c/bla_rot.h index 4b5470be1..79b3274af 100644 --- a/frame/compat/f2c/bla_rot.h +++ b/frame/compat/f2c/bla_rot.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_rotg.c b/frame/compat/f2c/bla_rotg.c index e1c78489c..3e09ff8db 100644 --- a/frame/compat/f2c/bla_rotg.c +++ b/frame/compat/f2c/bla_rotg.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_rotg.h b/frame/compat/f2c/bla_rotg.h index 99a009959..0bd872381 100644 --- a/frame/compat/f2c/bla_rotg.h +++ b/frame/compat/f2c/bla_rotg.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_rotm.c b/frame/compat/f2c/bla_rotm.c index 9d6fe9326..6c5d60d01 100644 --- a/frame/compat/f2c/bla_rotm.c +++ b/frame/compat/f2c/bla_rotm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_rotm.h b/frame/compat/f2c/bla_rotm.h index 6687b70cd..9a04f7281 100644 --- a/frame/compat/f2c/bla_rotm.h +++ b/frame/compat/f2c/bla_rotm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_rotmg.c b/frame/compat/f2c/bla_rotmg.c index 522b74e21..d8fac89b9 100644 --- a/frame/compat/f2c/bla_rotmg.c +++ b/frame/compat/f2c/bla_rotmg.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_rotmg.h b/frame/compat/f2c/bla_rotmg.h index 86e9e4c43..d4ab1da82 100644 --- a/frame/compat/f2c/bla_rotmg.h +++ b/frame/compat/f2c/bla_rotmg.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_sbmv.c b/frame/compat/f2c/bla_sbmv.c index 047adbb78..d1c2cff0a 100644 --- a/frame/compat/f2c/bla_sbmv.c +++ b/frame/compat/f2c/bla_sbmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_sbmv.h b/frame/compat/f2c/bla_sbmv.h index a891548dc..f5463b66e 100644 --- a/frame/compat/f2c/bla_sbmv.h +++ b/frame/compat/f2c/bla_sbmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_spmv.c b/frame/compat/f2c/bla_spmv.c index aa6d25d73..7c616c8d0 100644 --- a/frame/compat/f2c/bla_spmv.c +++ b/frame/compat/f2c/bla_spmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_spmv.h b/frame/compat/f2c/bla_spmv.h index 3ea215b48..3449bbd25 100644 --- a/frame/compat/f2c/bla_spmv.h +++ b/frame/compat/f2c/bla_spmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_spr.c b/frame/compat/f2c/bla_spr.c index 5ba0ae8ae..f336f100b 100644 --- a/frame/compat/f2c/bla_spr.c +++ b/frame/compat/f2c/bla_spr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_spr.h b/frame/compat/f2c/bla_spr.h index 2fd852204..43592b4c4 100644 --- a/frame/compat/f2c/bla_spr.h +++ b/frame/compat/f2c/bla_spr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_spr2.c b/frame/compat/f2c/bla_spr2.c index 07fb7571a..8adde1edd 100644 --- a/frame/compat/f2c/bla_spr2.c +++ b/frame/compat/f2c/bla_spr2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_spr2.h b/frame/compat/f2c/bla_spr2.h index 7001e31f7..bbfeddbf1 100644 --- a/frame/compat/f2c/bla_spr2.h +++ b/frame/compat/f2c/bla_spr2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_tbmv.c b/frame/compat/f2c/bla_tbmv.c index 8dbaa6402..1aa7cef4b 100644 --- a/frame/compat/f2c/bla_tbmv.c +++ b/frame/compat/f2c/bla_tbmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_tbmv.h b/frame/compat/f2c/bla_tbmv.h index 2c271eb83..9ae40e99d 100644 --- a/frame/compat/f2c/bla_tbmv.h +++ b/frame/compat/f2c/bla_tbmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_tbsv.c b/frame/compat/f2c/bla_tbsv.c index 1f8945b86..7d48baabf 100644 --- a/frame/compat/f2c/bla_tbsv.c +++ b/frame/compat/f2c/bla_tbsv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_tbsv.h b/frame/compat/f2c/bla_tbsv.h index 026e7bed0..8314eb087 100644 --- a/frame/compat/f2c/bla_tbsv.h +++ b/frame/compat/f2c/bla_tbsv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_tpmv.c b/frame/compat/f2c/bla_tpmv.c index 51a4a2c13..903a267ee 100644 --- a/frame/compat/f2c/bla_tpmv.c +++ b/frame/compat/f2c/bla_tpmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_tpmv.h b/frame/compat/f2c/bla_tpmv.h index b753e91c0..bed1da0d8 100644 --- a/frame/compat/f2c/bla_tpmv.h +++ b/frame/compat/f2c/bla_tpmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_tpsv.c b/frame/compat/f2c/bla_tpsv.c index fa62d2a0f..80301ea58 100644 --- a/frame/compat/f2c/bla_tpsv.c +++ b/frame/compat/f2c/bla_tpsv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_tpsv.h b/frame/compat/f2c/bla_tpsv.h index fd7a71bbb..9fae101fe 100644 --- a/frame/compat/f2c/bla_tpsv.h +++ b/frame/compat/f2c/bla_tpsv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_xerbla.c b/frame/compat/f2c/bla_xerbla.c index 806801944..193fc5677 100644 --- a/frame/compat/f2c/bla_xerbla.c +++ b/frame/compat/f2c/bla_xerbla.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/bla_xerbla.h b/frame/compat/f2c/bla_xerbla.h index 876bd7992..df819f441 100644 --- a/frame/compat/f2c/bla_xerbla.h +++ b/frame/compat/f2c/bla_xerbla.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_c_abs.c b/frame/compat/f2c/util/bla_c_abs.c index bb8938d0c..70d84880b 100644 --- a/frame/compat/f2c/util/bla_c_abs.c +++ b/frame/compat/f2c/util/bla_c_abs.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_c_abs.h b/frame/compat/f2c/util/bla_c_abs.h index 09f213a89..b7882542f 100644 --- a/frame/compat/f2c/util/bla_c_abs.h +++ b/frame/compat/f2c/util/bla_c_abs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_c_div.c b/frame/compat/f2c/util/bla_c_div.c index b66dbe55d..d2708dcfc 100644 --- a/frame/compat/f2c/util/bla_c_div.c +++ b/frame/compat/f2c/util/bla_c_div.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_c_div.h b/frame/compat/f2c/util/bla_c_div.h index 07aca0f42..d53a50641 100644 --- a/frame/compat/f2c/util/bla_c_div.h +++ b/frame/compat/f2c/util/bla_c_div.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_d_abs.c b/frame/compat/f2c/util/bla_d_abs.c index 749ec91e0..5134f8e93 100644 --- a/frame/compat/f2c/util/bla_d_abs.c +++ b/frame/compat/f2c/util/bla_d_abs.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_d_abs.h b/frame/compat/f2c/util/bla_d_abs.h index bca62a70c..d447b0fd1 100644 --- a/frame/compat/f2c/util/bla_d_abs.h +++ b/frame/compat/f2c/util/bla_d_abs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_d_cnjg.c b/frame/compat/f2c/util/bla_d_cnjg.c index 44a9dd0a0..e712c5e64 100644 --- a/frame/compat/f2c/util/bla_d_cnjg.c +++ b/frame/compat/f2c/util/bla_d_cnjg.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_d_cnjg.h b/frame/compat/f2c/util/bla_d_cnjg.h index 643cbbc57..49753017e 100644 --- a/frame/compat/f2c/util/bla_d_cnjg.h +++ b/frame/compat/f2c/util/bla_d_cnjg.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_d_imag.c b/frame/compat/f2c/util/bla_d_imag.c index 60d522d16..aa1b8403a 100644 --- a/frame/compat/f2c/util/bla_d_imag.c +++ b/frame/compat/f2c/util/bla_d_imag.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_d_imag.h b/frame/compat/f2c/util/bla_d_imag.h index c92fe35ee..f9e75dde0 100644 --- a/frame/compat/f2c/util/bla_d_imag.h +++ b/frame/compat/f2c/util/bla_d_imag.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_d_sign.c b/frame/compat/f2c/util/bla_d_sign.c index 11f8d40e3..1750ceb91 100644 --- a/frame/compat/f2c/util/bla_d_sign.c +++ b/frame/compat/f2c/util/bla_d_sign.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_d_sign.h b/frame/compat/f2c/util/bla_d_sign.h index 7501bfa35..e0a9f2ff2 100644 --- a/frame/compat/f2c/util/bla_d_sign.h +++ b/frame/compat/f2c/util/bla_d_sign.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_f__cabs.c b/frame/compat/f2c/util/bla_f__cabs.c index c6287156f..1bbe79d7c 100644 --- a/frame/compat/f2c/util/bla_f__cabs.c +++ b/frame/compat/f2c/util/bla_f__cabs.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_f__cabs.h b/frame/compat/f2c/util/bla_f__cabs.h index 22c14537d..cbd67ded7 100644 --- a/frame/compat/f2c/util/bla_f__cabs.h +++ b/frame/compat/f2c/util/bla_f__cabs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_r_abs.c b/frame/compat/f2c/util/bla_r_abs.c index 956e45b75..2f09af824 100644 --- a/frame/compat/f2c/util/bla_r_abs.c +++ b/frame/compat/f2c/util/bla_r_abs.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_r_abs.h b/frame/compat/f2c/util/bla_r_abs.h index d548cfd31..5fa8e71e5 100644 --- a/frame/compat/f2c/util/bla_r_abs.h +++ b/frame/compat/f2c/util/bla_r_abs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_r_cnjg.c b/frame/compat/f2c/util/bla_r_cnjg.c index f123b2938..921484b6e 100644 --- a/frame/compat/f2c/util/bla_r_cnjg.c +++ b/frame/compat/f2c/util/bla_r_cnjg.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_r_cnjg.h b/frame/compat/f2c/util/bla_r_cnjg.h index 111aa757c..cf8be253e 100644 --- a/frame/compat/f2c/util/bla_r_cnjg.h +++ b/frame/compat/f2c/util/bla_r_cnjg.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_r_imag.c b/frame/compat/f2c/util/bla_r_imag.c index 67e8fa969..92be2e7fe 100644 --- a/frame/compat/f2c/util/bla_r_imag.c +++ b/frame/compat/f2c/util/bla_r_imag.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_r_imag.h b/frame/compat/f2c/util/bla_r_imag.h index 01f7642c5..1bc74e16d 100644 --- a/frame/compat/f2c/util/bla_r_imag.h +++ b/frame/compat/f2c/util/bla_r_imag.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_r_sign.c b/frame/compat/f2c/util/bla_r_sign.c index 3f425a02d..bec7cf80c 100644 --- a/frame/compat/f2c/util/bla_r_sign.c +++ b/frame/compat/f2c/util/bla_r_sign.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_r_sign.h b/frame/compat/f2c/util/bla_r_sign.h index d505fb60c..a8211bfb2 100644 --- a/frame/compat/f2c/util/bla_r_sign.h +++ b/frame/compat/f2c/util/bla_r_sign.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_z_abs.c b/frame/compat/f2c/util/bla_z_abs.c index 4833f214c..afe72af6f 100644 --- a/frame/compat/f2c/util/bla_z_abs.c +++ b/frame/compat/f2c/util/bla_z_abs.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_z_abs.h b/frame/compat/f2c/util/bla_z_abs.h index 80cbe5d6f..517b26cea 100644 --- a/frame/compat/f2c/util/bla_z_abs.h +++ b/frame/compat/f2c/util/bla_z_abs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_z_div.c b/frame/compat/f2c/util/bla_z_div.c index 12d1d1a62..cc58eb3ad 100644 --- a/frame/compat/f2c/util/bla_z_div.c +++ b/frame/compat/f2c/util/bla_z_div.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/compat/f2c/util/bla_z_div.h b/frame/compat/f2c/util/bla_z_div.h index 1e7c97fe1..3f83aaff5 100644 --- a/frame/compat/f2c/util/bla_z_div.h +++ b/frame/compat/f2c/util/bla_z_div.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_auxinfo_macro_defs.h b/frame/include/bli_auxinfo_macro_defs.h index 0279b7cd2..3e8d162a2 100644 --- a/frame/include/bli_auxinfo_macro_defs.h +++ b/frame/include/bli_auxinfo_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_blas_macro_defs.h b/frame/include/bli_blas_macro_defs.h index 35c6b1bfb..27b642b47 100644 --- a/frame/include/bli_blas_macro_defs.h +++ b/frame/include/bli_blas_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_complex_macro_defs.h b/frame/include/bli_complex_macro_defs.h index c107dffdf..93570568c 100644 --- a/frame/include/bli_complex_macro_defs.h +++ b/frame/include/bli_complex_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_error_macro_defs.h b/frame/include/bli_error_macro_defs.h index 9773dc1c6..e47ee0b14 100644 --- a/frame/include/bli_error_macro_defs.h +++ b/frame/include/bli_error_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_extern_defs.h b/frame/include/bli_extern_defs.h index 7b2a2dfd4..78abcc1ff 100644 --- a/frame/include/bli_extern_defs.h +++ b/frame/include/bli_extern_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_genarray_macro_defs.h b/frame/include/bli_genarray_macro_defs.h index 92f935a74..6423fbff1 100644 --- a/frame/include/bli_genarray_macro_defs.h +++ b/frame/include/bli_genarray_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_gentfunc_macro_defs.h b/frame/include/bli_gentfunc_macro_defs.h index 12b104748..3f57afd43 100644 --- a/frame/include/bli_gentfunc_macro_defs.h +++ b/frame/include/bli_gentfunc_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_gentprot_macro_defs.h b/frame/include/bli_gentprot_macro_defs.h index 4d0f211f4..83dc3784f 100644 --- a/frame/include/bli_gentprot_macro_defs.h +++ b/frame/include/bli_gentprot_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_kernel_3m_macro_defs.h b/frame/include/bli_kernel_3m_macro_defs.h index 20d96ebc7..706335115 100644 --- a/frame/include/bli_kernel_3m_macro_defs.h +++ b/frame/include/bli_kernel_3m_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_kernel_4m_macro_defs.h b/frame/include/bli_kernel_4m_macro_defs.h index bb0cbd379..b8cd8a8f3 100644 --- a/frame/include/bli_kernel_4m_macro_defs.h +++ b/frame/include/bli_kernel_4m_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_kernel_macro_defs.h b/frame/include/bli_kernel_macro_defs.h index 1381babb0..580fbbf67 100644 --- a/frame/include/bli_kernel_macro_defs.h +++ b/frame/include/bli_kernel_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_kernel_post_macro_defs.h b/frame/include/bli_kernel_post_macro_defs.h index 6818c32b1..e628204b7 100644 --- a/frame/include/bli_kernel_post_macro_defs.h +++ b/frame/include/bli_kernel_post_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_kernel_pre_macro_defs.h b/frame/include/bli_kernel_pre_macro_defs.h index d9974cfde..ad924d009 100644 --- a/frame/include/bli_kernel_pre_macro_defs.h +++ b/frame/include/bli_kernel_pre_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_kernel_prototypes.h b/frame/include/bli_kernel_prototypes.h index 10849dc9b..a28db4dbc 100644 --- a/frame/include/bli_kernel_prototypes.h +++ b/frame/include/bli_kernel_prototypes.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_kernel_type_defs.h b/frame/include/bli_kernel_type_defs.h index 48812e0fd..aff3de0a0 100644 --- a/frame/include/bli_kernel_type_defs.h +++ b/frame/include/bli_kernel_type_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_macro_defs.h b/frame/include/bli_macro_defs.h index e3bc91cea..cf9b28bf8 100644 --- a/frame/include/bli_macro_defs.h +++ b/frame/include/bli_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_mem_macro_defs.h b/frame/include/bli_mem_macro_defs.h index 4cdd44a99..88a19dbcb 100644 --- a/frame/include/bli_mem_macro_defs.h +++ b/frame/include/bli_mem_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_mem_pool_macro_defs.h b/frame/include/bli_mem_pool_macro_defs.h index b3fe7a3c7..0af43db1e 100644 --- a/frame/include/bli_mem_pool_macro_defs.h +++ b/frame/include/bli_mem_pool_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_obj_macro_defs.h b/frame/include/bli_obj_macro_defs.h index 346b50a06..b3294c41d 100644 --- a/frame/include/bli_obj_macro_defs.h +++ b/frame/include/bli_obj_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_param_macro_defs.h b/frame/include/bli_param_macro_defs.h index c235e420e..f0ba952ee 100644 --- a/frame/include/bli_param_macro_defs.h +++ b/frame/include/bli_param_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_pool_macro_defs.h b/frame/include/bli_pool_macro_defs.h index b68f0ee55..2407b6553 100644 --- a/frame/include/bli_pool_macro_defs.h +++ b/frame/include/bli_pool_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_scalar_macro_defs.h b/frame/include/bli_scalar_macro_defs.h index dd9b77c4f..98605276a 100644 --- a/frame/include/bli_scalar_macro_defs.h +++ b/frame/include/bli_scalar_macro_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_system.h b/frame/include/bli_system.h index 5e93e92f4..c473a404f 100644 --- a/frame/include/bli_system.h +++ b/frame/include/bli_system.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/bli_type_defs.h b/frame/include/bli_type_defs.h index 7fb4f1d52..4c7122c90 100644 --- a/frame/include/bli_type_defs.h +++ b/frame/include/bli_type_defs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/blis.h b/frame/include/blis.h index df30b58a7..6ce853114 100644 --- a/frame/include/blis.h +++ b/frame/include/blis.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_absq2s.h b/frame/include/level0/bli_absq2s.h index 72b83c034..091c606ed 100644 --- a/frame/include/level0/bli_absq2s.h +++ b/frame/include/level0/bli_absq2s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_abval2s.h b/frame/include/level0/bli_abval2s.h index bbae707fb..899422182 100644 --- a/frame/include/level0/bli_abval2s.h +++ b/frame/include/level0/bli_abval2s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_add3s.h b/frame/include/level0/bli_add3s.h index 89a0e69d5..ad9472899 100644 --- a/frame/include/level0/bli_add3s.h +++ b/frame/include/level0/bli_add3s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_addjs.h b/frame/include/level0/bli_addjs.h index d5c0135e1..ccfbe04cf 100644 --- a/frame/include/level0/bli_addjs.h +++ b/frame/include/level0/bli_addjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_adds.h b/frame/include/level0/bli_adds.h index 4b742b47e..0a6315f89 100644 --- a/frame/include/level0/bli_adds.h +++ b/frame/include/level0/bli_adds.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_adds_mxn.h b/frame/include/level0/bli_adds_mxn.h index 52fd0355b..a8676fcaf 100644 --- a/frame/include/level0/bli_adds_mxn.h +++ b/frame/include/level0/bli_adds_mxn.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_adds_mxn_uplo.h b/frame/include/level0/bli_adds_mxn_uplo.h index d9e769164..cffc87286 100644 --- a/frame/include/level0/bli_adds_mxn_uplo.h +++ b/frame/include/level0/bli_adds_mxn_uplo.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_axmys.h b/frame/include/level0/bli_axmys.h index 44842a2b0..146f58e3a 100644 --- a/frame/include/level0/bli_axmys.h +++ b/frame/include/level0/bli_axmys.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_axpyjs.h b/frame/include/level0/bli_axpyjs.h index 69aaa86cf..378ff7873 100644 --- a/frame/include/level0/bli_axpyjs.h +++ b/frame/include/level0/bli_axpyjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_axpys.h b/frame/include/level0/bli_axpys.h index 93e18e19c..f0b2ef465 100644 --- a/frame/include/level0/bli_axpys.h +++ b/frame/include/level0/bli_axpys.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_cast.h b/frame/include/level0/bli_cast.h index 1cd91d8bb..8a90cef72 100644 --- a/frame/include/level0/bli_cast.h +++ b/frame/include/level0/bli_cast.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_conjs.h b/frame/include/level0/bli_conjs.h index 12fdafa53..ece0245c0 100644 --- a/frame/include/level0/bli_conjs.h +++ b/frame/include/level0/bli_conjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_constants.h b/frame/include/level0/bli_constants.h index d75314dd6..840a5fb6d 100644 --- a/frame/include/level0/bli_constants.h +++ b/frame/include/level0/bli_constants.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_copycjs.h b/frame/include/level0/bli_copycjs.h index 588e5e288..699839ec6 100644 --- a/frame/include/level0/bli_copycjs.h +++ b/frame/include/level0/bli_copycjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_copyjs.h b/frame/include/level0/bli_copyjs.h index 831cb2eea..55f92d2da 100644 --- a/frame/include/level0/bli_copyjs.h +++ b/frame/include/level0/bli_copyjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_copys.h b/frame/include/level0/bli_copys.h index e58f01819..9cb6e0233 100644 --- a/frame/include/level0/bli_copys.h +++ b/frame/include/level0/bli_copys.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_copys_mxn.h b/frame/include/level0/bli_copys_mxn.h index a9519a529..388a06694 100644 --- a/frame/include/level0/bli_copys_mxn.h +++ b/frame/include/level0/bli_copys_mxn.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_dotjs.h b/frame/include/level0/bli_dotjs.h index 6b1661bef..b88b0f054 100644 --- a/frame/include/level0/bli_dotjs.h +++ b/frame/include/level0/bli_dotjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_dots.h b/frame/include/level0/bli_dots.h index 2c3be4e61..2aea2d784 100644 --- a/frame/include/level0/bli_dots.h +++ b/frame/include/level0/bli_dots.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_eq.h b/frame/include/level0/bli_eq.h index 3df3babee..b9ba13005 100644 --- a/frame/include/level0/bli_eq.h +++ b/frame/include/level0/bli_eq.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_fprints.h b/frame/include/level0/bli_fprints.h index f24517e2b..4d9952f90 100644 --- a/frame/include/level0/bli_fprints.h +++ b/frame/include/level0/bli_fprints.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_gets.h b/frame/include/level0/bli_gets.h index 70a32b43b..4b8497e76 100644 --- a/frame/include/level0/bli_gets.h +++ b/frame/include/level0/bli_gets.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_inverts.h b/frame/include/level0/bli_inverts.h index 85072fe6c..d4e97dd22 100644 --- a/frame/include/level0/bli_inverts.h +++ b/frame/include/level0/bli_inverts.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_invscaljs.h b/frame/include/level0/bli_invscaljs.h index c39d38a45..e859787c9 100644 --- a/frame/include/level0/bli_invscaljs.h +++ b/frame/include/level0/bli_invscaljs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_invscals.h b/frame/include/level0/bli_invscals.h index e0c624a8c..b7a3b37fe 100644 --- a/frame/include/level0/bli_invscals.h +++ b/frame/include/level0/bli_invscals.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_neg2s.h b/frame/include/level0/bli_neg2s.h index 708bef401..95e4afac1 100644 --- a/frame/include/level0/bli_neg2s.h +++ b/frame/include/level0/bli_neg2s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_rands.h b/frame/include/level0/bli_rands.h index 530a1e3d1..157fd421b 100644 --- a/frame/include/level0/bli_rands.h +++ b/frame/include/level0/bli_rands.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_scal2js.h b/frame/include/level0/bli_scal2js.h index 64d1da062..f27e5742d 100644 --- a/frame/include/level0/bli_scal2js.h +++ b/frame/include/level0/bli_scal2js.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_scal2s.h b/frame/include/level0/bli_scal2s.h index cb60f01c9..3d7292696 100644 --- a/frame/include/level0/bli_scal2s.h +++ b/frame/include/level0/bli_scal2s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_scalcjs.h b/frame/include/level0/bli_scalcjs.h index 29ebd452f..bddb7e859 100644 --- a/frame/include/level0/bli_scalcjs.h +++ b/frame/include/level0/bli_scalcjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_scaljs.h b/frame/include/level0/bli_scaljs.h index 7d616fb63..5dfd8e6ec 100644 --- a/frame/include/level0/bli_scaljs.h +++ b/frame/include/level0/bli_scaljs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_scals.h b/frame/include/level0/bli_scals.h index 1b0254a80..eb78be531 100644 --- a/frame/include/level0/bli_scals.h +++ b/frame/include/level0/bli_scals.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_set0s.h b/frame/include/level0/bli_set0s.h index 3064b8aca..55bdba683 100644 --- a/frame/include/level0/bli_set0s.h +++ b/frame/include/level0/bli_set0s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_set0s_mxn.h b/frame/include/level0/bli_set0s_mxn.h index 2c2ad62d2..94887d571 100644 --- a/frame/include/level0/bli_set0s_mxn.h +++ b/frame/include/level0/bli_set0s_mxn.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_set1s.h b/frame/include/level0/bli_set1s.h index b7e3cdf56..3bf7377bf 100644 --- a/frame/include/level0/bli_set1s.h +++ b/frame/include/level0/bli_set1s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_seti0s.h b/frame/include/level0/bli_seti0s.h index 3ec365938..a658547c7 100644 --- a/frame/include/level0/bli_seti0s.h +++ b/frame/include/level0/bli_seti0s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_setis.h b/frame/include/level0/bli_setis.h index 17b94f0bc..c246dead5 100644 --- a/frame/include/level0/bli_setis.h +++ b/frame/include/level0/bli_setis.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_setrs.h b/frame/include/level0/bli_setrs.h index 34a10ed3a..ed9be8adb 100644 --- a/frame/include/level0/bli_setrs.h +++ b/frame/include/level0/bli_setrs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_sets.h b/frame/include/level0/bli_sets.h index 7b56370d5..c836c5aca 100644 --- a/frame/include/level0/bli_sets.h +++ b/frame/include/level0/bli_sets.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_sqrt2s.h b/frame/include/level0/bli_sqrt2s.h index d74a8e9bb..38b2fba48 100644 --- a/frame/include/level0/bli_sqrt2s.h +++ b/frame/include/level0/bli_sqrt2s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_subjs.h b/frame/include/level0/bli_subjs.h index 68d101334..a70504b33 100644 --- a/frame/include/level0/bli_subjs.h +++ b/frame/include/level0/bli_subjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_subs.h b/frame/include/level0/bli_subs.h index eeeeed39e..255cc8454 100644 --- a/frame/include/level0/bli_subs.h +++ b/frame/include/level0/bli_subs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_swaps.h b/frame/include/level0/bli_swaps.h index dace2032f..2301e99d7 100644 --- a/frame/include/level0/bli_swaps.h +++ b/frame/include/level0/bli_swaps.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_xpbys.h b/frame/include/level0/bli_xpbys.h index 75e7d004f..e1d500c29 100644 --- a/frame/include/level0/bli_xpbys.h +++ b/frame/include/level0/bli_xpbys.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_xpbys_mxn.h b/frame/include/level0/bli_xpbys_mxn.h index 511e0b452..96def1070 100644 --- a/frame/include/level0/bli_xpbys_mxn.h +++ b/frame/include/level0/bli_xpbys_mxn.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/bli_xpbys_mxn_uplo.h b/frame/include/level0/bli_xpbys_mxn_uplo.h index b2681e333..1f5d0fb02 100644 --- a/frame/include/level0/bli_xpbys_mxn_uplo.h +++ b/frame/include/level0/bli_xpbys_mxn_uplo.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/old/bli_castfrom.h b/frame/include/level0/old/bli_castfrom.h index 811fed073..ca466ece9 100644 --- a/frame/include/level0/old/bli_castfrom.h +++ b/frame/include/level0/old/bli_castfrom.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/old/bli_castto.h b/frame/include/level0/old/bli_castto.h index 811fed073..ca466ece9 100644 --- a/frame/include/level0/old/bli_castto.h +++ b/frame/include/level0/old/bli_castto.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/old/bli_copynzjs.h b/frame/include/level0/old/bli_copynzjs.h index 1502c299e..494ae1a74 100644 --- a/frame/include/level0/old/bli_copynzjs.h +++ b/frame/include/level0/old/bli_copynzjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/old/bli_copynzs.h b/frame/include/level0/old/bli_copynzs.h index 0ac3f88b3..44547b74c 100644 --- a/frame/include/level0/old/bli_copynzs.h +++ b/frame/include/level0/old/bli_copynzs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/old/bli_invscalcjs.h b/frame/include/level0/old/bli_invscalcjs.h index fb11ff4d7..faa74c930 100644 --- a/frame/include/level0/old/bli_invscalcjs.h +++ b/frame/include/level0/old/bli_invscalcjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/old/bli_scalcjs.h b/frame/include/level0/old/bli_scalcjs.h index 8e19a781e..e2fde9ca5 100644 --- a/frame/include/level0/old/bli_scalcjs.h +++ b/frame/include/level0/old/bli_scalcjs.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/old/bli_set0ris_mxn.h b/frame/include/level0/old/bli_set0ris_mxn.h index b3b89c870..6f2a379a1 100644 --- a/frame/include/level0/old/bli_set0ris_mxn.h +++ b/frame/include/level0/old/bli_set0ris_mxn.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_absq2ris.h b/frame/include/level0/ri/bli_absq2ris.h index f64e1cc3d..b7e441c3d 100644 --- a/frame/include/level0/ri/bli_absq2ris.h +++ b/frame/include/level0/ri/bli_absq2ris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_abval2ris.h b/frame/include/level0/ri/bli_abval2ris.h index 6d11a593e..7007a04a5 100644 --- a/frame/include/level0/ri/bli_abval2ris.h +++ b/frame/include/level0/ri/bli_abval2ris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_add3ris.h b/frame/include/level0/ri/bli_add3ris.h index 1033b8b7a..37cb84a93 100644 --- a/frame/include/level0/ri/bli_add3ris.h +++ b/frame/include/level0/ri/bli_add3ris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_addjris.h b/frame/include/level0/ri/bli_addjris.h index 7d8a5b626..f110146c2 100644 --- a/frame/include/level0/ri/bli_addjris.h +++ b/frame/include/level0/ri/bli_addjris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_addris.h b/frame/include/level0/ri/bli_addris.h index 09bd91be8..7b4451b58 100644 --- a/frame/include/level0/ri/bli_addris.h +++ b/frame/include/level0/ri/bli_addris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_axmyris.h b/frame/include/level0/ri/bli_axmyris.h index 6c2c7e22f..98940c9b2 100644 --- a/frame/include/level0/ri/bli_axmyris.h +++ b/frame/include/level0/ri/bli_axmyris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_axpbyris.h b/frame/include/level0/ri/bli_axpbyris.h index 5180056e6..6997f745f 100644 --- a/frame/include/level0/ri/bli_axpbyris.h +++ b/frame/include/level0/ri/bli_axpbyris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_axpyjris.h b/frame/include/level0/ri/bli_axpyjris.h index d8b519090..2b3ed42b7 100644 --- a/frame/include/level0/ri/bli_axpyjris.h +++ b/frame/include/level0/ri/bli_axpyjris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_axpyris.h b/frame/include/level0/ri/bli_axpyris.h index 1a30781b7..ebcf6666f 100644 --- a/frame/include/level0/ri/bli_axpyris.h +++ b/frame/include/level0/ri/bli_axpyris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_conjris.h b/frame/include/level0/ri/bli_conjris.h index cf005a7e9..425b41534 100644 --- a/frame/include/level0/ri/bli_conjris.h +++ b/frame/include/level0/ri/bli_conjris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_copycjris.h b/frame/include/level0/ri/bli_copycjris.h index 154787548..5176553ea 100644 --- a/frame/include/level0/ri/bli_copycjris.h +++ b/frame/include/level0/ri/bli_copycjris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_copyjris.h b/frame/include/level0/ri/bli_copyjris.h index 6528addc4..2ba3a1920 100644 --- a/frame/include/level0/ri/bli_copyjris.h +++ b/frame/include/level0/ri/bli_copyjris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_copyris.h b/frame/include/level0/ri/bli_copyris.h index dfe9c0f4f..625d48a32 100644 --- a/frame/include/level0/ri/bli_copyris.h +++ b/frame/include/level0/ri/bli_copyris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_eqri.h b/frame/include/level0/ri/bli_eqri.h index 1698220aa..f89c45b37 100644 --- a/frame/include/level0/ri/bli_eqri.h +++ b/frame/include/level0/ri/bli_eqri.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_invertris.h b/frame/include/level0/ri/bli_invertris.h index 9bc24fd5f..ced294e78 100644 --- a/frame/include/level0/ri/bli_invertris.h +++ b/frame/include/level0/ri/bli_invertris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_invscaljris.h b/frame/include/level0/ri/bli_invscaljris.h index 2428d8273..f311d0209 100644 --- a/frame/include/level0/ri/bli_invscaljris.h +++ b/frame/include/level0/ri/bli_invscaljris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_invscalris.h b/frame/include/level0/ri/bli_invscalris.h index bedbc688a..1b2d7f3ba 100644 --- a/frame/include/level0/ri/bli_invscalris.h +++ b/frame/include/level0/ri/bli_invscalris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_neg2ris.h b/frame/include/level0/ri/bli_neg2ris.h index 476bc9ce3..5fe771c90 100644 --- a/frame/include/level0/ri/bli_neg2ris.h +++ b/frame/include/level0/ri/bli_neg2ris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_scal2jris.h b/frame/include/level0/ri/bli_scal2jris.h index 5b1746473..f289eb564 100644 --- a/frame/include/level0/ri/bli_scal2jris.h +++ b/frame/include/level0/ri/bli_scal2jris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_scal2ris.h b/frame/include/level0/ri/bli_scal2ris.h index d152d2612..f7df79f8f 100644 --- a/frame/include/level0/ri/bli_scal2ris.h +++ b/frame/include/level0/ri/bli_scal2ris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_scalcjris.h b/frame/include/level0/ri/bli_scalcjris.h index 9d2b7f628..69f000e2d 100644 --- a/frame/include/level0/ri/bli_scalcjris.h +++ b/frame/include/level0/ri/bli_scalcjris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_scaljris.h b/frame/include/level0/ri/bli_scaljris.h index a29b3532e..0cd3dfe81 100644 --- a/frame/include/level0/ri/bli_scaljris.h +++ b/frame/include/level0/ri/bli_scaljris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_scalris.h b/frame/include/level0/ri/bli_scalris.h index 38bab136c..23a489cfb 100644 --- a/frame/include/level0/ri/bli_scalris.h +++ b/frame/include/level0/ri/bli_scalris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_scalris_mxn_uplo.h b/frame/include/level0/ri/bli_scalris_mxn_uplo.h index ceaa02896..616511e97 100644 --- a/frame/include/level0/ri/bli_scalris_mxn_uplo.h +++ b/frame/include/level0/ri/bli_scalris_mxn_uplo.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_set0ris.h b/frame/include/level0/ri/bli_set0ris.h index 7a0e72912..846ee6dc9 100644 --- a/frame/include/level0/ri/bli_set0ris.h +++ b/frame/include/level0/ri/bli_set0ris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_sqrt2ris.h b/frame/include/level0/ri/bli_sqrt2ris.h index 72487f36b..c211fea0e 100644 --- a/frame/include/level0/ri/bli_sqrt2ris.h +++ b/frame/include/level0/ri/bli_sqrt2ris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_subjris.h b/frame/include/level0/ri/bli_subjris.h index 5b9458940..b688b9a15 100644 --- a/frame/include/level0/ri/bli_subjris.h +++ b/frame/include/level0/ri/bli_subjris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_subris.h b/frame/include/level0/ri/bli_subris.h index 93325c787..bc3a61d1a 100644 --- a/frame/include/level0/ri/bli_subris.h +++ b/frame/include/level0/ri/bli_subris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_swapris.h b/frame/include/level0/ri/bli_swapris.h index 3b0d71a3b..96cd08597 100644 --- a/frame/include/level0/ri/bli_swapris.h +++ b/frame/include/level0/ri/bli_swapris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri/bli_xpbyris.h b/frame/include/level0/ri/bli_xpbyris.h index de9a17fa6..55b0ca68f 100644 --- a/frame/include/level0/ri/bli_xpbyris.h +++ b/frame/include/level0/ri/bli_xpbyris.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri3/bli_copyjri3s.h b/frame/include/level0/ri3/bli_copyjri3s.h index 9aca17c50..9cb1a5171 100644 --- a/frame/include/level0/ri3/bli_copyjri3s.h +++ b/frame/include/level0/ri3/bli_copyjri3s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri3/bli_copyri3s.h b/frame/include/level0/ri3/bli_copyri3s.h index 9ad0425ef..408f813b2 100644 --- a/frame/include/level0/ri3/bli_copyri3s.h +++ b/frame/include/level0/ri3/bli_copyri3s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri3/bli_scal2jri3s.h b/frame/include/level0/ri3/bli_scal2jri3s.h index a00a38e6b..b69d5c350 100644 --- a/frame/include/level0/ri3/bli_scal2jri3s.h +++ b/frame/include/level0/ri3/bli_scal2jri3s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/include/level0/ri3/bli_scal2ri3s.h b/frame/include/level0/ri3/bli_scal2ri3s.h index 2776485a0..33c44ccd4 100644 --- a/frame/include/level0/ri3/bli_scal2ri3s.h +++ b/frame/include/level0/ri3/bli_scal2ri3s.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/amaxv/bli_amaxv.c b/frame/util/amaxv/bli_amaxv.c index 76ebd56c3..c8a40c6c2 100644 --- a/frame/util/amaxv/bli_amaxv.c +++ b/frame/util/amaxv/bli_amaxv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/amaxv/bli_amaxv.h b/frame/util/amaxv/bli_amaxv.h index ba319a15f..11361e031 100644 --- a/frame/util/amaxv/bli_amaxv.h +++ b/frame/util/amaxv/bli_amaxv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/amaxv/bli_amaxv_check.c b/frame/util/amaxv/bli_amaxv_check.c index 187b83839..e10d576e1 100644 --- a/frame/util/amaxv/bli_amaxv_check.c +++ b/frame/util/amaxv/bli_amaxv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/amaxv/bli_amaxv_check.h b/frame/util/amaxv/bli_amaxv_check.h index 59359088a..6fb2067a6 100644 --- a/frame/util/amaxv/bli_amaxv_check.h +++ b/frame/util/amaxv/bli_amaxv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/amaxv/bli_amaxv_unb_var1.c b/frame/util/amaxv/bli_amaxv_unb_var1.c index fd389ac3e..ab18259b0 100644 --- a/frame/util/amaxv/bli_amaxv_unb_var1.c +++ b/frame/util/amaxv/bli_amaxv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/amaxv/bli_amaxv_unb_var1.h b/frame/util/amaxv/bli_amaxv_unb_var1.h index f6b734e0b..880f0ff02 100644 --- a/frame/util/amaxv/bli_amaxv_unb_var1.h +++ b/frame/util/amaxv/bli_amaxv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/asumv/bli_asumv.c b/frame/util/asumv/bli_asumv.c index 2ce74b006..60ca13946 100644 --- a/frame/util/asumv/bli_asumv.c +++ b/frame/util/asumv/bli_asumv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/asumv/bli_asumv.h b/frame/util/asumv/bli_asumv.h index 598138e66..38473903f 100644 --- a/frame/util/asumv/bli_asumv.h +++ b/frame/util/asumv/bli_asumv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/asumv/bli_asumv_check.c b/frame/util/asumv/bli_asumv_check.c index fc47f60bf..c40344c97 100644 --- a/frame/util/asumv/bli_asumv_check.c +++ b/frame/util/asumv/bli_asumv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/asumv/bli_asumv_check.h b/frame/util/asumv/bli_asumv_check.h index bec9116c1..f90e6ba55 100644 --- a/frame/util/asumv/bli_asumv_check.h +++ b/frame/util/asumv/bli_asumv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/asumv/bli_asumv_unb_var1.c b/frame/util/asumv/bli_asumv_unb_var1.c index 5779d37ef..47492e0e6 100644 --- a/frame/util/asumv/bli_asumv_unb_var1.c +++ b/frame/util/asumv/bli_asumv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/asumv/bli_asumv_unb_var1.h b/frame/util/asumv/bli_asumv_unb_var1.h index 15b1a8688..c0b2608b9 100644 --- a/frame/util/asumv/bli_asumv_unb_var1.h +++ b/frame/util/asumv/bli_asumv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mkherm/bli_mkherm.c b/frame/util/mkherm/bli_mkherm.c index 8859d6bbd..64ed3ffb4 100644 --- a/frame/util/mkherm/bli_mkherm.c +++ b/frame/util/mkherm/bli_mkherm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mkherm/bli_mkherm.h b/frame/util/mkherm/bli_mkherm.h index c45ab188c..0b81fc17c 100644 --- a/frame/util/mkherm/bli_mkherm.h +++ b/frame/util/mkherm/bli_mkherm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mkherm/bli_mkherm_check.c b/frame/util/mkherm/bli_mkherm_check.c index 0a7983e98..382f9c7f1 100644 --- a/frame/util/mkherm/bli_mkherm_check.c +++ b/frame/util/mkherm/bli_mkherm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mkherm/bli_mkherm_check.h b/frame/util/mkherm/bli_mkherm_check.h index 9a97e3d66..0e0fdb065 100644 --- a/frame/util/mkherm/bli_mkherm_check.h +++ b/frame/util/mkherm/bli_mkherm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mkherm/bli_mkherm_unb_var1.c b/frame/util/mkherm/bli_mkherm_unb_var1.c index e0189f81c..667eea763 100644 --- a/frame/util/mkherm/bli_mkherm_unb_var1.c +++ b/frame/util/mkherm/bli_mkherm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mkherm/bli_mkherm_unb_var1.h b/frame/util/mkherm/bli_mkherm_unb_var1.h index 7807d6de0..38971224e 100644 --- a/frame/util/mkherm/bli_mkherm_unb_var1.h +++ b/frame/util/mkherm/bli_mkherm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mksymm/bli_mksymm.c b/frame/util/mksymm/bli_mksymm.c index 919116beb..03d96a1ee 100644 --- a/frame/util/mksymm/bli_mksymm.c +++ b/frame/util/mksymm/bli_mksymm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mksymm/bli_mksymm.h b/frame/util/mksymm/bli_mksymm.h index 7e06c357d..86d7f36f3 100644 --- a/frame/util/mksymm/bli_mksymm.h +++ b/frame/util/mksymm/bli_mksymm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mksymm/bli_mksymm_check.c b/frame/util/mksymm/bli_mksymm_check.c index 3e89d663c..1779e0c3b 100644 --- a/frame/util/mksymm/bli_mksymm_check.c +++ b/frame/util/mksymm/bli_mksymm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mksymm/bli_mksymm_check.h b/frame/util/mksymm/bli_mksymm_check.h index 3b905d1eb..792c29514 100644 --- a/frame/util/mksymm/bli_mksymm_check.h +++ b/frame/util/mksymm/bli_mksymm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mksymm/bli_mksymm_unb_var1.c b/frame/util/mksymm/bli_mksymm_unb_var1.c index aa863f582..df4ec426f 100644 --- a/frame/util/mksymm/bli_mksymm_unb_var1.c +++ b/frame/util/mksymm/bli_mksymm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mksymm/bli_mksymm_unb_var1.h b/frame/util/mksymm/bli_mksymm_unb_var1.h index 87493eca6..8c5a61132 100644 --- a/frame/util/mksymm/bli_mksymm_unb_var1.h +++ b/frame/util/mksymm/bli_mksymm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mktrim/bli_mktrim.c b/frame/util/mktrim/bli_mktrim.c index e19762a60..7493d9e09 100644 --- a/frame/util/mktrim/bli_mktrim.c +++ b/frame/util/mktrim/bli_mktrim.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mktrim/bli_mktrim.h b/frame/util/mktrim/bli_mktrim.h index 3ba59fe23..36e184a81 100644 --- a/frame/util/mktrim/bli_mktrim.h +++ b/frame/util/mktrim/bli_mktrim.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mktrim/bli_mktrim_check.c b/frame/util/mktrim/bli_mktrim_check.c index 8b685f575..47f2a7418 100644 --- a/frame/util/mktrim/bli_mktrim_check.c +++ b/frame/util/mktrim/bli_mktrim_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mktrim/bli_mktrim_check.h b/frame/util/mktrim/bli_mktrim_check.h index e433ff54a..b55bdfc17 100644 --- a/frame/util/mktrim/bli_mktrim_check.h +++ b/frame/util/mktrim/bli_mktrim_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mktrim/bli_mktrim_unb_var1.c b/frame/util/mktrim/bli_mktrim_unb_var1.c index 46e9449e6..feb23fb92 100644 --- a/frame/util/mktrim/bli_mktrim_unb_var1.c +++ b/frame/util/mktrim/bli_mktrim_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/mktrim/bli_mktrim_unb_var1.h b/frame/util/mktrim/bli_mktrim_unb_var1.h index fc3606c69..40be65670 100644 --- a/frame/util/mktrim/bli_mktrim_unb_var1.h +++ b/frame/util/mktrim/bli_mktrim_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1m/bli_norm1m.c b/frame/util/norm1m/bli_norm1m.c index f519149af..8ad57eeba 100644 --- a/frame/util/norm1m/bli_norm1m.c +++ b/frame/util/norm1m/bli_norm1m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1m/bli_norm1m.h b/frame/util/norm1m/bli_norm1m.h index f2e53670e..40c3e5cb0 100644 --- a/frame/util/norm1m/bli_norm1m.h +++ b/frame/util/norm1m/bli_norm1m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1m/bli_norm1m_check.c b/frame/util/norm1m/bli_norm1m_check.c index 1ac0d0929..ae76b121e 100644 --- a/frame/util/norm1m/bli_norm1m_check.c +++ b/frame/util/norm1m/bli_norm1m_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1m/bli_norm1m_check.h b/frame/util/norm1m/bli_norm1m_check.h index 5b069aa6d..38290728a 100644 --- a/frame/util/norm1m/bli_norm1m_check.h +++ b/frame/util/norm1m/bli_norm1m_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1m/bli_norm1m_unb_var1.c b/frame/util/norm1m/bli_norm1m_unb_var1.c index afe6a587a..639e7b7c6 100644 --- a/frame/util/norm1m/bli_norm1m_unb_var1.c +++ b/frame/util/norm1m/bli_norm1m_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1m/bli_norm1m_unb_var1.h b/frame/util/norm1m/bli_norm1m_unb_var1.h index 2c01984e4..eed5b1fa5 100644 --- a/frame/util/norm1m/bli_norm1m_unb_var1.h +++ b/frame/util/norm1m/bli_norm1m_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1v/bli_norm1v.c b/frame/util/norm1v/bli_norm1v.c index 8b285ba05..782bb6eb9 100644 --- a/frame/util/norm1v/bli_norm1v.c +++ b/frame/util/norm1v/bli_norm1v.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1v/bli_norm1v.h b/frame/util/norm1v/bli_norm1v.h index e91576e30..051a99ff4 100644 --- a/frame/util/norm1v/bli_norm1v.h +++ b/frame/util/norm1v/bli_norm1v.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1v/bli_norm1v_check.c b/frame/util/norm1v/bli_norm1v_check.c index e34a20a30..2f4489b23 100644 --- a/frame/util/norm1v/bli_norm1v_check.c +++ b/frame/util/norm1v/bli_norm1v_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1v/bli_norm1v_check.h b/frame/util/norm1v/bli_norm1v_check.h index 088ec42b9..8098b54c8 100644 --- a/frame/util/norm1v/bli_norm1v_check.h +++ b/frame/util/norm1v/bli_norm1v_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1v/bli_norm1v_unb_var1.c b/frame/util/norm1v/bli_norm1v_unb_var1.c index 08e0c6c1d..8d18ebdea 100644 --- a/frame/util/norm1v/bli_norm1v_unb_var1.c +++ b/frame/util/norm1v/bli_norm1v_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/norm1v/bli_norm1v_unb_var1.h b/frame/util/norm1v/bli_norm1v_unb_var1.h index aefe737c3..1631e551a 100644 --- a/frame/util/norm1v/bli_norm1v_unb_var1.h +++ b/frame/util/norm1v/bli_norm1v_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfm/bli_normfm.c b/frame/util/normfm/bli_normfm.c index b166c5f20..90f832bd6 100644 --- a/frame/util/normfm/bli_normfm.c +++ b/frame/util/normfm/bli_normfm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfm/bli_normfm.h b/frame/util/normfm/bli_normfm.h index db27c9deb..2d95fe0ef 100644 --- a/frame/util/normfm/bli_normfm.h +++ b/frame/util/normfm/bli_normfm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfm/bli_normfm_check.c b/frame/util/normfm/bli_normfm_check.c index 09a46233f..2c6f654a7 100644 --- a/frame/util/normfm/bli_normfm_check.c +++ b/frame/util/normfm/bli_normfm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfm/bli_normfm_check.h b/frame/util/normfm/bli_normfm_check.h index c8fd08eb4..91070a091 100644 --- a/frame/util/normfm/bli_normfm_check.h +++ b/frame/util/normfm/bli_normfm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfm/bli_normfm_unb_var1.c b/frame/util/normfm/bli_normfm_unb_var1.c index 16200674a..72df52cb1 100644 --- a/frame/util/normfm/bli_normfm_unb_var1.c +++ b/frame/util/normfm/bli_normfm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfm/bli_normfm_unb_var1.h b/frame/util/normfm/bli_normfm_unb_var1.h index 819abaf51..72a882290 100644 --- a/frame/util/normfm/bli_normfm_unb_var1.h +++ b/frame/util/normfm/bli_normfm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfv/bli_normfv.c b/frame/util/normfv/bli_normfv.c index 457dbb3c1..b70527206 100644 --- a/frame/util/normfv/bli_normfv.c +++ b/frame/util/normfv/bli_normfv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfv/bli_normfv.h b/frame/util/normfv/bli_normfv.h index 92b174db7..0698e0c1e 100644 --- a/frame/util/normfv/bli_normfv.h +++ b/frame/util/normfv/bli_normfv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfv/bli_normfv_check.c b/frame/util/normfv/bli_normfv_check.c index 25f95c737..f50953cf5 100644 --- a/frame/util/normfv/bli_normfv_check.c +++ b/frame/util/normfv/bli_normfv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfv/bli_normfv_check.h b/frame/util/normfv/bli_normfv_check.h index 5b0f60ddd..57fdc83af 100644 --- a/frame/util/normfv/bli_normfv_check.h +++ b/frame/util/normfv/bli_normfv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfv/bli_normfv_unb_var1.c b/frame/util/normfv/bli_normfv_unb_var1.c index 7add1ded7..c3f812213 100644 --- a/frame/util/normfv/bli_normfv_unb_var1.c +++ b/frame/util/normfv/bli_normfv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normfv/bli_normfv_unb_var1.h b/frame/util/normfv/bli_normfv_unb_var1.h index 3b1739112..3f57a3e15 100644 --- a/frame/util/normfv/bli_normfv_unb_var1.h +++ b/frame/util/normfv/bli_normfv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normim/bli_normim.c b/frame/util/normim/bli_normim.c index 7df608e60..5be66b0fc 100644 --- a/frame/util/normim/bli_normim.c +++ b/frame/util/normim/bli_normim.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normim/bli_normim.h b/frame/util/normim/bli_normim.h index f45153037..ec64b068d 100644 --- a/frame/util/normim/bli_normim.h +++ b/frame/util/normim/bli_normim.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normim/bli_normim_check.c b/frame/util/normim/bli_normim_check.c index 9a49406a4..d29df8b57 100644 --- a/frame/util/normim/bli_normim_check.c +++ b/frame/util/normim/bli_normim_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normim/bli_normim_check.h b/frame/util/normim/bli_normim_check.h index 6adc77cce..7b0bb2529 100644 --- a/frame/util/normim/bli_normim_check.h +++ b/frame/util/normim/bli_normim_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normim/bli_normim_unb_var1.c b/frame/util/normim/bli_normim_unb_var1.c index 63e7e7f9d..fb65d8bcd 100644 --- a/frame/util/normim/bli_normim_unb_var1.c +++ b/frame/util/normim/bli_normim_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normim/bli_normim_unb_var1.h b/frame/util/normim/bli_normim_unb_var1.h index 976128c38..e2d63ad8a 100644 --- a/frame/util/normim/bli_normim_unb_var1.h +++ b/frame/util/normim/bli_normim_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normiv/bli_normiv.c b/frame/util/normiv/bli_normiv.c index 50712a8bf..00c9461a8 100644 --- a/frame/util/normiv/bli_normiv.c +++ b/frame/util/normiv/bli_normiv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normiv/bli_normiv.h b/frame/util/normiv/bli_normiv.h index 5ec7a42ee..1f40ec145 100644 --- a/frame/util/normiv/bli_normiv.h +++ b/frame/util/normiv/bli_normiv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normiv/bli_normiv_check.c b/frame/util/normiv/bli_normiv_check.c index 82a95ea1a..b10c0089c 100644 --- a/frame/util/normiv/bli_normiv_check.c +++ b/frame/util/normiv/bli_normiv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normiv/bli_normiv_check.h b/frame/util/normiv/bli_normiv_check.h index eb9853e37..d2e7c9dde 100644 --- a/frame/util/normiv/bli_normiv_check.h +++ b/frame/util/normiv/bli_normiv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normiv/bli_normiv_unb_var1.c b/frame/util/normiv/bli_normiv_unb_var1.c index ac7b39d7a..238f1cf35 100644 --- a/frame/util/normiv/bli_normiv_unb_var1.c +++ b/frame/util/normiv/bli_normiv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/normiv/bli_normiv_unb_var1.h b/frame/util/normiv/bli_normiv_unb_var1.h index 2aff2d835..a9b68a034 100644 --- a/frame/util/normiv/bli_normiv_unb_var1.h +++ b/frame/util/normiv/bli_normiv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printm/bli_fprintm.c b/frame/util/printm/bli_fprintm.c index 41ded88f7..1f3e9fbaa 100644 --- a/frame/util/printm/bli_fprintm.c +++ b/frame/util/printm/bli_fprintm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printm/bli_fprintm.h b/frame/util/printm/bli_fprintm.h index 60503b8a4..a329b5f07 100644 --- a/frame/util/printm/bli_fprintm.h +++ b/frame/util/printm/bli_fprintm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printm/bli_fprintm_check.c b/frame/util/printm/bli_fprintm_check.c index aa0f71598..3d562c8c6 100644 --- a/frame/util/printm/bli_fprintm_check.c +++ b/frame/util/printm/bli_fprintm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printm/bli_fprintm_check.h b/frame/util/printm/bli_fprintm_check.h index 98b6f8a6e..6a6770b81 100644 --- a/frame/util/printm/bli_fprintm_check.h +++ b/frame/util/printm/bli_fprintm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printm/bli_printm.c b/frame/util/printm/bli_printm.c index 83faeea0c..e70539050 100644 --- a/frame/util/printm/bli_printm.c +++ b/frame/util/printm/bli_printm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printm/bli_printm.h b/frame/util/printm/bli_printm.h index bc4b039fa..bbdd06aa0 100644 --- a/frame/util/printm/bli_printm.h +++ b/frame/util/printm/bli_printm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printv/bli_fprintv.c b/frame/util/printv/bli_fprintv.c index 41a8850a7..80ed2afeb 100644 --- a/frame/util/printv/bli_fprintv.c +++ b/frame/util/printv/bli_fprintv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printv/bli_fprintv.h b/frame/util/printv/bli_fprintv.h index 03b3a33cb..a97a4d3a8 100644 --- a/frame/util/printv/bli_fprintv.h +++ b/frame/util/printv/bli_fprintv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printv/bli_fprintv_check.c b/frame/util/printv/bli_fprintv_check.c index 8631287ac..9e6ddb83d 100644 --- a/frame/util/printv/bli_fprintv_check.c +++ b/frame/util/printv/bli_fprintv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printv/bli_fprintv_check.h b/frame/util/printv/bli_fprintv_check.h index 2c32e67f8..7c20a62b2 100644 --- a/frame/util/printv/bli_fprintv_check.h +++ b/frame/util/printv/bli_fprintv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printv/bli_printv.c b/frame/util/printv/bli_printv.c index 59716fffa..26b7433d5 100644 --- a/frame/util/printv/bli_printv.c +++ b/frame/util/printv/bli_printv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/printv/bli_printv.h b/frame/util/printv/bli_printv.h index c471faec0..95675a894 100644 --- a/frame/util/printv/bli_printv.h +++ b/frame/util/printv/bli_printv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randm/bli_randm.c b/frame/util/randm/bli_randm.c index f05b304a9..16a8147db 100644 --- a/frame/util/randm/bli_randm.c +++ b/frame/util/randm/bli_randm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randm/bli_randm.h b/frame/util/randm/bli_randm.h index c77658c28..650c7d5a0 100644 --- a/frame/util/randm/bli_randm.h +++ b/frame/util/randm/bli_randm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randm/bli_randm_check.c b/frame/util/randm/bli_randm_check.c index 186ef17d7..86b919a23 100644 --- a/frame/util/randm/bli_randm_check.c +++ b/frame/util/randm/bli_randm_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randm/bli_randm_check.h b/frame/util/randm/bli_randm_check.h index 6dd9ba9d9..1fcaf8914 100644 --- a/frame/util/randm/bli_randm_check.h +++ b/frame/util/randm/bli_randm_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randm/bli_randm_unb_var1.c b/frame/util/randm/bli_randm_unb_var1.c index a47d97ba6..d5a70e89e 100644 --- a/frame/util/randm/bli_randm_unb_var1.c +++ b/frame/util/randm/bli_randm_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randm/bli_randm_unb_var1.h b/frame/util/randm/bli_randm_unb_var1.h index 54db3db2e..688088f10 100644 --- a/frame/util/randm/bli_randm_unb_var1.h +++ b/frame/util/randm/bli_randm_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randv/bli_randv.c b/frame/util/randv/bli_randv.c index cac533606..25d25b38f 100644 --- a/frame/util/randv/bli_randv.c +++ b/frame/util/randv/bli_randv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randv/bli_randv.h b/frame/util/randv/bli_randv.h index 9f8e87ef0..73ced3a08 100644 --- a/frame/util/randv/bli_randv.h +++ b/frame/util/randv/bli_randv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randv/bli_randv_check.c b/frame/util/randv/bli_randv_check.c index cc2c25713..561a93c20 100644 --- a/frame/util/randv/bli_randv_check.c +++ b/frame/util/randv/bli_randv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randv/bli_randv_check.h b/frame/util/randv/bli_randv_check.h index 564d7887d..c15f849dc 100644 --- a/frame/util/randv/bli_randv_check.h +++ b/frame/util/randv/bli_randv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randv/bli_randv_unb_var1.c b/frame/util/randv/bli_randv_unb_var1.c index f89fd9cd9..eda36be89 100644 --- a/frame/util/randv/bli_randv_unb_var1.c +++ b/frame/util/randv/bli_randv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/randv/bli_randv_unb_var1.h b/frame/util/randv/bli_randv_unb_var1.h index edbe63de1..af7946dc1 100644 --- a/frame/util/randv/bli_randv_unb_var1.h +++ b/frame/util/randv/bli_randv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/sumsqv/bli_sumsqv.c b/frame/util/sumsqv/bli_sumsqv.c index 26511b198..37e634c7d 100644 --- a/frame/util/sumsqv/bli_sumsqv.c +++ b/frame/util/sumsqv/bli_sumsqv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/sumsqv/bli_sumsqv.h b/frame/util/sumsqv/bli_sumsqv.h index 42c8427f5..6230c2de4 100644 --- a/frame/util/sumsqv/bli_sumsqv.h +++ b/frame/util/sumsqv/bli_sumsqv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/sumsqv/bli_sumsqv_check.c b/frame/util/sumsqv/bli_sumsqv_check.c index ad014fd91..e08f50d27 100644 --- a/frame/util/sumsqv/bli_sumsqv_check.c +++ b/frame/util/sumsqv/bli_sumsqv_check.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/sumsqv/bli_sumsqv_check.h b/frame/util/sumsqv/bli_sumsqv_check.h index d608044df..913f19b95 100644 --- a/frame/util/sumsqv/bli_sumsqv_check.h +++ b/frame/util/sumsqv/bli_sumsqv_check.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/sumsqv/bli_sumsqv_unb_var1.c b/frame/util/sumsqv/bli_sumsqv_unb_var1.c index ee4172451..4b457cab3 100644 --- a/frame/util/sumsqv/bli_sumsqv_unb_var1.c +++ b/frame/util/sumsqv/bli_sumsqv_unb_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/frame/util/sumsqv/bli_sumsqv_unb_var1.h b/frame/util/sumsqv/bli_sumsqv_unb_var1.h index f66595755..41678042e 100644 --- a/frame/util/sumsqv/bli_sumsqv_unb_var1.h +++ b/frame/util/sumsqv/bli_sumsqv_unb_var1.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/arm/neon/3/bli_gemm_opt_4x4.c b/kernels/arm/neon/3/bli_gemm_opt_4x4.c index 6c6fe4fbe..8dc2b1776 100644 --- a/kernels/arm/neon/3/bli_gemm_opt_4x4.c +++ b/kernels/arm/neon/3/bli_gemm_opt_4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2012, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/armv7a/3/bli_gemm_opt_4x4.c b/kernels/armv7a/3/bli_gemm_opt_4x4.c index e1ea2d309..2bc34c311 100644 --- a/kernels/armv7a/3/bli_gemm_opt_4x4.c +++ b/kernels/armv7a/3/bli_gemm_opt_4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2012, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/bgq/1/bli_axpyv_opt_var1.c b/kernels/bgq/1/bli_axpyv_opt_var1.c index 8f389091b..b80232267 100644 --- a/kernels/bgq/1/bli_axpyv_opt_var1.c +++ b/kernels/bgq/1/bli_axpyv_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/bgq/1/bli_dotv_opt_var1.c b/kernels/bgq/1/bli_dotv_opt_var1.c index 11bf4741d..9b8a15b7a 100644 --- a/kernels/bgq/1/bli_dotv_opt_var1.c +++ b/kernels/bgq/1/bli_dotv_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/bgq/1f/bli_axpyf_opt_var1.c b/kernels/bgq/1f/bli_axpyf_opt_var1.c index 46b837689..8907bc13d 100644 --- a/kernels/bgq/1f/bli_axpyf_opt_var1.c +++ b/kernels/bgq/1f/bli_axpyf_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/bgq/3/bli_gemm_8x8.c b/kernels/bgq/3/bli_gemm_8x8.c index e2fe3f8d2..0eb1e7b1e 100644 --- a/kernels/bgq/3/bli_gemm_8x8.c +++ b/kernels/bgq/3/bli_gemm_8x8.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2012, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/bgq/3/bli_gemm_8x8.h b/kernels/bgq/3/bli_gemm_8x8.h index b6ce51824..390d224dd 100644 --- a/kernels/bgq/3/bli_gemm_8x8.h +++ b/kernels/bgq/3/bli_gemm_8x8.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/c99/3/bli_gemm_ref_4x4.c b/kernels/c99/3/bli_gemm_ref_4x4.c index 1482867d3..e478bb1b1 100644 --- a/kernels/c99/3/bli_gemm_ref_4x4.c +++ b/kernels/c99/3/bli_gemm_ref_4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c b/kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c index 83e71b3b1..c2042b7a8 100644 --- a/kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c +++ b/kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c b/kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c index 34d7be2e5..9f0e5e88a 100644 --- a/kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c +++ b/kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/c99/3/bli_trsm_l_ref_4x4.c b/kernels/c99/3/bli_trsm_l_ref_4x4.c index 5f2da9bc7..cfb13b7a3 100644 --- a/kernels/c99/3/bli_trsm_l_ref_4x4.c +++ b/kernels/c99/3/bli_trsm_l_ref_4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/c99/3/bli_trsm_u_ref_4x4.c b/kernels/c99/3/bli_trsm_u_ref_4x4.c index ea5292811..121e0a961 100644 --- a/kernels/c99/3/bli_trsm_u_ref_4x4.c +++ b/kernels/c99/3/bli_trsm_u_ref_4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/loongson3a/3/bli_gemm_opt_d4x4.c b/kernels/loongson3a/3/bli_gemm_opt_d4x4.c index b42249ac3..c5fdd5760 100644 --- a/kernels/loongson3a/3/bli_gemm_opt_d4x4.c +++ b/kernels/loongson3a/3/bli_gemm_opt_d4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2012, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/mic/3/bli_dgemm_opt_30x8.c b/kernels/mic/3/bli_dgemm_opt_30x8.c index d0380883b..4b2c484b5 100644 --- a/kernels/mic/3/bli_dgemm_opt_30x8.c +++ b/kernels/mic/3/bli_dgemm_opt_30x8.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2012, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/mic/3/bli_sgemm_opt_30x16.c b/kernels/mic/3/bli_sgemm_opt_30x16.c index 886141777..26725c9b8 100644 --- a/kernels/mic/3/bli_sgemm_opt_30x16.c +++ b/kernels/mic/3/bli_sgemm_opt_30x16.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2012, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/nacl/pnacl/1/bli_axpyv_opt.c b/kernels/nacl/pnacl/1/bli_axpyv_opt.c index c26a34b98..24f24b415 100644 --- a/kernels/nacl/pnacl/1/bli_axpyv_opt.c +++ b/kernels/nacl/pnacl/1/bli_axpyv_opt.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/nacl/pnacl/1/bli_dotv_opt.c b/kernels/nacl/pnacl/1/bli_dotv_opt.c index 9d6408245..55ae1af8e 100644 --- a/kernels/nacl/pnacl/1/bli_dotv_opt.c +++ b/kernels/nacl/pnacl/1/bli_dotv_opt.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/nacl/pnacl/3/bli_gemm_opt.c b/kernels/nacl/pnacl/3/bli_gemm_opt.c index 2c37397c7..beb199cfe 100644 --- a/kernels/nacl/pnacl/3/bli_gemm_opt.c +++ b/kernels/nacl/pnacl/3/bli_gemm_opt.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/power7/3/bli_gemm_opt_8x4.h b/kernels/power7/3/bli_gemm_opt_8x4.h index d8630eece..fddd790bb 100644 --- a/kernels/power7/3/bli_gemm_opt_8x4.h +++ b/kernels/power7/3/bli_gemm_opt_8x4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/1m/bli_packm_2xk.c b/kernels/x86/1m/bli_packm_2xk.c index f8e768feb..a69ad5096 100644 --- a/kernels/x86/1m/bli_packm_2xk.c +++ b/kernels/x86/1m/bli_packm_2xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/1m/bli_packm_2xk.h b/kernels/x86/1m/bli_packm_2xk.h index bd9fa1fda..3f02f37e1 100644 --- a/kernels/x86/1m/bli_packm_2xk.h +++ b/kernels/x86/1m/bli_packm_2xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/1m/bli_packm_4xk.c b/kernels/x86/1m/bli_packm_4xk.c index 8434f9648..815e82833 100644 --- a/kernels/x86/1m/bli_packm_4xk.c +++ b/kernels/x86/1m/bli_packm_4xk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/1m/bli_packm_4xk.h b/kernels/x86/1m/bli_packm_4xk.h index 925982976..cf3a384fe 100644 --- a/kernels/x86/1m/bli_packm_4xk.h +++ b/kernels/x86/1m/bli_packm_4xk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_gemm_opt_d2x4.c b/kernels/x86/3/bli_gemm_opt_d2x4.c index 604890a59..9e4f892e3 100644 --- a/kernels/x86/3/bli_gemm_opt_d2x4.c +++ b/kernels/x86/3/bli_gemm_opt_d2x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_gemm_opt_d2x4.h b/kernels/x86/3/bli_gemm_opt_d2x4.h index a042ce393..5fff6c747 100644 --- a/kernels/x86/3/bli_gemm_opt_d2x4.h +++ b/kernels/x86/3/bli_gemm_opt_d2x4.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_gemm_opt_d4x2.c b/kernels/x86/3/bli_gemm_opt_d4x2.c index 23ea50518..696bbc53a 100644 --- a/kernels/x86/3/bli_gemm_opt_d4x2.c +++ b/kernels/x86/3/bli_gemm_opt_d4x2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_gemm_opt_d4x2.h b/kernels/x86/3/bli_gemm_opt_d4x2.h index 075be6345..85e67e46d 100644 --- a/kernels/x86/3/bli_gemm_opt_d4x2.h +++ b/kernels/x86/3/bli_gemm_opt_d4x2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c b/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c index 9ae10e9c8..e89b935ea 100644 --- a/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c +++ b/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h b/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h index 0aa13634a..e4c3b30cc 100644 --- a/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h +++ b/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c b/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c index bbfc7bd3c..bc72441d7 100644 --- a/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c +++ b/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h b/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h index f2ef96068..9b3fa2567 100644 --- a/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h +++ b/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_trsm_l_opt_d4x2.c b/kernels/x86/3/bli_trsm_l_opt_d4x2.c index 3fcd7cd1e..d5e6d210f 100644 --- a/kernels/x86/3/bli_trsm_l_opt_d4x2.c +++ b/kernels/x86/3/bli_trsm_l_opt_d4x2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86/3/bli_trsm_l_opt_d4x2.h b/kernels/x86/3/bli_trsm_l_opt_d4x2.h index 89efe57dd..d41788b10 100644 --- a/kernels/x86/3/bli_trsm_l_opt_d4x2.h +++ b/kernels/x86/3/bli_trsm_l_opt_d4x2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/avx/3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c b/kernels/x86_64/avx/3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c index 8315c1e2a..9627a0e51 100644 --- a/kernels/x86_64/avx/3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c +++ b/kernels/x86_64/avx/3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/1/bli_axpyv_opt_var1.c b/kernels/x86_64/core2-sse3/1/bli_axpyv_opt_var1.c index 03d6bea14..8d5a5c124 100644 --- a/kernels/x86_64/core2-sse3/1/bli_axpyv_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1/bli_axpyv_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/1/bli_dotv_opt_var1.c b/kernels/x86_64/core2-sse3/1/bli_dotv_opt_var1.c index 737df5d15..df1fa1ac4 100644 --- a/kernels/x86_64/core2-sse3/1/bli_dotv_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1/bli_dotv_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/1f/bli_axpy2v_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_axpy2v_opt_var1.c index b2f3104c3..1fd6511ce 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_axpy2v_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_axpy2v_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c index 400c18236..1433ec1b7 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c.alt b/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c.alt index cb1b49378..ba06b3eb4 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c.alt +++ b/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c.alt @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/1f/bli_dotaxpyv_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_dotaxpyv_opt_var1.c index 700e278e9..6dd59123b 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_dotaxpyv_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_dotaxpyv_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/1f/bli_dotxaxpyf_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_dotxaxpyf_opt_var1.c index 62020b8f6..2fcc37307 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_dotxaxpyf_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_dotxaxpyf_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c index c8dd85ee6..8b1a714ff 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c.alt b/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c.alt index 6884d03dd..d512f8f7f 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c.alt +++ b/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c.alt @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c index 667101fef..2a873b805 100644 --- a/kernels/x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c index 5f65fcde5..e7182e01c 100644 --- a/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c index 5233b0321..9c9a3f7a8 100644 --- a/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c index 62fe27f57..d06e80191 100644 --- a/kernels/x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c index ca6ee92ea..c436030da 100644 --- a/kernels/x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/kernels/x86_64/piledriver/3/bli_gemm_4x6.c b/kernels/x86_64/piledriver/3/bli_gemm_4x6.c index 5d88073fe..01080d47a 100644 --- a/kernels/x86_64/piledriver/3/bli_gemm_4x6.c +++ b/kernels/x86_64/piledriver/3/bli_gemm_4x6.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/mpi_test/Makefile b/mpi_test/Makefile index cb317471a..b556b38e8 100644 --- a/mpi_test/Makefile +++ b/mpi_test/Makefile @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/mpi_test/test_gemm.c b/mpi_test/test_gemm.c index 5864e667a..d45cfdf3c 100644 --- a/mpi_test/test_gemm.c +++ b/mpi_test/test_gemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/mpi_test/test_hemm.c b/mpi_test/test_hemm.c index 4cab93ceb..fcebfb720 100644 --- a/mpi_test/test_hemm.c +++ b/mpi_test/test_hemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/mpi_test/test_her2k.c b/mpi_test/test_her2k.c index f44ca4fb7..37a5cee7f 100644 --- a/mpi_test/test_her2k.c +++ b/mpi_test/test_her2k.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/mpi_test/test_herk.c b/mpi_test/test_herk.c index ffe9ab85f..a0529cc45 100644 --- a/mpi_test/test_herk.c +++ b/mpi_test/test_herk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/mpi_test/test_trmm.c b/mpi_test/test_trmm.c index 4d8112be8..9eb922cdd 100644 --- a/mpi_test/test_trmm.c +++ b/mpi_test/test_trmm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/mpi_test/test_trsm.c b/mpi_test/test_trsm.c index 563bbdaaf..e155e0340 100644 --- a/mpi_test/test_trsm.c +++ b/mpi_test/test_trsm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/Makefile b/test/Makefile index ea2f8bcda..d2e417726 100644 --- a/test/Makefile +++ b/test/Makefile @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/test/exec_sizes/Makefile b/test/exec_sizes/Makefile index 094b06db9..b4e59d50d 100644 --- a/test/exec_sizes/Makefile +++ b/test/exec_sizes/Makefile @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/test/exec_sizes/grab_top_outputs.sh b/test/exec_sizes/grab_top_outputs.sh index 037650071..14094b9c5 100755 --- a/test/exec_sizes/grab_top_outputs.sh +++ b/test/exec_sizes/grab_top_outputs.sh @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/test/exec_sizes/test_size.c b/test/exec_sizes/test_size.c index a27479f39..b6d25a3a6 100644 --- a/test/exec_sizes/test_size.c +++ b/test/exec_sizes/test_size.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/old/Makefile.prev b/test/old/Makefile.prev index 6dbbf17e0..1f82f4a29 100644 --- a/test/old/Makefile.prev +++ b/test/old/Makefile.prev @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2012, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/test/test_gemm.c b/test/test_gemm.c index 3b9e304c7..663de5be6 100644 --- a/test/test_gemm.c +++ b/test/test_gemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_gemv.c b/test/test_gemv.c index f12b1d7e3..54ccfb1ae 100644 --- a/test/test_gemv.c +++ b/test/test_gemv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_ger.c b/test/test_ger.c index ade6d8999..a77dbe1c6 100644 --- a/test/test_ger.c +++ b/test/test_ger.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_hemm.c b/test/test_hemm.c index 1b0c0604f..df81d2db3 100644 --- a/test/test_hemm.c +++ b/test/test_hemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_hemv.c b/test/test_hemv.c index aaaa2a053..37bcff6f7 100644 --- a/test/test_hemv.c +++ b/test/test_hemv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_her.c b/test/test_her.c index 839dc19e4..83acf6e9b 100644 --- a/test/test_her.c +++ b/test/test_her.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_her2.c b/test/test_her2.c index 29f5cc3ba..edf89128c 100644 --- a/test/test_her2.c +++ b/test/test_her2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_her2k.c b/test/test_her2k.c index 55c40fbbb..e2e928904 100644 --- a/test/test_her2k.c +++ b/test/test_her2k.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_herk.c b/test/test_herk.c index c3c93071e..4d05f7269 100644 --- a/test/test_herk.c +++ b/test/test_herk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_trmm.c b/test/test_trmm.c index e3df7a407..3ef5496be 100644 --- a/test/test_trmm.c +++ b/test/test_trmm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_trmv.c b/test/test_trmv.c index 4f65d2fc6..16b0b70f7 100644 --- a/test/test_trmv.c +++ b/test/test_trmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_trsm.c b/test/test_trsm.c index a4abb2b8d..f347c37cb 100644 --- a/test/test_trsm.c +++ b/test/test_trsm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/test/test_trsv.c b/test/test_trsv.c index d48fbdc52..d23b66eda 100644 --- a/test/test_trsv.c +++ b/test/test_trsv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/Makefile b/testsuite/Makefile index 850543bb6..79ff6a89c 100644 --- a/testsuite/Makefile +++ b/testsuite/Makefile @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_addm.c b/testsuite/src/test_addm.c index 6661c7335..c754368ed 100644 --- a/testsuite/src/test_addm.c +++ b/testsuite/src/test_addm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_addm.h b/testsuite/src/test_addm.h index 033a8cd29..d3259cbc2 100644 --- a/testsuite/src/test_addm.h +++ b/testsuite/src/test_addm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_addv.c b/testsuite/src/test_addv.c index 7b610bc73..b26d9e1d1 100644 --- a/testsuite/src/test_addv.c +++ b/testsuite/src/test_addv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_addv.h b/testsuite/src/test_addv.h index 04d4ebb97..7f1586b5c 100644 --- a/testsuite/src/test_addv.h +++ b/testsuite/src/test_addv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_axpy2v.c b/testsuite/src/test_axpy2v.c index a7d4aa9af..cae04006a 100644 --- a/testsuite/src/test_axpy2v.c +++ b/testsuite/src/test_axpy2v.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_axpy2v.h b/testsuite/src/test_axpy2v.h index 0e01a597b..157a3dd17 100644 --- a/testsuite/src/test_axpy2v.h +++ b/testsuite/src/test_axpy2v.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_axpyf.c b/testsuite/src/test_axpyf.c index ec50aa1dd..021d030d7 100644 --- a/testsuite/src/test_axpyf.c +++ b/testsuite/src/test_axpyf.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_axpyf.h b/testsuite/src/test_axpyf.h index 4c74caa17..ff4453a28 100644 --- a/testsuite/src/test_axpyf.h +++ b/testsuite/src/test_axpyf.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_axpym.c b/testsuite/src/test_axpym.c index 45ddc909d..6f9574b11 100644 --- a/testsuite/src/test_axpym.c +++ b/testsuite/src/test_axpym.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_axpym.h b/testsuite/src/test_axpym.h index 45da79007..e532b6183 100644 --- a/testsuite/src/test_axpym.h +++ b/testsuite/src/test_axpym.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_axpyv.c b/testsuite/src/test_axpyv.c index e5a1f0599..48f505afc 100644 --- a/testsuite/src/test_axpyv.c +++ b/testsuite/src/test_axpyv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_axpyv.h b/testsuite/src/test_axpyv.h index f6c6e14db..d74b3f03f 100644 --- a/testsuite/src/test_axpyv.h +++ b/testsuite/src/test_axpyv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_copym.c b/testsuite/src/test_copym.c index 848d8c0d5..375f9a4af 100644 --- a/testsuite/src/test_copym.c +++ b/testsuite/src/test_copym.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_copym.h b/testsuite/src/test_copym.h index 0dabe2a32..82081e8fd 100644 --- a/testsuite/src/test_copym.h +++ b/testsuite/src/test_copym.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_copyv.c b/testsuite/src/test_copyv.c index cfa826cf2..772116535 100644 --- a/testsuite/src/test_copyv.c +++ b/testsuite/src/test_copyv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_copyv.h b/testsuite/src/test_copyv.h index 6d9ee5a50..69b2401bd 100644 --- a/testsuite/src/test_copyv.h +++ b/testsuite/src/test_copyv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotaxpyv.c b/testsuite/src/test_dotaxpyv.c index 788843da0..bc55fc168 100644 --- a/testsuite/src/test_dotaxpyv.c +++ b/testsuite/src/test_dotaxpyv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotaxpyv.h b/testsuite/src/test_dotaxpyv.h index 0b039d7d7..93c7edca0 100644 --- a/testsuite/src/test_dotaxpyv.h +++ b/testsuite/src/test_dotaxpyv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotv.c b/testsuite/src/test_dotv.c index a19566083..40ecf4fb8 100644 --- a/testsuite/src/test_dotv.c +++ b/testsuite/src/test_dotv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotv.h b/testsuite/src/test_dotv.h index 970f56b70..f6faf3483 100644 --- a/testsuite/src/test_dotv.h +++ b/testsuite/src/test_dotv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotxaxpyf.c b/testsuite/src/test_dotxaxpyf.c index ddd02273e..63b51b3b0 100644 --- a/testsuite/src/test_dotxaxpyf.c +++ b/testsuite/src/test_dotxaxpyf.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotxaxpyf.h b/testsuite/src/test_dotxaxpyf.h index e5726d27d..3d526f36d 100644 --- a/testsuite/src/test_dotxaxpyf.h +++ b/testsuite/src/test_dotxaxpyf.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotxf.c b/testsuite/src/test_dotxf.c index f9d682dc0..1e8cae5bc 100644 --- a/testsuite/src/test_dotxf.c +++ b/testsuite/src/test_dotxf.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotxf.h b/testsuite/src/test_dotxf.h index 0274c9ac2..d633d2d55 100644 --- a/testsuite/src/test_dotxf.h +++ b/testsuite/src/test_dotxf.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotxv.c b/testsuite/src/test_dotxv.c index d860d0a1b..ea6d73012 100644 --- a/testsuite/src/test_dotxv.c +++ b/testsuite/src/test_dotxv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_dotxv.h b/testsuite/src/test_dotxv.h index f5091feaf..cfdd2873d 100644 --- a/testsuite/src/test_dotxv.h +++ b/testsuite/src/test_dotxv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_gemm.c b/testsuite/src/test_gemm.c index c5c5b3137..f62b16a83 100644 --- a/testsuite/src/test_gemm.c +++ b/testsuite/src/test_gemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_gemm.h b/testsuite/src/test_gemm.h index 7710d31f2..aa265f4a0 100644 --- a/testsuite/src/test_gemm.h +++ b/testsuite/src/test_gemm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_gemm_ukr.c b/testsuite/src/test_gemm_ukr.c index c7464ce21..edeb39b82 100644 --- a/testsuite/src/test_gemm_ukr.c +++ b/testsuite/src/test_gemm_ukr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_gemm_ukr.h b/testsuite/src/test_gemm_ukr.h index 72a563412..e75d1ff29 100644 --- a/testsuite/src/test_gemm_ukr.h +++ b/testsuite/src/test_gemm_ukr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_gemmtrsm_ukr.c b/testsuite/src/test_gemmtrsm_ukr.c index ff86640ae..958e8efe4 100644 --- a/testsuite/src/test_gemmtrsm_ukr.c +++ b/testsuite/src/test_gemmtrsm_ukr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_gemmtrsm_ukr.h b/testsuite/src/test_gemmtrsm_ukr.h index fd0d4cb9e..5c41e1f43 100644 --- a/testsuite/src/test_gemmtrsm_ukr.h +++ b/testsuite/src/test_gemmtrsm_ukr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_gemv.c b/testsuite/src/test_gemv.c index 7957de1e8..7f665021e 100644 --- a/testsuite/src/test_gemv.c +++ b/testsuite/src/test_gemv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_gemv.h b/testsuite/src/test_gemv.h index 6a62f47ea..85f611908 100644 --- a/testsuite/src/test_gemv.h +++ b/testsuite/src/test_gemv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_ger.c b/testsuite/src/test_ger.c index c0db8a2d6..9cf8e5074 100644 --- a/testsuite/src/test_ger.c +++ b/testsuite/src/test_ger.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_ger.h b/testsuite/src/test_ger.h index 17870e114..be26d04a2 100644 --- a/testsuite/src/test_ger.h +++ b/testsuite/src/test_ger.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_hemm.c b/testsuite/src/test_hemm.c index 8cd99074e..79b824565 100644 --- a/testsuite/src/test_hemm.c +++ b/testsuite/src/test_hemm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_hemm.h b/testsuite/src/test_hemm.h index be690ca4f..358807d3c 100644 --- a/testsuite/src/test_hemm.h +++ b/testsuite/src/test_hemm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_hemv.c b/testsuite/src/test_hemv.c index c937afb4d..b9410b6bd 100644 --- a/testsuite/src/test_hemv.c +++ b/testsuite/src/test_hemv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_hemv.h b/testsuite/src/test_hemv.h index bdeba819a..92b8621a1 100644 --- a/testsuite/src/test_hemv.h +++ b/testsuite/src/test_hemv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_her.c b/testsuite/src/test_her.c index 6490303c9..d0a166776 100644 --- a/testsuite/src/test_her.c +++ b/testsuite/src/test_her.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_her.h b/testsuite/src/test_her.h index c60736eec..dc947cf02 100644 --- a/testsuite/src/test_her.h +++ b/testsuite/src/test_her.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_her2.c b/testsuite/src/test_her2.c index b75082702..6a582730c 100644 --- a/testsuite/src/test_her2.c +++ b/testsuite/src/test_her2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_her2.h b/testsuite/src/test_her2.h index 44ea6664d..687230a8c 100644 --- a/testsuite/src/test_her2.h +++ b/testsuite/src/test_her2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_her2k.c b/testsuite/src/test_her2k.c index 65d797bbb..3ab177e37 100644 --- a/testsuite/src/test_her2k.c +++ b/testsuite/src/test_her2k.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_her2k.h b/testsuite/src/test_her2k.h index f0967b0fb..fd4d273a9 100644 --- a/testsuite/src/test_her2k.h +++ b/testsuite/src/test_her2k.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_herk.c b/testsuite/src/test_herk.c index d35e0d1e4..c182b8cf3 100644 --- a/testsuite/src/test_herk.c +++ b/testsuite/src/test_herk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_herk.h b/testsuite/src/test_herk.h index 381c106cf..1bcbf13d9 100644 --- a/testsuite/src/test_herk.h +++ b/testsuite/src/test_herk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_libblis.c b/testsuite/src/test_libblis.c index e6aee4239..13527a7c2 100644 --- a/testsuite/src/test_libblis.c +++ b/testsuite/src/test_libblis.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_libblis.h b/testsuite/src/test_libblis.h index 81603a876..eecfbdece 100644 --- a/testsuite/src/test_libblis.h +++ b/testsuite/src/test_libblis.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_normfm.c b/testsuite/src/test_normfm.c index e0d98c79e..24129bbea 100644 --- a/testsuite/src/test_normfm.c +++ b/testsuite/src/test_normfm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_normfm.h b/testsuite/src/test_normfm.h index d250f20a0..8949bf63a 100644 --- a/testsuite/src/test_normfm.h +++ b/testsuite/src/test_normfm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_normfv.c b/testsuite/src/test_normfv.c index d9e793d80..06ab1b9f9 100644 --- a/testsuite/src/test_normfv.c +++ b/testsuite/src/test_normfv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_normfv.h b/testsuite/src/test_normfv.h index a4ada409a..10944dabf 100644 --- a/testsuite/src/test_normfv.h +++ b/testsuite/src/test_normfv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_randm.c b/testsuite/src/test_randm.c index b37521ae7..8b962ee00 100644 --- a/testsuite/src/test_randm.c +++ b/testsuite/src/test_randm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_randm.h b/testsuite/src/test_randm.h index 1d192774a..3e73ac573 100644 --- a/testsuite/src/test_randm.h +++ b/testsuite/src/test_randm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_randv.c b/testsuite/src/test_randv.c index 7d919d205..f910507bb 100644 --- a/testsuite/src/test_randv.c +++ b/testsuite/src/test_randv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_randv.h b/testsuite/src/test_randv.h index 781c157cc..a31e1f67b 100644 --- a/testsuite/src/test_randv.h +++ b/testsuite/src/test_randv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_scal2m.c b/testsuite/src/test_scal2m.c index c8135e1ce..8f3210a76 100644 --- a/testsuite/src/test_scal2m.c +++ b/testsuite/src/test_scal2m.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_scal2m.h b/testsuite/src/test_scal2m.h index 79e4e7c39..ccd925206 100644 --- a/testsuite/src/test_scal2m.h +++ b/testsuite/src/test_scal2m.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_scal2v.c b/testsuite/src/test_scal2v.c index 47d37e847..0c42be768 100644 --- a/testsuite/src/test_scal2v.c +++ b/testsuite/src/test_scal2v.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_scal2v.h b/testsuite/src/test_scal2v.h index f2f5740cc..cab1f835a 100644 --- a/testsuite/src/test_scal2v.h +++ b/testsuite/src/test_scal2v.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_scalm.c b/testsuite/src/test_scalm.c index 62778ea79..dbf46bcef 100644 --- a/testsuite/src/test_scalm.c +++ b/testsuite/src/test_scalm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_scalm.h b/testsuite/src/test_scalm.h index 6dcc561c3..20bec6c79 100644 --- a/testsuite/src/test_scalm.h +++ b/testsuite/src/test_scalm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_scalv.c b/testsuite/src/test_scalv.c index 3ea6defbb..15b12a456 100644 --- a/testsuite/src/test_scalv.c +++ b/testsuite/src/test_scalv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_scalv.h b/testsuite/src/test_scalv.h index e4962e8f1..19ce107e3 100644 --- a/testsuite/src/test_scalv.h +++ b/testsuite/src/test_scalv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_setm.c b/testsuite/src/test_setm.c index 1e14c952c..e38b78320 100644 --- a/testsuite/src/test_setm.c +++ b/testsuite/src/test_setm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_setm.h b/testsuite/src/test_setm.h index bd5aee01e..0ce00cb29 100644 --- a/testsuite/src/test_setm.h +++ b/testsuite/src/test_setm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_setv.c b/testsuite/src/test_setv.c index 2cc845551..10eb60b73 100644 --- a/testsuite/src/test_setv.c +++ b/testsuite/src/test_setv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_setv.h b/testsuite/src/test_setv.h index 6e3a03838..76bdcd205 100644 --- a/testsuite/src/test_setv.h +++ b/testsuite/src/test_setv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_subm.c b/testsuite/src/test_subm.c index 2ad8016cf..9d0f12f2b 100644 --- a/testsuite/src/test_subm.c +++ b/testsuite/src/test_subm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_subm.h b/testsuite/src/test_subm.h index a84a99666..9f7f7eb89 100644 --- a/testsuite/src/test_subm.h +++ b/testsuite/src/test_subm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_subv.c b/testsuite/src/test_subv.c index 5c1db1a49..459bb83dd 100644 --- a/testsuite/src/test_subv.c +++ b/testsuite/src/test_subv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_subv.h b/testsuite/src/test_subv.h index 3ff8b04ed..6b121f093 100644 --- a/testsuite/src/test_subv.h +++ b/testsuite/src/test_subv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_symm.c b/testsuite/src/test_symm.c index 84da1d9bd..639ef9adb 100644 --- a/testsuite/src/test_symm.c +++ b/testsuite/src/test_symm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_symm.h b/testsuite/src/test_symm.h index 87196856c..c11cb4d3a 100644 --- a/testsuite/src/test_symm.h +++ b/testsuite/src/test_symm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_symv.c b/testsuite/src/test_symv.c index 634ade8cc..bbe06f202 100644 --- a/testsuite/src/test_symv.c +++ b/testsuite/src/test_symv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_symv.h b/testsuite/src/test_symv.h index a7a1f6f56..6924c37c0 100644 --- a/testsuite/src/test_symv.h +++ b/testsuite/src/test_symv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_syr.c b/testsuite/src/test_syr.c index c722ac8b9..c83db7e11 100644 --- a/testsuite/src/test_syr.c +++ b/testsuite/src/test_syr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_syr.h b/testsuite/src/test_syr.h index 2b323d8af..9f9cf2cb6 100644 --- a/testsuite/src/test_syr.h +++ b/testsuite/src/test_syr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_syr2.c b/testsuite/src/test_syr2.c index be4e4b220..5a1016736 100644 --- a/testsuite/src/test_syr2.c +++ b/testsuite/src/test_syr2.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_syr2.h b/testsuite/src/test_syr2.h index e38dd84f3..3cf0158cd 100644 --- a/testsuite/src/test_syr2.h +++ b/testsuite/src/test_syr2.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_syr2k.c b/testsuite/src/test_syr2k.c index 99463db79..5bb218af2 100644 --- a/testsuite/src/test_syr2k.c +++ b/testsuite/src/test_syr2k.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_syr2k.h b/testsuite/src/test_syr2k.h index 43f2b1ffb..d878bd164 100644 --- a/testsuite/src/test_syr2k.h +++ b/testsuite/src/test_syr2k.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_syrk.c b/testsuite/src/test_syrk.c index e6be7cf79..892d30b6a 100644 --- a/testsuite/src/test_syrk.c +++ b/testsuite/src/test_syrk.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_syrk.h b/testsuite/src/test_syrk.h index 34004c88d..31aaf9960 100644 --- a/testsuite/src/test_syrk.h +++ b/testsuite/src/test_syrk.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trmm.c b/testsuite/src/test_trmm.c index 45925090c..c427194de 100644 --- a/testsuite/src/test_trmm.c +++ b/testsuite/src/test_trmm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trmm.h b/testsuite/src/test_trmm.h index debcadce5..db1e72dd5 100644 --- a/testsuite/src/test_trmm.h +++ b/testsuite/src/test_trmm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trmm3.c b/testsuite/src/test_trmm3.c index 8e2409d74..d90d01b3c 100644 --- a/testsuite/src/test_trmm3.c +++ b/testsuite/src/test_trmm3.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trmm3.h b/testsuite/src/test_trmm3.h index c4e346cc7..7df146889 100644 --- a/testsuite/src/test_trmm3.h +++ b/testsuite/src/test_trmm3.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trmv.c b/testsuite/src/test_trmv.c index dd8fd7690..cf8d39115 100644 --- a/testsuite/src/test_trmv.c +++ b/testsuite/src/test_trmv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trmv.h b/testsuite/src/test_trmv.h index c649eb438..21eda6571 100644 --- a/testsuite/src/test_trmv.h +++ b/testsuite/src/test_trmv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trsm.c b/testsuite/src/test_trsm.c index b89d70c46..db137b6e1 100644 --- a/testsuite/src/test_trsm.c +++ b/testsuite/src/test_trsm.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trsm.h b/testsuite/src/test_trsm.h index ee41c0ecb..2643999b5 100644 --- a/testsuite/src/test_trsm.h +++ b/testsuite/src/test_trsm.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trsm_ukr.c b/testsuite/src/test_trsm_ukr.c index 675520321..8072f1d86 100644 --- a/testsuite/src/test_trsm_ukr.c +++ b/testsuite/src/test_trsm_ukr.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trsm_ukr.h b/testsuite/src/test_trsm_ukr.h index 1057f2853..cb3627827 100644 --- a/testsuite/src/test_trsm_ukr.h +++ b/testsuite/src/test_trsm_ukr.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trsv.c b/testsuite/src/test_trsv.c index e8d5c8c97..9289d5abd 100644 --- a/testsuite/src/test_trsv.c +++ b/testsuite/src/test_trsv.c @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/testsuite/src/test_trsv.h b/testsuite/src/test_trsv.h index 710e46a77..2e5bb2e45 100644 --- a/testsuite/src/test_trsv.h +++ b/testsuite/src/test_trsv.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/windows/Makefile b/windows/Makefile index 5680ea07b..5bb5a7988 100644 --- a/windows/Makefile +++ b/windows/Makefile @@ -3,7 +3,7 @@ # An object-based infrastructure for developing high-performance # dense linear algebra libraries. # -# Copyright (C) 2011, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # libblis is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as diff --git a/windows/build/bli_config.h b/windows/build/bli_config.h index 4191767be..5e3fc1c8e 100644 --- a/windows/build/bli_config.h +++ b/windows/build/bli_config.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/windows/build/bli_kernel.h b/windows/build/bli_kernel.h index b7459b434..388443d1e 100644 --- a/windows/build/bli_kernel.h +++ b/windows/build/bli_kernel.h @@ -4,7 +4,7 @@ An object-based framework for developing high-performance BLAS-like libraries. - Copyright (C) 2014, The University of Texas + Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/windows/build/config.mk.in b/windows/build/config.mk.in index 2c5d17dd1..400359bd1 100644 --- a/windows/build/config.mk.in +++ b/windows/build/config.mk.in @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/windows/build/defs.mk b/windows/build/defs.mk index 42fae0c2c..673276269 100644 --- a/windows/build/defs.mk +++ b/windows/build/defs.mk @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/windows/build/gather-src-for-windows.py b/windows/build/gather-src-for-windows.py index dc6a8e050..98e4e8019 100644 --- a/windows/build/gather-src-for-windows.py +++ b/windows/build/gather-src-for-windows.py @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/windows/build/gen-check-rev-file.py b/windows/build/gen-check-rev-file.py index eaae44b0d..5b715330b 100644 --- a/windows/build/gen-check-rev-file.py +++ b/windows/build/gen-check-rev-file.py @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/windows/build/gen-config-file.py b/windows/build/gen-config-file.py index bef0c8a7c..446f848a3 100644 --- a/windows/build/gen-config-file.py +++ b/windows/build/gen-config-file.py @@ -4,7 +4,7 @@ # An object-based framework for developing high-performance BLAS-like # libraries. # -# Copyright (C) 2014, The University of Texas +# Copyright (C) 2014, The University of Texas at Austin # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/windows/build/nmake-help.cmd b/windows/build/nmake-help.cmd index a0d77bde0..a9f928110 100644 --- a/windows/build/nmake-help.cmd +++ b/windows/build/nmake-help.cmd @@ -4,7 +4,7 @@ :: An object-based framework for developing high-performance BLAS-like :: libraries. :: -:: Copyright (C) 2014, The University of Texas +:: Copyright (C) 2014, The University of Texas at Austin :: :: Redistribution and use in source and binary forms, with or without :: modification, are permitted provided that the following conditions are diff --git a/windows/configure.cmd b/windows/configure.cmd index e23918c20..b70c2d503 100644 --- a/windows/configure.cmd +++ b/windows/configure.cmd @@ -4,7 +4,7 @@ :: An object-based framework for developing high-performance BLAS-like :: libraries. :: -:: Copyright (C) 2014, The University of Texas +:: Copyright (C) 2014, The University of Texas at Austin :: :: Redistribution and use in source and binary forms, with or without :: modification, are permitted provided that the following conditions are From 7ed415824d3b2e78541b6f64e404ca5347c06d3d Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Mon, 14 Jul 2014 16:14:33 -0500 Subject: [PATCH 12/19] Updated copyright headers (continued). Details: - Inserted "at Austin" into third clause of license declarations. Meant to include this change in previous commit. --- LICENSE | 6 +- Makefile | 6 +- build/bump-version.sh | 6 +- build/config.mk.in | 6 +- build/gen-make-frags/fragment.mk | 6 +- build/gen-make-frags/gen-make-frag.sh | 6 +- build/mirror-tree.sh | 6 +- build/templates/license.c | 6 +- build/templates/license.h | 6 +- build/templates/license.sh | 6 +- build/update-version-file.sh | 6 +- config/armv7a/bli_config.h | 6 +- config/armv7a/bli_kernel.h | 6 +- config/armv7a/make_defs.mk | 6 +- config/bgq/bli_config.h | 6 +- config/bgq/bli_kernel.h | 6 +- config/bgq/make_defs.mk | 6 +- config/cortex-a15/bli_config.h | 6 +- config/cortex-a15/bli_kernel.h | 6 +- config/cortex-a15/make_defs.mk | 6 +- config/cortex-a9/bli_config.h | 6 +- config/cortex-a9/bli_kernel.h | 6 +- config/cortex-a9/make_defs.mk | 6 +- config/dunnington/bli_config.h | 6 +- config/dunnington/bli_kernel.h | 6 +- config/dunnington/make_defs.mk | 6 +- config/loongson3a/bli_config.h | 6 +- config/loongson3a/bli_kernel.h | 6 +- config/loongson3a/make_defs.mk | 6 +- config/mic/bli_config.h | 6 +- config/mic/bli_kernel.h | 6 +- config/mic/make_defs.mk | 6 +- config/piledriver/bli_config.h | 6 +- config/piledriver/bli_kernel.h | 6 +- config/piledriver/make_defs.mk | 6 +- config/pnacl/bli_config.h | 6 +- config/pnacl/bli_kernel.h | 6 +- config/pnacl/make_defs.mk | 6 +- config/power7/bli_config.h | 6 +- config/power7/bli_kernel.h | 6 +- config/power7/make_defs.mk | 6 +- config/reference/bli_config.h | 6 +- config/reference/bli_kernel.h | 6 +- config/reference/make_defs.mk | 6 +- config/sandybridge/bli_config.h | 6 +- config/sandybridge/bli_kernel.h | 6 +- config/sandybridge/make_defs.mk | 6 +- config/template/bli_config.h | 6 +- config/template/bli_kernel.h | 6 +- .../template/kernels/1/bli_axpyv_opt_var1.c | 6 +- config/template/kernels/1/bli_dotv_opt_var1.c | 6 +- .../template/kernels/1f/bli_axpy2v_opt_var1.c | 6 +- .../template/kernels/1f/bli_axpyf_opt_var1.c | 6 +- .../kernels/1f/bli_dotaxpyv_opt_var1.c | 6 +- .../kernels/1f/bli_dotxaxpyf_opt_var1.c | 6 +- .../template/kernels/1f/bli_dotxf_opt_var1.c | 6 +- config/template/kernels/3/bli_gemm_opt_mxn.c | 6 +- .../kernels/3/bli_gemmtrsm_l_opt_mxn.c | 6 +- .../kernels/3/bli_gemmtrsm_u_opt_mxn.c | 6 +- .../template/kernels/3/bli_trsm_l_opt_mxn.c | 6 +- .../template/kernels/3/bli_trsm_u_opt_mxn.c | 6 +- config/template/make_defs.mk | 6 +- configure | 6 +- frame/0/absqsc/bli_absqsc.c | 6 +- frame/0/absqsc/bli_absqsc.h | 6 +- frame/0/absqsc/bli_absqsc_check.c | 6 +- frame/0/absqsc/bli_absqsc_check.h | 6 +- frame/0/absqsc/bli_absqsc_unb_var1.c | 6 +- frame/0/absqsc/bli_absqsc_unb_var1.h | 6 +- frame/0/addsc/bli_addsc.c | 6 +- frame/0/addsc/bli_addsc.h | 6 +- frame/0/addsc/bli_addsc_check.c | 6 +- frame/0/addsc/bli_addsc_check.h | 6 +- frame/0/addsc/bli_addsc_unb_var1.c | 6 +- frame/0/addsc/bli_addsc_unb_var1.h | 6 +- frame/0/copysc/bli_copysc.c | 6 +- frame/0/copysc/bli_copysc.h | 6 +- frame/0/copysc/bli_copysc_check.c | 6 +- frame/0/copysc/bli_copysc_check.h | 6 +- frame/0/copysc/bli_copysc_unb_var1.c | 6 +- frame/0/copysc/bli_copysc_unb_var1.h | 6 +- frame/0/divsc/bli_divsc.c | 6 +- frame/0/divsc/bli_divsc.h | 6 +- frame/0/divsc/bli_divsc_check.c | 6 +- frame/0/divsc/bli_divsc_check.h | 6 +- frame/0/divsc/bli_divsc_unb_var1.c | 6 +- frame/0/divsc/bli_divsc_unb_var1.h | 6 +- frame/0/getsc/bli_getsc.c | 6 +- frame/0/getsc/bli_getsc.h | 6 +- frame/0/getsc/bli_getsc_check.c | 6 +- frame/0/getsc/bli_getsc_check.h | 6 +- frame/0/mulsc/bli_mulsc.c | 6 +- frame/0/mulsc/bli_mulsc.h | 6 +- frame/0/mulsc/bli_mulsc_check.c | 6 +- frame/0/mulsc/bli_mulsc_check.h | 6 +- frame/0/mulsc/bli_mulsc_unb_var1.c | 6 +- frame/0/mulsc/bli_mulsc_unb_var1.h | 6 +- frame/0/normfsc/bli_normfsc.c | 6 +- frame/0/normfsc/bli_normfsc.h | 6 +- frame/0/normfsc/bli_normfsc_check.c | 6 +- frame/0/normfsc/bli_normfsc_check.h | 6 +- frame/0/normfsc/bli_normfsc_unb_var1.c | 6 +- frame/0/normfsc/bli_normfsc_unb_var1.h | 6 +- frame/0/setsc/bli_setsc.c | 6 +- frame/0/setsc/bli_setsc.h | 6 +- frame/0/setsc/bli_setsc_check.c | 6 +- frame/0/setsc/bli_setsc_check.h | 6 +- frame/0/sqrtsc/bli_sqrtsc.c | 6 +- frame/0/sqrtsc/bli_sqrtsc.h | 6 +- frame/0/sqrtsc/bli_sqrtsc_check.c | 6 +- frame/0/sqrtsc/bli_sqrtsc_check.h | 6 +- frame/0/sqrtsc/bli_sqrtsc_unb_var1.c | 6 +- frame/0/sqrtsc/bli_sqrtsc_unb_var1.h | 6 +- frame/0/subsc/bli_subsc.c | 6 +- frame/0/subsc/bli_subsc.h | 6 +- frame/0/subsc/bli_subsc_check.c | 6 +- frame/0/subsc/bli_subsc_check.h | 6 +- frame/0/subsc/bli_subsc_unb_var1.c | 6 +- frame/0/subsc/bli_subsc_unb_var1.h | 6 +- frame/0/unzipsc/bli_unzipsc.c | 6 +- frame/0/unzipsc/bli_unzipsc.h | 6 +- frame/0/unzipsc/bli_unzipsc_check.c | 6 +- frame/0/unzipsc/bli_unzipsc_check.h | 6 +- frame/0/unzipsc/bli_unzipsc_unb_var1.c | 6 +- frame/0/unzipsc/bli_unzipsc_unb_var1.h | 6 +- frame/0/zipsc/bli_zipsc.c | 6 +- frame/0/zipsc/bli_zipsc.h | 6 +- frame/0/zipsc/bli_zipsc_check.c | 6 +- frame/0/zipsc/bli_zipsc_check.h | 6 +- frame/0/zipsc/bli_zipsc_unb_var1.c | 6 +- frame/0/zipsc/bli_zipsc_unb_var1.h | 6 +- frame/1/addv/bli_addv.c | 6 +- frame/1/addv/bli_addv.h | 6 +- frame/1/addv/bli_addv_check.c | 6 +- frame/1/addv/bli_addv_check.h | 6 +- frame/1/addv/bli_addv_kernel.c | 6 +- frame/1/addv/bli_addv_kernel.h | 6 +- frame/1/addv/bli_addv_ref.c | 6 +- frame/1/addv/bli_addv_ref.h | 6 +- frame/1/axpyv/bli_axpyv.c | 6 +- frame/1/axpyv/bli_axpyv.h | 6 +- frame/1/axpyv/bli_axpyv_check.c | 6 +- frame/1/axpyv/bli_axpyv_check.h | 6 +- frame/1/axpyv/bli_axpyv_kernel.c | 6 +- frame/1/axpyv/bli_axpyv_kernel.h | 6 +- frame/1/axpyv/bli_axpyv_ref.c | 6 +- frame/1/axpyv/bli_axpyv_ref.h | 6 +- frame/1/copyv/bli_copyv.c | 6 +- frame/1/copyv/bli_copyv.h | 6 +- frame/1/copyv/bli_copyv_check.c | 6 +- frame/1/copyv/bli_copyv_check.h | 6 +- frame/1/copyv/bli_copyv_kernel.c | 6 +- frame/1/copyv/bli_copyv_kernel.h | 6 +- frame/1/copyv/bli_copyv_ref.c | 6 +- frame/1/copyv/bli_copyv_ref.h | 6 +- frame/1/dotv/bli_dotv.c | 6 +- frame/1/dotv/bli_dotv.h | 6 +- frame/1/dotv/bli_dotv_check.c | 6 +- frame/1/dotv/bli_dotv_check.h | 6 +- frame/1/dotv/bli_dotv_kernel.c | 6 +- frame/1/dotv/bli_dotv_kernel.h | 6 +- frame/1/dotv/bli_dotv_ref.c | 6 +- frame/1/dotv/bli_dotv_ref.h | 6 +- frame/1/dotxv/bli_dotxv.c | 6 +- frame/1/dotxv/bli_dotxv.h | 6 +- frame/1/dotxv/bli_dotxv_check.c | 6 +- frame/1/dotxv/bli_dotxv_check.h | 6 +- frame/1/dotxv/bli_dotxv_kernel.c | 6 +- frame/1/dotxv/bli_dotxv_kernel.h | 6 +- frame/1/dotxv/bli_dotxv_ref.c | 6 +- frame/1/dotxv/bli_dotxv_ref.h | 6 +- frame/1/invertv/bli_invertv.c | 6 +- frame/1/invertv/bli_invertv.h | 6 +- frame/1/invertv/bli_invertv_check.c | 6 +- frame/1/invertv/bli_invertv_check.h | 6 +- frame/1/invertv/bli_invertv_kernel.c | 6 +- frame/1/invertv/bli_invertv_kernel.h | 6 +- frame/1/invertv/bli_invertv_ref.c | 6 +- frame/1/invertv/bli_invertv_ref.h | 6 +- frame/1/packv/bli_packv.c | 6 +- frame/1/packv/bli_packv.h | 6 +- frame/1/packv/bli_packv_check.c | 6 +- frame/1/packv/bli_packv_check.h | 6 +- frame/1/packv/bli_packv_cntl.c | 6 +- frame/1/packv/bli_packv_cntl.h | 6 +- frame/1/packv/bli_packv_init.c | 6 +- frame/1/packv/bli_packv_init.h | 6 +- frame/1/packv/bli_packv_int.c | 6 +- frame/1/packv/bli_packv_int.h | 6 +- frame/1/packv/bli_packv_unb_var1.c | 6 +- frame/1/packv/bli_packv_unb_var1.h | 6 +- frame/1/scal2v/bli_scal2v.c | 6 +- frame/1/scal2v/bli_scal2v.h | 6 +- frame/1/scal2v/bli_scal2v_check.c | 6 +- frame/1/scal2v/bli_scal2v_check.h | 6 +- frame/1/scal2v/bli_scal2v_kernel.c | 6 +- frame/1/scal2v/bli_scal2v_kernel.h | 6 +- frame/1/scal2v/bli_scal2v_ref.c | 6 +- frame/1/scal2v/bli_scal2v_ref.h | 6 +- frame/1/scalv/bli_scalv.c | 6 +- frame/1/scalv/bli_scalv.h | 6 +- frame/1/scalv/bli_scalv_check.c | 6 +- frame/1/scalv/bli_scalv_check.h | 6 +- frame/1/scalv/bli_scalv_cntl.c | 6 +- frame/1/scalv/bli_scalv_cntl.h | 6 +- frame/1/scalv/bli_scalv_int.c | 6 +- frame/1/scalv/bli_scalv_int.h | 6 +- frame/1/scalv/bli_scalv_kernel.c | 6 +- frame/1/scalv/bli_scalv_kernel.h | 6 +- frame/1/scalv/bli_scalv_ref.c | 6 +- frame/1/scalv/bli_scalv_ref.h | 6 +- frame/1/setv/bli_setv.c | 6 +- frame/1/setv/bli_setv.h | 6 +- frame/1/setv/bli_setv_check.c | 6 +- frame/1/setv/bli_setv_check.h | 6 +- frame/1/setv/bli_setv_kernel.c | 6 +- frame/1/setv/bli_setv_kernel.h | 6 +- frame/1/setv/bli_setv_ref.c | 6 +- frame/1/setv/bli_setv_ref.h | 6 +- frame/1/setv/old/bli_setv_unb_var2.c | 6 +- frame/1/setv/old/bli_setv_unb_var2.h | 6 +- frame/1/subv/bli_subv.c | 6 +- frame/1/subv/bli_subv.h | 6 +- frame/1/subv/bli_subv_check.c | 6 +- frame/1/subv/bli_subv_check.h | 6 +- frame/1/subv/bli_subv_kernel.c | 6 +- frame/1/subv/bli_subv_kernel.h | 6 +- frame/1/subv/bli_subv_ref.c | 6 +- frame/1/subv/bli_subv_ref.h | 6 +- frame/1/swapv/bli_swapv.c | 6 +- frame/1/swapv/bli_swapv.h | 6 +- frame/1/swapv/bli_swapv_check.c | 6 +- frame/1/swapv/bli_swapv_check.h | 6 +- frame/1/swapv/bli_swapv_kernel.c | 6 +- frame/1/swapv/bli_swapv_kernel.h | 6 +- frame/1/swapv/bli_swapv_ref.c | 6 +- frame/1/swapv/bli_swapv_ref.h | 6 +- frame/1/unpackv/bli_unpackv.c | 6 +- frame/1/unpackv/bli_unpackv.h | 6 +- frame/1/unpackv/bli_unpackv_check.c | 6 +- frame/1/unpackv/bli_unpackv_check.h | 6 +- frame/1/unpackv/bli_unpackv_cntl.c | 6 +- frame/1/unpackv/bli_unpackv_cntl.h | 6 +- frame/1/unpackv/bli_unpackv_int.c | 6 +- frame/1/unpackv/bli_unpackv_int.h | 6 +- frame/1/unpackv/bli_unpackv_unb_var1.c | 6 +- frame/1/unpackv/bli_unpackv_unb_var1.h | 6 +- frame/1d/addd/bli_addd.c | 6 +- frame/1d/addd/bli_addd.h | 6 +- frame/1d/addd/bli_addd_check.c | 6 +- frame/1d/addd/bli_addd_check.h | 6 +- frame/1d/addd/bli_addd_unb_var1.c | 6 +- frame/1d/addd/bli_addd_unb_var1.h | 6 +- frame/1d/axpyd/bli_axpyd.c | 6 +- frame/1d/axpyd/bli_axpyd.h | 6 +- frame/1d/axpyd/bli_axpyd_check.c | 6 +- frame/1d/axpyd/bli_axpyd_check.h | 6 +- frame/1d/axpyd/bli_axpyd_unb_var1.c | 6 +- frame/1d/axpyd/bli_axpyd_unb_var1.h | 6 +- frame/1d/copyd/bli_copyd.c | 6 +- frame/1d/copyd/bli_copyd.h | 6 +- frame/1d/copyd/bli_copyd_check.c | 6 +- frame/1d/copyd/bli_copyd_check.h | 6 +- frame/1d/copyd/bli_copyd_unb_var1.c | 6 +- frame/1d/copyd/bli_copyd_unb_var1.h | 6 +- frame/1d/invertd/bli_invertd.c | 6 +- frame/1d/invertd/bli_invertd.h | 6 +- frame/1d/invertd/bli_invertd_check.c | 6 +- frame/1d/invertd/bli_invertd_check.h | 6 +- frame/1d/invertd/bli_invertd_unb_var1.c | 6 +- frame/1d/invertd/bli_invertd_unb_var1.h | 6 +- frame/1d/scal2d/bli_scal2d.c | 6 +- frame/1d/scal2d/bli_scal2d.h | 6 +- frame/1d/scal2d/bli_scal2d_check.c | 6 +- frame/1d/scal2d/bli_scal2d_check.h | 6 +- frame/1d/scal2d/bli_scal2d_unb_var1.c | 6 +- frame/1d/scal2d/bli_scal2d_unb_var1.h | 6 +- frame/1d/scald/bli_scald.c | 6 +- frame/1d/scald/bli_scald.h | 6 +- frame/1d/scald/bli_scald_check.c | 6 +- frame/1d/scald/bli_scald_check.h | 6 +- frame/1d/scald/bli_scald_unb_var1.c | 6 +- frame/1d/scald/bli_scald_unb_var1.h | 6 +- frame/1d/setd/bli_setd.c | 6 +- frame/1d/setd/bli_setd.h | 6 +- frame/1d/setd/bli_setd_check.c | 6 +- frame/1d/setd/bli_setd_check.h | 6 +- frame/1d/setd/bli_setd_unb_var1.c | 6 +- frame/1d/setd/bli_setd_unb_var1.h | 6 +- frame/1d/subd/bli_subd.c | 6 +- frame/1d/subd/bli_subd.h | 6 +- frame/1d/subd/bli_subd_check.c | 6 +- frame/1d/subd/bli_subd_check.h | 6 +- frame/1d/subd/bli_subd_unb_var1.c | 6 +- frame/1d/subd/bli_subd_unb_var1.h | 6 +- frame/1f/axpy2v/bli_axpy2v.c | 6 +- frame/1f/axpy2v/bli_axpy2v.h | 6 +- frame/1f/axpy2v/bli_axpy2v_check.c | 6 +- frame/1f/axpy2v/bli_axpy2v_check.h | 6 +- frame/1f/axpy2v/bli_axpy2v_kernel.c | 6 +- frame/1f/axpy2v/bli_axpy2v_kernel.h | 6 +- frame/1f/axpy2v/bli_axpy2v_ref.c | 6 +- frame/1f/axpy2v/bli_axpy2v_ref.h | 6 +- frame/1f/axpyf/bli_axpyf.c | 6 +- frame/1f/axpyf/bli_axpyf.h | 6 +- frame/1f/axpyf/bli_axpyf_check.c | 6 +- frame/1f/axpyf/bli_axpyf_check.h | 6 +- frame/1f/axpyf/bli_axpyf_fusefac.c | 6 +- frame/1f/axpyf/bli_axpyf_fusefac.h | 6 +- frame/1f/axpyf/bli_axpyf_kernel.c | 6 +- frame/1f/axpyf/bli_axpyf_kernel.h | 6 +- frame/1f/axpyf/bli_axpyf_ref.c | 6 +- frame/1f/axpyf/bli_axpyf_ref.h | 6 +- frame/1f/dotaxpyv/bli_dotaxpyv.c | 6 +- frame/1f/dotaxpyv/bli_dotaxpyv.h | 6 +- frame/1f/dotaxpyv/bli_dotaxpyv_check.c | 6 +- frame/1f/dotaxpyv/bli_dotaxpyv_check.h | 6 +- frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c | 6 +- frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h | 6 +- frame/1f/dotaxpyv/bli_dotaxpyv_ref.c | 6 +- frame/1f/dotaxpyv/bli_dotaxpyv_ref.h | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf.c | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf.h | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c | 6 +- frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h | 6 +- frame/1f/dotxf/bli_dotxf.c | 6 +- frame/1f/dotxf/bli_dotxf.h | 6 +- frame/1f/dotxf/bli_dotxf_check.c | 6 +- frame/1f/dotxf/bli_dotxf_check.h | 6 +- frame/1f/dotxf/bli_dotxf_fusefac.c | 6 +- frame/1f/dotxf/bli_dotxf_fusefac.h | 6 +- frame/1f/dotxf/bli_dotxf_kernel.c | 6 +- frame/1f/dotxf/bli_dotxf_kernel.h | 6 +- frame/1f/dotxf/bli_dotxf_ref.c | 6 +- frame/1f/dotxf/bli_dotxf_ref.h | 6 +- frame/1m/addm/bli_addm.c | 6 +- frame/1m/addm/bli_addm.h | 6 +- frame/1m/addm/bli_addm_check.c | 6 +- frame/1m/addm/bli_addm_check.h | 6 +- frame/1m/addm/bli_addm_unb_var1.c | 6 +- frame/1m/addm/bli_addm_unb_var1.h | 6 +- frame/1m/axpym/bli_axpym.c | 6 +- frame/1m/axpym/bli_axpym.h | 6 +- frame/1m/axpym/bli_axpym_check.c | 6 +- frame/1m/axpym/bli_axpym_check.h | 6 +- frame/1m/axpym/bli_axpym_unb_var1.c | 6 +- frame/1m/axpym/bli_axpym_unb_var1.h | 6 +- frame/1m/copym/bli_copym.c | 6 +- frame/1m/copym/bli_copym.h | 6 +- frame/1m/copym/bli_copym_check.c | 6 +- frame/1m/copym/bli_copym_check.h | 6 +- frame/1m/copym/bli_copym_unb_var1.c | 6 +- frame/1m/copym/bli_copym_unb_var1.h | 6 +- frame/1m/packm/bli_packm.c | 6 +- frame/1m/packm/bli_packm.h | 6 +- frame/1m/packm/bli_packm_blk_var1.c | 6 +- frame/1m/packm/bli_packm_blk_var1.h | 6 +- frame/1m/packm/bli_packm_blk_var3.c | 6 +- frame/1m/packm/bli_packm_blk_var3.h | 6 +- frame/1m/packm/bli_packm_blk_var4.c | 6 +- frame/1m/packm/bli_packm_blk_var4.h | 6 +- frame/1m/packm/bli_packm_check.c | 6 +- frame/1m/packm/bli_packm_check.h | 6 +- frame/1m/packm/bli_packm_cntl.c | 6 +- frame/1m/packm/bli_packm_cntl.h | 6 +- frame/1m/packm/bli_packm_cxk.c | 6 +- frame/1m/packm/bli_packm_cxk.h | 6 +- frame/1m/packm/bli_packm_cxk_ri.c | 6 +- frame/1m/packm/bli_packm_cxk_ri.h | 6 +- frame/1m/packm/bli_packm_cxk_ri3.c | 6 +- frame/1m/packm/bli_packm_cxk_ri3.h | 6 +- frame/1m/packm/bli_packm_gen_cxk.c | 6 +- frame/1m/packm/bli_packm_gen_cxk.h | 6 +- frame/1m/packm/bli_packm_herm_cxk.c | 6 +- frame/1m/packm/bli_packm_herm_cxk.h | 6 +- frame/1m/packm/bli_packm_init.c | 6 +- frame/1m/packm/bli_packm_init.h | 6 +- frame/1m/packm/bli_packm_int.c | 6 +- frame/1m/packm/bli_packm_int.h | 6 +- frame/1m/packm/bli_packm_part.c | 6 +- frame/1m/packm/bli_packm_part.h | 6 +- frame/1m/packm/bli_packm_threading.c | 6 +- frame/1m/packm/bli_packm_threading.h | 6 +- frame/1m/packm/bli_packm_tri_cxk.c | 6 +- frame/1m/packm/bli_packm_tri_cxk.h | 6 +- frame/1m/packm/bli_packm_unb_var1.c | 6 +- frame/1m/packm/bli_packm_unb_var1.h | 6 +- frame/1m/packm/old/bli_packm_blk_var1.c | 6 +- frame/1m/packm/old/bli_packm_blk_var1.h | 6 +- frame/1m/packm/old/bli_packm_blk_var2.c | 6 +- frame/1m/packm/old/bli_packm_blk_var2.h | 6 +- frame/1m/packm/old/bli_packm_densify.c | 6 +- frame/1m/packm/old/bli_packm_densify.h | 6 +- frame/1m/packm/other/bli_packm_blk_var2.c | 6 +- frame/1m/packm/ukernels/bli_packm_ref_10xk.c | 6 +- frame/1m/packm/ukernels/bli_packm_ref_10xk.h | 6 +- frame/1m/packm/ukernels/bli_packm_ref_12xk.c | 6 +- frame/1m/packm/ukernels/bli_packm_ref_12xk.h | 6 +- frame/1m/packm/ukernels/bli_packm_ref_14xk.c | 6 +- frame/1m/packm/ukernels/bli_packm_ref_14xk.h | 6 +- frame/1m/packm/ukernels/bli_packm_ref_16xk.c | 6 +- frame/1m/packm/ukernels/bli_packm_ref_16xk.h | 6 +- frame/1m/packm/ukernels/bli_packm_ref_2xk.c | 6 +- frame/1m/packm/ukernels/bli_packm_ref_2xk.h | 6 +- frame/1m/packm/ukernels/bli_packm_ref_4xk.c | 6 +- frame/1m/packm/ukernels/bli_packm_ref_4xk.h | 6 +- frame/1m/packm/ukernels/bli_packm_ref_6xk.c | 6 +- frame/1m/packm/ukernels/bli_packm_ref_6xk.h | 6 +- frame/1m/packm/ukernels/bli_packm_ref_8xk.c | 6 +- frame/1m/packm/ukernels/bli_packm_ref_8xk.h | 6 +- frame/1m/scal2m/bli_scal2m.c | 6 +- frame/1m/scal2m/bli_scal2m.h | 6 +- frame/1m/scal2m/bli_scal2m_check.c | 6 +- frame/1m/scal2m/bli_scal2m_check.h | 6 +- frame/1m/scal2m/bli_scal2m_unb_var1.c | 6 +- frame/1m/scal2m/bli_scal2m_unb_var1.h | 6 +- frame/1m/scalm/bli_scalm.c | 6 +- frame/1m/scalm/bli_scalm.h | 6 +- frame/1m/scalm/bli_scalm_check.c | 6 +- frame/1m/scalm/bli_scalm_check.h | 6 +- frame/1m/scalm/bli_scalm_cntl.c | 6 +- frame/1m/scalm/bli_scalm_cntl.h | 6 +- frame/1m/scalm/bli_scalm_int.c | 6 +- frame/1m/scalm/bli_scalm_int.h | 6 +- frame/1m/scalm/bli_scalm_unb_var1.c | 6 +- frame/1m/scalm/bli_scalm_unb_var1.h | 6 +- frame/1m/setm/bli_setm.c | 6 +- frame/1m/setm/bli_setm.h | 6 +- frame/1m/setm/bli_setm_check.c | 6 +- frame/1m/setm/bli_setm_check.h | 6 +- frame/1m/setm/bli_setm_unb_var1.c | 6 +- frame/1m/setm/bli_setm_unb_var1.h | 6 +- frame/1m/subm/bli_subm.c | 6 +- frame/1m/subm/bli_subm.h | 6 +- frame/1m/subm/bli_subm_check.c | 6 +- frame/1m/subm/bli_subm_check.h | 6 +- frame/1m/subm/bli_subm_unb_var1.c | 6 +- frame/1m/subm/bli_subm_unb_var1.h | 6 +- frame/1m/unpackm/bli_unpackm.c | 6 +- frame/1m/unpackm/bli_unpackm.h | 6 +- frame/1m/unpackm/bli_unpackm_blk_var2.c | 6 +- frame/1m/unpackm/bli_unpackm_blk_var2.h | 6 +- frame/1m/unpackm/bli_unpackm_check.c | 6 +- frame/1m/unpackm/bli_unpackm_check.h | 6 +- frame/1m/unpackm/bli_unpackm_cntl.c | 6 +- frame/1m/unpackm/bli_unpackm_cntl.h | 6 +- frame/1m/unpackm/bli_unpackm_cxk.c | 6 +- frame/1m/unpackm/bli_unpackm_cxk.h | 6 +- frame/1m/unpackm/bli_unpackm_int.c | 6 +- frame/1m/unpackm/bli_unpackm_int.h | 6 +- frame/1m/unpackm/bli_unpackm_unb_var1.c | 6 +- frame/1m/unpackm/bli_unpackm_unb_var1.h | 6 +- frame/1m/unpackm/old/bli_unpackm_blk_var1.c | 6 +- frame/1m/unpackm/old/bli_unpackm_blk_var1.h | 6 +- .../unpackm/ukernels/bli_unpackm_ref_10xk.c | 6 +- .../unpackm/ukernels/bli_unpackm_ref_10xk.h | 6 +- .../unpackm/ukernels/bli_unpackm_ref_12xk.c | 6 +- .../unpackm/ukernels/bli_unpackm_ref_12xk.h | 6 +- .../unpackm/ukernels/bli_unpackm_ref_14xk.c | 6 +- .../unpackm/ukernels/bli_unpackm_ref_14xk.h | 6 +- .../unpackm/ukernels/bli_unpackm_ref_16xk.c | 6 +- .../unpackm/ukernels/bli_unpackm_ref_16xk.h | 6 +- .../1m/unpackm/ukernels/bli_unpackm_ref_2xk.c | 6 +- .../1m/unpackm/ukernels/bli_unpackm_ref_2xk.h | 6 +- .../1m/unpackm/ukernels/bli_unpackm_ref_4xk.c | 6 +- .../1m/unpackm/ukernels/bli_unpackm_ref_4xk.h | 6 +- .../1m/unpackm/ukernels/bli_unpackm_ref_6xk.c | 6 +- .../1m/unpackm/ukernels/bli_unpackm_ref_6xk.h | 6 +- .../1m/unpackm/ukernels/bli_unpackm_ref_8xk.c | 6 +- .../1m/unpackm/ukernels/bli_unpackm_ref_8xk.h | 6 +- frame/2/gemv/bli_gemv.c | 6 +- frame/2/gemv/bli_gemv.h | 6 +- frame/2/gemv/bli_gemv_blk_var1.c | 6 +- frame/2/gemv/bli_gemv_blk_var1.h | 6 +- frame/2/gemv/bli_gemv_blk_var2.c | 6 +- frame/2/gemv/bli_gemv_blk_var2.h | 6 +- frame/2/gemv/bli_gemv_check.c | 6 +- frame/2/gemv/bli_gemv_check.h | 6 +- frame/2/gemv/bli_gemv_cntl.c | 6 +- frame/2/gemv/bli_gemv_cntl.h | 6 +- frame/2/gemv/bli_gemv_int.c | 6 +- frame/2/gemv/bli_gemv_int.h | 6 +- frame/2/gemv/bli_gemv_unb_var1.c | 6 +- frame/2/gemv/bli_gemv_unb_var1.h | 6 +- frame/2/gemv/bli_gemv_unb_var2.c | 6 +- frame/2/gemv/bli_gemv_unb_var2.h | 6 +- frame/2/gemv/bli_gemv_unf_var1.c | 6 +- frame/2/gemv/bli_gemv_unf_var1.h | 6 +- frame/2/gemv/bli_gemv_unf_var2.c | 6 +- frame/2/gemv/bli_gemv_unf_var2.h | 6 +- frame/2/ger/bli_ger.c | 6 +- frame/2/ger/bli_ger.h | 6 +- frame/2/ger/bli_ger_blk_var1.c | 6 +- frame/2/ger/bli_ger_blk_var1.h | 6 +- frame/2/ger/bli_ger_blk_var2.c | 6 +- frame/2/ger/bli_ger_blk_var2.h | 6 +- frame/2/ger/bli_ger_check.c | 6 +- frame/2/ger/bli_ger_check.h | 6 +- frame/2/ger/bli_ger_cntl.c | 6 +- frame/2/ger/bli_ger_cntl.h | 6 +- frame/2/ger/bli_ger_int.c | 6 +- frame/2/ger/bli_ger_int.h | 6 +- frame/2/ger/bli_ger_unb_var1.c | 6 +- frame/2/ger/bli_ger_unb_var1.h | 6 +- frame/2/ger/bli_ger_unb_var2.c | 6 +- frame/2/ger/bli_ger_unb_var2.h | 6 +- frame/2/hemv/bli_hemv.c | 6 +- frame/2/hemv/bli_hemv.h | 6 +- frame/2/hemv/bli_hemv_blk_var1.c | 6 +- frame/2/hemv/bli_hemv_blk_var1.h | 6 +- frame/2/hemv/bli_hemv_blk_var2.c | 6 +- frame/2/hemv/bli_hemv_blk_var2.h | 6 +- frame/2/hemv/bli_hemv_blk_var3.c | 6 +- frame/2/hemv/bli_hemv_blk_var3.h | 6 +- frame/2/hemv/bli_hemv_blk_var4.c | 6 +- frame/2/hemv/bli_hemv_blk_var4.h | 6 +- frame/2/hemv/bli_hemv_check.c | 6 +- frame/2/hemv/bli_hemv_check.h | 6 +- frame/2/hemv/bli_hemv_cntl.c | 6 +- frame/2/hemv/bli_hemv_cntl.h | 6 +- frame/2/hemv/bli_hemv_int.c | 6 +- frame/2/hemv/bli_hemv_int.h | 6 +- frame/2/hemv/bli_hemv_unb_var1.c | 6 +- frame/2/hemv/bli_hemv_unb_var1.h | 6 +- frame/2/hemv/bli_hemv_unb_var2.c | 6 +- frame/2/hemv/bli_hemv_unb_var2.h | 6 +- frame/2/hemv/bli_hemv_unb_var3.c | 6 +- frame/2/hemv/bli_hemv_unb_var3.h | 6 +- frame/2/hemv/bli_hemv_unb_var4.c | 6 +- frame/2/hemv/bli_hemv_unb_var4.h | 6 +- frame/2/hemv/bli_hemv_unf_var1.c | 6 +- frame/2/hemv/bli_hemv_unf_var1.h | 6 +- frame/2/hemv/bli_hemv_unf_var1a.c | 6 +- frame/2/hemv/bli_hemv_unf_var1a.h | 6 +- frame/2/hemv/bli_hemv_unf_var3.c | 6 +- frame/2/hemv/bli_hemv_unf_var3.h | 6 +- frame/2/hemv/bli_hemv_unf_var3a.c | 6 +- frame/2/hemv/bli_hemv_unf_var3a.h | 6 +- frame/2/her/bli_her.c | 6 +- frame/2/her/bli_her.h | 6 +- frame/2/her/bli_her_blk_var1.c | 6 +- frame/2/her/bli_her_blk_var1.h | 6 +- frame/2/her/bli_her_blk_var2.c | 6 +- frame/2/her/bli_her_blk_var2.h | 6 +- frame/2/her/bli_her_check.c | 6 +- frame/2/her/bli_her_check.h | 6 +- frame/2/her/bli_her_cntl.c | 6 +- frame/2/her/bli_her_cntl.h | 6 +- frame/2/her/bli_her_int.c | 6 +- frame/2/her/bli_her_int.h | 6 +- frame/2/her/bli_her_unb_var1.c | 6 +- frame/2/her/bli_her_unb_var1.h | 6 +- frame/2/her/bli_her_unb_var2.c | 6 +- frame/2/her/bli_her_unb_var2.h | 6 +- frame/2/her2/bli_her2.c | 6 +- frame/2/her2/bli_her2.h | 6 +- frame/2/her2/bli_her2_blk_var1.c | 6 +- frame/2/her2/bli_her2_blk_var1.h | 6 +- frame/2/her2/bli_her2_blk_var2.c | 6 +- frame/2/her2/bli_her2_blk_var2.h | 6 +- frame/2/her2/bli_her2_blk_var3.c | 6 +- frame/2/her2/bli_her2_blk_var3.h | 6 +- frame/2/her2/bli_her2_blk_var4.c | 6 +- frame/2/her2/bli_her2_blk_var4.h | 6 +- frame/2/her2/bli_her2_check.c | 6 +- frame/2/her2/bli_her2_check.h | 6 +- frame/2/her2/bli_her2_cntl.c | 6 +- frame/2/her2/bli_her2_cntl.h | 6 +- frame/2/her2/bli_her2_int.c | 6 +- frame/2/her2/bli_her2_int.h | 6 +- frame/2/her2/bli_her2_unb_var1.c | 6 +- frame/2/her2/bli_her2_unb_var1.h | 6 +- frame/2/her2/bli_her2_unb_var2.c | 6 +- frame/2/her2/bli_her2_unb_var2.h | 6 +- frame/2/her2/bli_her2_unb_var3.c | 6 +- frame/2/her2/bli_her2_unb_var3.h | 6 +- frame/2/her2/bli_her2_unb_var4.c | 6 +- frame/2/her2/bli_her2_unb_var4.h | 6 +- frame/2/her2/bli_her2_unf_var1.c | 6 +- frame/2/her2/bli_her2_unf_var1.h | 6 +- frame/2/her2/bli_her2_unf_var4.c | 6 +- frame/2/her2/bli_her2_unf_var4.h | 6 +- frame/2/symv/bli_symv.c | 6 +- frame/2/symv/bli_symv.h | 6 +- frame/2/symv/bli_symv_check.c | 6 +- frame/2/symv/bli_symv_check.h | 6 +- frame/2/syr/bli_syr.c | 6 +- frame/2/syr/bli_syr.h | 6 +- frame/2/syr/bli_syr_check.c | 6 +- frame/2/syr/bli_syr_check.h | 6 +- frame/2/syr2/bli_syr2.c | 6 +- frame/2/syr2/bli_syr2.h | 6 +- frame/2/syr2/bli_syr2_check.c | 6 +- frame/2/syr2/bli_syr2_check.h | 6 +- frame/2/trmv/bli_trmv.c | 6 +- frame/2/trmv/bli_trmv.h | 6 +- frame/2/trmv/bli_trmv_check.c | 6 +- frame/2/trmv/bli_trmv_check.h | 6 +- frame/2/trmv/bli_trmv_cntl.c | 6 +- frame/2/trmv/bli_trmv_cntl.h | 6 +- frame/2/trmv/bli_trmv_int.c | 6 +- frame/2/trmv/bli_trmv_int.h | 6 +- frame/2/trmv/bli_trmv_l_blk_var1.c | 6 +- frame/2/trmv/bli_trmv_l_blk_var1.h | 6 +- frame/2/trmv/bli_trmv_l_blk_var2.c | 6 +- frame/2/trmv/bli_trmv_l_blk_var2.h | 6 +- frame/2/trmv/bli_trmv_u_blk_var1.c | 6 +- frame/2/trmv/bli_trmv_u_blk_var1.h | 6 +- frame/2/trmv/bli_trmv_u_blk_var2.c | 6 +- frame/2/trmv/bli_trmv_u_blk_var2.h | 6 +- frame/2/trmv/bli_trmv_unb_var1.c | 6 +- frame/2/trmv/bli_trmv_unb_var1.h | 6 +- frame/2/trmv/bli_trmv_unb_var2.c | 6 +- frame/2/trmv/bli_trmv_unb_var2.h | 6 +- frame/2/trmv/bli_trmv_unf_var1.c | 6 +- frame/2/trmv/bli_trmv_unf_var1.h | 6 +- frame/2/trmv/bli_trmv_unf_var2.c | 6 +- frame/2/trmv/bli_trmv_unf_var2.h | 6 +- frame/2/trsv/bli_trsv.c | 6 +- frame/2/trsv/bli_trsv.h | 6 +- frame/2/trsv/bli_trsv_check.c | 6 +- frame/2/trsv/bli_trsv_check.h | 6 +- frame/2/trsv/bli_trsv_cntl.c | 6 +- frame/2/trsv/bli_trsv_cntl.h | 6 +- frame/2/trsv/bli_trsv_int.c | 6 +- frame/2/trsv/bli_trsv_int.h | 6 +- frame/2/trsv/bli_trsv_l_blk_var1.c | 6 +- frame/2/trsv/bli_trsv_l_blk_var1.h | 6 +- frame/2/trsv/bli_trsv_l_blk_var2.c | 6 +- frame/2/trsv/bli_trsv_l_blk_var2.h | 6 +- frame/2/trsv/bli_trsv_u_blk_var1.c | 6 +- frame/2/trsv/bli_trsv_u_blk_var1.h | 6 +- frame/2/trsv/bli_trsv_u_blk_var2.c | 6 +- frame/2/trsv/bli_trsv_u_blk_var2.h | 6 +- frame/2/trsv/bli_trsv_unb_var1.c | 6 +- frame/2/trsv/bli_trsv_unb_var1.h | 6 +- frame/2/trsv/bli_trsv_unb_var2.c | 6 +- frame/2/trsv/bli_trsv_unb_var2.h | 6 +- frame/2/trsv/bli_trsv_unf_var1.c | 6 +- frame/2/trsv/bli_trsv_unf_var1.h | 6 +- frame/2/trsv/bli_trsv_unf_var2.c | 6 +- frame/2/trsv/bli_trsv_unf_var2.h | 6 +- frame/3/gemm/3m/bli_gemm3m.c | 6 +- frame/3/gemm/3m/bli_gemm3m.h | 6 +- frame/3/gemm/3m/bli_gemm3m_cntl.c | 6 +- frame/3/gemm/3m/bli_gemm3m_cntl.h | 6 +- frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c | 6 +- frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h | 6 +- frame/3/gemm/4m/bli_gemm4m.c | 6 +- frame/3/gemm/4m/bli_gemm4m.h | 6 +- frame/3/gemm/4m/bli_gemm4m_cntl.c | 6 +- frame/3/gemm/4m/bli_gemm4m_cntl.h | 6 +- frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c | 6 +- frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h | 6 +- frame/3/gemm/bli_gemm.c | 6 +- frame/3/gemm/bli_gemm.h | 6 +- frame/3/gemm/bli_gemm_blk_var1f.c | 6 +- frame/3/gemm/bli_gemm_blk_var1f.h | 6 +- frame/3/gemm/bli_gemm_blk_var2f.c | 6 +- frame/3/gemm/bli_gemm_blk_var2f.h | 6 +- frame/3/gemm/bli_gemm_blk_var3f.c | 6 +- frame/3/gemm/bli_gemm_blk_var3f.h | 6 +- frame/3/gemm/bli_gemm_check.c | 6 +- frame/3/gemm/bli_gemm_check.h | 6 +- frame/3/gemm/bli_gemm_cntl.c | 6 +- frame/3/gemm/bli_gemm_cntl.h | 6 +- frame/3/gemm/bli_gemm_cntl_exp.c | 6 +- frame/3/gemm/bli_gemm_cntl_exp.h | 6 +- frame/3/gemm/bli_gemm_front.c | 6 +- frame/3/gemm/bli_gemm_front.h | 6 +- frame/3/gemm/bli_gemm_int.c | 6 +- frame/3/gemm/bli_gemm_int.h | 6 +- frame/3/gemm/bli_gemm_ker_var2.c | 6 +- frame/3/gemm/bli_gemm_ker_var2.h | 6 +- frame/3/gemm/bli_gemm_ker_var5.c | 6 +- frame/3/gemm/bli_gemm_ker_var5.h | 6 +- frame/3/gemm/bli_gemm_target.c | 6 +- frame/3/gemm/bli_gemm_target.h | 6 +- frame/3/gemm/bli_gemm_threading.c | 6 +- frame/3/gemm/bli_gemm_threading.h | 6 +- frame/3/gemm/bli_gemm_ukernel.c | 6 +- frame/3/gemm/bli_gemm_ukernel.h | 6 +- frame/3/gemm/other/bli_gemm_blk_var4.c | 6 +- frame/3/gemm/other/bli_gemm_blk_var4.h | 6 +- frame/3/gemm/other/bli_gemm_ker_var2.c | 6 +- frame/3/gemm/ukernels/bli_gemm_ukr_ref.c | 6 +- frame/3/gemm/ukernels/bli_gemm_ukr_ref.h | 6 +- frame/3/hemm/3m/bli_hemm3m.c | 6 +- frame/3/hemm/3m/bli_hemm3m.h | 6 +- frame/3/hemm/4m/bli_hemm4m.c | 6 +- frame/3/hemm/4m/bli_hemm4m.h | 6 +- frame/3/hemm/bli_hemm.c | 6 +- frame/3/hemm/bli_hemm.h | 6 +- frame/3/hemm/bli_hemm_check.c | 6 +- frame/3/hemm/bli_hemm_check.h | 6 +- frame/3/hemm/bli_hemm_front.c | 6 +- frame/3/hemm/bli_hemm_front.h | 6 +- frame/3/her2k/3m/bli_her2k3m.c | 6 +- frame/3/her2k/3m/bli_her2k3m.h | 6 +- frame/3/her2k/4m/bli_her2k4m.c | 6 +- frame/3/her2k/4m/bli_her2k4m.h | 6 +- frame/3/her2k/attic/bli_her2k_blk_var1f.c | 6 +- frame/3/her2k/attic/bli_her2k_blk_var1f.h | 6 +- frame/3/her2k/attic/bli_her2k_blk_var2f.c | 6 +- frame/3/her2k/attic/bli_her2k_blk_var2f.h | 6 +- frame/3/her2k/attic/bli_her2k_blk_var3f.c | 6 +- frame/3/her2k/attic/bli_her2k_blk_var3f.h | 6 +- frame/3/her2k/attic/bli_her2k_cntl.c | 6 +- frame/3/her2k/attic/bli_her2k_cntl.h | 6 +- frame/3/her2k/attic/bli_her2k_int.c | 6 +- frame/3/her2k/attic/bli_her2k_int.h | 6 +- frame/3/her2k/attic/bli_her2k_l_ker_var2.c | 6 +- frame/3/her2k/attic/bli_her2k_l_ker_var2.h | 6 +- frame/3/her2k/attic/bli_her2k_target.c | 6 +- frame/3/her2k/attic/bli_her2k_target.h | 6 +- frame/3/her2k/attic/bli_her2k_u_ker_var2.c | 6 +- frame/3/her2k/attic/bli_her2k_u_ker_var2.h | 6 +- frame/3/her2k/bli_her2k.c | 6 +- frame/3/her2k/bli_her2k.h | 6 +- frame/3/her2k/bli_her2k_check.c | 6 +- frame/3/her2k/bli_her2k_check.h | 6 +- frame/3/her2k/bli_her2k_front.c | 6 +- frame/3/her2k/bli_her2k_front.h | 6 +- frame/3/herk/3m/bli_herk3m.c | 6 +- frame/3/herk/3m/bli_herk3m.h | 6 +- frame/3/herk/3m/bli_herk3m_cntl.c | 6 +- frame/3/herk/3m/bli_herk3m_cntl.h | 6 +- frame/3/herk/4m/bli_herk4m.c | 6 +- frame/3/herk/4m/bli_herk4m.h | 6 +- frame/3/herk/4m/bli_herk4m_cntl.c | 6 +- frame/3/herk/4m/bli_herk4m_cntl.h | 6 +- frame/3/herk/bli_herk.c | 6 +- frame/3/herk/bli_herk.h | 6 +- frame/3/herk/bli_herk_blk_var1f.c | 6 +- frame/3/herk/bli_herk_blk_var1f.h | 6 +- frame/3/herk/bli_herk_blk_var2f.c | 6 +- frame/3/herk/bli_herk_blk_var2f.h | 6 +- frame/3/herk/bli_herk_blk_var3f.c | 6 +- frame/3/herk/bli_herk_blk_var3f.h | 6 +- frame/3/herk/bli_herk_check.c | 6 +- frame/3/herk/bli_herk_check.h | 6 +- frame/3/herk/bli_herk_cntl.c | 6 +- frame/3/herk/bli_herk_cntl.h | 6 +- frame/3/herk/bli_herk_front.c | 6 +- frame/3/herk/bli_herk_front.h | 6 +- frame/3/herk/bli_herk_int.c | 6 +- frame/3/herk/bli_herk_int.h | 6 +- frame/3/herk/bli_herk_l_ker_var2.c | 6 +- frame/3/herk/bli_herk_l_ker_var2.h | 6 +- frame/3/herk/bli_herk_target.c | 6 +- frame/3/herk/bli_herk_target.h | 6 +- frame/3/herk/bli_herk_threading.c | 6 +- frame/3/herk/bli_herk_threading.h | 6 +- frame/3/herk/bli_herk_u_ker_var2.c | 6 +- frame/3/herk/bli_herk_u_ker_var2.h | 6 +- frame/3/herk/other/bli_herk_l_blk_var4.c | 6 +- frame/3/herk/other/bli_herk_l_blk_var4.h | 6 +- frame/3/herk/other/bli_herk_u_blk_var1.c | 6 +- frame/3/herk/other/bli_herk_u_blk_var1.h | 6 +- frame/3/herk/other/bli_herk_u_blk_var2.c | 6 +- frame/3/herk/other/bli_herk_u_blk_var2.h | 6 +- frame/3/herk/other/bli_herk_u_blk_var4.c | 6 +- frame/3/herk/other/bli_herk_u_blk_var4.h | 6 +- frame/3/symm/3m/bli_symm3m.c | 6 +- frame/3/symm/3m/bli_symm3m.h | 6 +- frame/3/symm/4m/bli_symm4m.c | 6 +- frame/3/symm/4m/bli_symm4m.h | 6 +- frame/3/symm/bli_symm.c | 6 +- frame/3/symm/bli_symm.h | 6 +- frame/3/symm/bli_symm_check.c | 6 +- frame/3/symm/bli_symm_check.h | 6 +- frame/3/symm/bli_symm_front.c | 6 +- frame/3/symm/bli_symm_front.h | 6 +- frame/3/syr2k/3m/bli_syr2k3m.c | 6 +- frame/3/syr2k/3m/bli_syr2k3m.h | 6 +- frame/3/syr2k/4m/bli_syr2k4m.c | 6 +- frame/3/syr2k/4m/bli_syr2k4m.h | 6 +- frame/3/syr2k/bli_syr2k.c | 6 +- frame/3/syr2k/bli_syr2k.h | 6 +- frame/3/syr2k/bli_syr2k_check.c | 6 +- frame/3/syr2k/bli_syr2k_check.h | 6 +- frame/3/syr2k/bli_syr2k_front.c | 6 +- frame/3/syr2k/bli_syr2k_front.h | 6 +- frame/3/syrk/3m/bli_syrk3m.c | 6 +- frame/3/syrk/3m/bli_syrk3m.h | 6 +- frame/3/syrk/4m/bli_syrk4m.c | 6 +- frame/3/syrk/4m/bli_syrk4m.h | 6 +- frame/3/syrk/bli_syrk.c | 6 +- frame/3/syrk/bli_syrk.h | 6 +- frame/3/syrk/bli_syrk_check.c | 6 +- frame/3/syrk/bli_syrk_check.h | 6 +- frame/3/syrk/bli_syrk_front.c | 6 +- frame/3/syrk/bli_syrk_front.h | 6 +- frame/3/trmm/3m/bli_trmm3m.c | 6 +- frame/3/trmm/3m/bli_trmm3m.h | 6 +- frame/3/trmm/3m/bli_trmm3m_cntl.c | 6 +- frame/3/trmm/3m/bli_trmm3m_cntl.h | 6 +- frame/3/trmm/4m/bli_trmm4m.c | 6 +- frame/3/trmm/4m/bli_trmm4m.h | 6 +- frame/3/trmm/4m/bli_trmm4m_cntl.c | 6 +- frame/3/trmm/4m/bli_trmm4m_cntl.h | 6 +- frame/3/trmm/bli_trmm.c | 6 +- frame/3/trmm/bli_trmm.h | 6 +- frame/3/trmm/bli_trmm_blk_var1f.c | 6 +- frame/3/trmm/bli_trmm_blk_var1f.h | 6 +- frame/3/trmm/bli_trmm_blk_var2b.c | 6 +- frame/3/trmm/bli_trmm_blk_var2b.h | 6 +- frame/3/trmm/bli_trmm_blk_var2f.c | 6 +- frame/3/trmm/bli_trmm_blk_var2f.h | 6 +- frame/3/trmm/bli_trmm_blk_var3b.c | 6 +- frame/3/trmm/bli_trmm_blk_var3b.h | 6 +- frame/3/trmm/bli_trmm_blk_var3f.c | 6 +- frame/3/trmm/bli_trmm_blk_var3f.h | 6 +- frame/3/trmm/bli_trmm_check.c | 6 +- frame/3/trmm/bli_trmm_check.h | 6 +- frame/3/trmm/bli_trmm_cntl.c | 6 +- frame/3/trmm/bli_trmm_cntl.h | 6 +- frame/3/trmm/bli_trmm_front.c | 6 +- frame/3/trmm/bli_trmm_front.h | 6 +- frame/3/trmm/bli_trmm_int.c | 6 +- frame/3/trmm/bli_trmm_int.h | 6 +- frame/3/trmm/bli_trmm_ll_ker_var2.c | 6 +- frame/3/trmm/bli_trmm_ll_ker_var2.h | 6 +- frame/3/trmm/bli_trmm_lu_ker_var2.c | 6 +- frame/3/trmm/bli_trmm_lu_ker_var2.h | 6 +- frame/3/trmm/bli_trmm_rl_ker_var2.c | 6 +- frame/3/trmm/bli_trmm_rl_ker_var2.h | 6 +- frame/3/trmm/bli_trmm_ru_ker_var2.c | 6 +- frame/3/trmm/bli_trmm_ru_ker_var2.h | 6 +- frame/3/trmm/bli_trmm_target.c | 6 +- frame/3/trmm/bli_trmm_target.h | 6 +- frame/3/trmm/bli_trmm_threading.c | 6 +- frame/3/trmm/bli_trmm_threading.h | 6 +- frame/3/trmm/other/bli_trmm_ll_blk_var1.c | 6 +- frame/3/trmm/other/bli_trmm_ll_blk_var1.h | 6 +- frame/3/trmm/other/bli_trmm_ll_blk_var4.c | 6 +- frame/3/trmm/other/bli_trmm_ll_blk_var4.h | 6 +- frame/3/trmm/other/bli_trmm_lu_blk_var1.c | 6 +- frame/3/trmm/other/bli_trmm_lu_blk_var1.h | 6 +- frame/3/trmm/other/bli_trmm_lu_blk_var4.c | 6 +- frame/3/trmm/other/bli_trmm_lu_blk_var4.h | 6 +- frame/3/trmm3/3m/bli_trmm33m.c | 6 +- frame/3/trmm3/3m/bli_trmm33m.h | 6 +- frame/3/trmm3/4m/bli_trmm34m.c | 6 +- frame/3/trmm3/4m/bli_trmm34m.h | 6 +- frame/3/trmm3/bli_trmm3.c | 6 +- frame/3/trmm3/bli_trmm3.h | 6 +- frame/3/trmm3/bli_trmm3_check.c | 6 +- frame/3/trmm3/bli_trmm3_check.h | 6 +- frame/3/trmm3/bli_trmm3_front.c | 6 +- frame/3/trmm3/bli_trmm3_front.h | 6 +- frame/3/trsm/3m/bli_trsm3m.c | 6 +- frame/3/trsm/3m/bli_trsm3m.h | 6 +- frame/3/trsm/3m/bli_trsm3m_cntl.c | 6 +- frame/3/trsm/3m/bli_trsm3m_cntl.h | 6 +- .../3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c | 6 +- .../3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h | 6 +- .../3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c | 6 +- .../3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h | 6 +- .../3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c | 6 +- .../3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h | 6 +- .../3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c | 6 +- .../3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h | 6 +- frame/3/trsm/4m/bli_trsm4m.c | 6 +- frame/3/trsm/4m/bli_trsm4m.h | 6 +- frame/3/trsm/4m/bli_trsm4m_cntl.c | 6 +- frame/3/trsm/4m/bli_trsm4m_cntl.h | 6 +- .../4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c | 6 +- .../4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h | 6 +- .../4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c | 6 +- .../4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h | 6 +- .../3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c | 6 +- .../3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h | 6 +- .../3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c | 6 +- .../3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h | 6 +- frame/3/trsm/bli_gemmtrsm_ukernel.c | 6 +- frame/3/trsm/bli_gemmtrsm_ukernel.h | 6 +- frame/3/trsm/bli_trsm.c | 6 +- frame/3/trsm/bli_trsm.h | 6 +- frame/3/trsm/bli_trsm_blk_var1b.c | 6 +- frame/3/trsm/bli_trsm_blk_var1b.h | 6 +- frame/3/trsm/bli_trsm_blk_var1f.c | 6 +- frame/3/trsm/bli_trsm_blk_var1f.h | 6 +- frame/3/trsm/bli_trsm_blk_var2b.c | 6 +- frame/3/trsm/bli_trsm_blk_var2b.h | 6 +- frame/3/trsm/bli_trsm_blk_var2f.c | 6 +- frame/3/trsm/bli_trsm_blk_var2f.h | 6 +- frame/3/trsm/bli_trsm_blk_var3b.c | 6 +- frame/3/trsm/bli_trsm_blk_var3b.h | 6 +- frame/3/trsm/bli_trsm_blk_var3f.c | 6 +- frame/3/trsm/bli_trsm_blk_var3f.h | 6 +- frame/3/trsm/bli_trsm_check.c | 6 +- frame/3/trsm/bli_trsm_check.h | 6 +- frame/3/trsm/bli_trsm_cntl.c | 6 +- frame/3/trsm/bli_trsm_cntl.h | 6 +- frame/3/trsm/bli_trsm_front.c | 6 +- frame/3/trsm/bli_trsm_front.h | 6 +- frame/3/trsm/bli_trsm_int.c | 6 +- frame/3/trsm/bli_trsm_int.h | 6 +- frame/3/trsm/bli_trsm_ll_ker_var2.c | 6 +- frame/3/trsm/bli_trsm_ll_ker_var2.h | 6 +- frame/3/trsm/bli_trsm_lu_ker_var2.c | 6 +- frame/3/trsm/bli_trsm_lu_ker_var2.h | 6 +- frame/3/trsm/bli_trsm_rl_ker_var2.c | 6 +- frame/3/trsm/bli_trsm_rl_ker_var2.h | 6 +- frame/3/trsm/bli_trsm_ru_ker_var2.c | 6 +- frame/3/trsm/bli_trsm_ru_ker_var2.h | 6 +- frame/3/trsm/bli_trsm_threading.c | 6 +- frame/3/trsm/bli_trsm_threading.h | 6 +- frame/3/trsm/bli_trsm_ukernel.c | 6 +- frame/3/trsm/bli_trsm_ukernel.h | 6 +- frame/3/trsm/other/bli_trsm_l_blk_var4.c | 6 +- frame/3/trsm/other/bli_trsm_l_blk_var4.h | 6 +- frame/3/trsm/other/bli_trsm_u_blk_var4.c | 6 +- frame/3/trsm/other/bli_trsm_u_blk_var4.h | 6 +- .../3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c | 6 +- .../3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h | 6 +- .../3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c | 6 +- .../3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h | 6 +- frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c | 6 +- frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h | 6 +- frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c | 6 +- frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h | 6 +- frame/base/bli_blocksize.c | 6 +- frame/base/bli_blocksize.h | 6 +- frame/base/bli_check.c | 6 +- frame/base/bli_check.h | 6 +- frame/base/bli_clock.c | 6 +- frame/base/bli_clock.h | 6 +- frame/base/bli_error.c | 6 +- frame/base/bli_error.h | 6 +- frame/base/bli_func.c | 6 +- frame/base/bli_func.h | 6 +- frame/base/bli_getopt.c | 6 +- frame/base/bli_getopt.h | 6 +- frame/base/bli_info.c | 6 +- frame/base/bli_info.h | 6 +- frame/base/bli_init.c | 6 +- frame/base/bli_init.h | 6 +- frame/base/bli_machval.c | 6 +- frame/base/bli_machval.h | 6 +- frame/base/bli_malloc.c | 6 +- frame/base/bli_malloc.h | 6 +- frame/base/bli_mem.c | 6 +- frame/base/bli_mem.h | 6 +- frame/base/bli_obj.c | 6 +- frame/base/bli_obj.h | 6 +- frame/base/bli_obj_scalar.c | 6 +- frame/base/bli_obj_scalar.h | 6 +- frame/base/bli_param_map.c | 6 +- frame/base/bli_param_map.h | 6 +- frame/base/bli_part.c | 6 +- frame/base/bli_part.h | 6 +- frame/base/bli_query.c | 6 +- frame/base/bli_query.h | 6 +- frame/base/bli_threading.c | 6 +- frame/base/bli_threading.h | 6 +- frame/base/check/bli_obj_check.c | 6 +- frame/base/check/bli_obj_check.h | 6 +- frame/base/check/bli_part_check.c | 6 +- frame/base/check/bli_part_check.h | 6 +- frame/base/noopt/bli_dlamch.h | 6 +- frame/base/noopt/bli_lsame.h | 6 +- frame/base/noopt/bli_slamch.h | 6 +- frame/cntl/bli_cntl.c | 6 +- frame/cntl/bli_cntl.h | 6 +- frame/cntl/bli_cntl_init.c | 6 +- frame/cntl/bli_cntl_init.h | 6 +- frame/compat/attic/bla_gbmv.c | 6 +- frame/compat/attic/bla_gbmv.h | 6 +- frame/compat/attic/bla_hbmv.c | 6 +- frame/compat/attic/bla_hbmv.h | 6 +- frame/compat/attic/bla_hpmv.c | 6 +- frame/compat/attic/bla_hpmv.h | 6 +- frame/compat/attic/bla_hpr.c | 6 +- frame/compat/attic/bla_hpr.h | 6 +- frame/compat/attic/bla_hpr2.c | 6 +- frame/compat/attic/bla_hpr2.h | 6 +- frame/compat/attic/bla_rot.c | 6 +- frame/compat/attic/bla_rot.h | 6 +- frame/compat/attic/bla_rotg.c | 6 +- frame/compat/attic/bla_rotg.h | 6 +- frame/compat/attic/bla_rotm.c | 6 +- frame/compat/attic/bla_rotm.h | 6 +- frame/compat/attic/bla_rotmg.c | 6 +- frame/compat/attic/bla_rotmg.h | 6 +- frame/compat/attic/bla_sbmv.c | 6 +- frame/compat/attic/bla_sbmv.h | 6 +- frame/compat/attic/bla_spmv.c | 6 +- frame/compat/attic/bla_spmv.h | 6 +- frame/compat/attic/bla_spr.c | 6 +- frame/compat/attic/bla_spr.h | 6 +- frame/compat/attic/bla_spr2.c | 6 +- frame/compat/attic/bla_spr2.h | 6 +- frame/compat/attic/bla_tbmv.c | 6 +- frame/compat/attic/bla_tbmv.h | 6 +- frame/compat/attic/bla_tbsv.c | 6 +- frame/compat/attic/bla_tbsv.h | 6 +- frame/compat/attic/bla_tpmv.c | 6 +- frame/compat/attic/bla_tpmv.h | 6 +- frame/compat/attic/bla_tpsv.c | 6 +- frame/compat/attic/bla_tpsv.h | 6 +- frame/compat/bla_amax.c | 6 +- frame/compat/bla_amax.h | 6 +- frame/compat/bla_asum.c | 6 +- frame/compat/bla_asum.h | 6 +- frame/compat/bla_axpy.c | 6 +- frame/compat/bla_axpy.h | 6 +- frame/compat/bla_copy.c | 6 +- frame/compat/bla_copy.h | 6 +- frame/compat/bla_dot.c | 6 +- frame/compat/bla_dot.h | 6 +- frame/compat/bla_gemm.c | 6 +- frame/compat/bla_gemm.h | 6 +- frame/compat/bla_gemv.c | 6 +- frame/compat/bla_gemv.h | 6 +- frame/compat/bla_ger.c | 6 +- frame/compat/bla_ger.h | 6 +- frame/compat/bla_hemm.c | 6 +- frame/compat/bla_hemm.h | 6 +- frame/compat/bla_hemv.c | 6 +- frame/compat/bla_hemv.h | 6 +- frame/compat/bla_her.c | 6 +- frame/compat/bla_her.h | 6 +- frame/compat/bla_her2.c | 6 +- frame/compat/bla_her2.h | 6 +- frame/compat/bla_her2k.c | 6 +- frame/compat/bla_her2k.h | 6 +- frame/compat/bla_herk.c | 6 +- frame/compat/bla_herk.h | 6 +- frame/compat/bla_nrm2.c | 6 +- frame/compat/bla_nrm2.h | 6 +- frame/compat/bla_scal.c | 6 +- frame/compat/bla_scal.h | 6 +- frame/compat/bla_swap.c | 6 +- frame/compat/bla_swap.h | 6 +- frame/compat/bla_symm.c | 6 +- frame/compat/bla_symm.h | 6 +- frame/compat/bla_symv.c | 6 +- frame/compat/bla_symv.h | 6 +- frame/compat/bla_syr.c | 6 +- frame/compat/bla_syr.h | 6 +- frame/compat/bla_syr2.c | 6 +- frame/compat/bla_syr2.h | 6 +- frame/compat/bla_syr2k.c | 6 +- frame/compat/bla_syr2k.h | 6 +- frame/compat/bla_syrk.c | 6 +- frame/compat/bla_syrk.h | 6 +- frame/compat/bla_trmm.c | 6 +- frame/compat/bla_trmm.h | 6 +- frame/compat/bla_trmv.c | 6 +- frame/compat/bla_trmv.h | 6 +- frame/compat/bla_trsm.c | 6 +- frame/compat/bla_trsm.h | 6 +- frame/compat/bla_trsv.c | 6 +- frame/compat/bla_trsv.h | 6 +- frame/compat/bli_blas.h | 6 +- frame/compat/check/bla_gemm_check.c | 6 +- frame/compat/check/bla_gemm_check.h | 6 +- frame/compat/check/bla_gemv_check.c | 6 +- frame/compat/check/bla_gemv_check.h | 6 +- frame/compat/check/bla_ger_check.c | 6 +- frame/compat/check/bla_ger_check.h | 6 +- frame/compat/check/bla_hemm_check.c | 6 +- frame/compat/check/bla_hemm_check.h | 6 +- frame/compat/check/bla_hemv_check.c | 6 +- frame/compat/check/bla_hemv_check.h | 6 +- frame/compat/check/bla_her2_check.c | 6 +- frame/compat/check/bla_her2_check.h | 6 +- frame/compat/check/bla_her2k_check.c | 6 +- frame/compat/check/bla_her2k_check.h | 6 +- frame/compat/check/bla_her_check.c | 6 +- frame/compat/check/bla_her_check.h | 6 +- frame/compat/check/bla_herk_check.c | 6 +- frame/compat/check/bla_herk_check.h | 6 +- frame/compat/check/bla_symm_check.c | 6 +- frame/compat/check/bla_symm_check.h | 6 +- frame/compat/check/bla_symv_check.c | 6 +- frame/compat/check/bla_symv_check.h | 6 +- frame/compat/check/bla_syr2_check.c | 6 +- frame/compat/check/bla_syr2_check.h | 6 +- frame/compat/check/bla_syr2k_check.c | 6 +- frame/compat/check/bla_syr2k_check.h | 6 +- frame/compat/check/bla_syr_check.c | 6 +- frame/compat/check/bla_syr_check.h | 6 +- frame/compat/check/bla_syrk_check.c | 6 +- frame/compat/check/bla_syrk_check.h | 6 +- frame/compat/check/bla_trmm_check.c | 6 +- frame/compat/check/bla_trmm_check.h | 6 +- frame/compat/check/bla_trmv_check.c | 6 +- frame/compat/check/bla_trmv_check.h | 6 +- frame/compat/check/bla_trsm_check.c | 6 +- frame/compat/check/bla_trsm_check.h | 6 +- frame/compat/check/bla_trsv_check.c | 6 +- frame/compat/check/bla_trsv_check.h | 6 +- frame/compat/f2c/bla_gbmv.c | 6 +- frame/compat/f2c/bla_gbmv.h | 6 +- frame/compat/f2c/bla_hbmv.c | 6 +- frame/compat/f2c/bla_hbmv.h | 6 +- frame/compat/f2c/bla_hpmv.c | 6 +- frame/compat/f2c/bla_hpmv.h | 6 +- frame/compat/f2c/bla_hpr.c | 6 +- frame/compat/f2c/bla_hpr.h | 6 +- frame/compat/f2c/bla_hpr2.c | 6 +- frame/compat/f2c/bla_hpr2.h | 6 +- frame/compat/f2c/bla_lsame.c | 6 +- frame/compat/f2c/bla_lsame.h | 6 +- frame/compat/f2c/bla_rot.c | 6 +- frame/compat/f2c/bla_rot.h | 6 +- frame/compat/f2c/bla_rotg.c | 6 +- frame/compat/f2c/bla_rotg.h | 6 +- frame/compat/f2c/bla_rotm.c | 6 +- frame/compat/f2c/bla_rotm.h | 6 +- frame/compat/f2c/bla_rotmg.c | 6 +- frame/compat/f2c/bla_rotmg.h | 6 +- frame/compat/f2c/bla_sbmv.c | 6 +- frame/compat/f2c/bla_sbmv.h | 6 +- frame/compat/f2c/bla_spmv.c | 6 +- frame/compat/f2c/bla_spmv.h | 6 +- frame/compat/f2c/bla_spr.c | 6 +- frame/compat/f2c/bla_spr.h | 6 +- frame/compat/f2c/bla_spr2.c | 6 +- frame/compat/f2c/bla_spr2.h | 6 +- frame/compat/f2c/bla_tbmv.c | 6 +- frame/compat/f2c/bla_tbmv.h | 6 +- frame/compat/f2c/bla_tbsv.c | 6 +- frame/compat/f2c/bla_tbsv.h | 6 +- frame/compat/f2c/bla_tpmv.c | 6 +- frame/compat/f2c/bla_tpmv.h | 6 +- frame/compat/f2c/bla_tpsv.c | 6 +- frame/compat/f2c/bla_tpsv.h | 6 +- frame/compat/f2c/bla_xerbla.c | 6 +- frame/compat/f2c/bla_xerbla.h | 6 +- frame/compat/f2c/util/bla_c_abs.c | 6 +- frame/compat/f2c/util/bla_c_abs.h | 6 +- frame/compat/f2c/util/bla_c_div.c | 6 +- frame/compat/f2c/util/bla_c_div.h | 6 +- frame/compat/f2c/util/bla_d_abs.c | 6 +- frame/compat/f2c/util/bla_d_abs.h | 6 +- frame/compat/f2c/util/bla_d_cnjg.c | 6 +- frame/compat/f2c/util/bla_d_cnjg.h | 6 +- frame/compat/f2c/util/bla_d_imag.c | 6 +- frame/compat/f2c/util/bla_d_imag.h | 6 +- frame/compat/f2c/util/bla_d_sign.c | 6 +- frame/compat/f2c/util/bla_d_sign.h | 6 +- frame/compat/f2c/util/bla_f__cabs.c | 6 +- frame/compat/f2c/util/bla_f__cabs.h | 6 +- frame/compat/f2c/util/bla_r_abs.c | 6 +- frame/compat/f2c/util/bla_r_abs.h | 6 +- frame/compat/f2c/util/bla_r_cnjg.c | 6 +- frame/compat/f2c/util/bla_r_cnjg.h | 6 +- frame/compat/f2c/util/bla_r_imag.c | 6 +- frame/compat/f2c/util/bla_r_imag.h | 6 +- frame/compat/f2c/util/bla_r_sign.c | 6 +- frame/compat/f2c/util/bla_r_sign.h | 6 +- frame/compat/f2c/util/bla_z_abs.c | 6 +- frame/compat/f2c/util/bla_z_abs.h | 6 +- frame/compat/f2c/util/bla_z_div.c | 6 +- frame/compat/f2c/util/bla_z_div.h | 6 +- frame/include/bli_auxinfo_macro_defs.h | 6 +- frame/include/bli_blas_macro_defs.h | 6 +- frame/include/bli_complex_macro_defs.h | 6 +- frame/include/bli_error_macro_defs.h | 6 +- frame/include/bli_extern_defs.h | 6 +- frame/include/bli_genarray_macro_defs.h | 6 +- frame/include/bli_gentfunc_macro_defs.h | 6 +- frame/include/bli_gentprot_macro_defs.h | 6 +- frame/include/bli_kernel_3m_macro_defs.h | 6 +- frame/include/bli_kernel_4m_macro_defs.h | 6 +- frame/include/bli_kernel_macro_defs.h | 6 +- frame/include/bli_kernel_post_macro_defs.h | 6 +- frame/include/bli_kernel_pre_macro_defs.h | 6 +- frame/include/bli_kernel_prototypes.h | 6 +- frame/include/bli_kernel_type_defs.h | 6 +- frame/include/bli_macro_defs.h | 6 +- frame/include/bli_mem_macro_defs.h | 6 +- frame/include/bli_mem_pool_macro_defs.h | 6 +- frame/include/bli_obj_macro_defs.h | 6 +- frame/include/bli_param_macro_defs.h | 6 +- frame/include/bli_pool_macro_defs.h | 6 +- frame/include/bli_scalar_macro_defs.h | 6 +- frame/include/bli_system.h | 6 +- frame/include/bli_type_defs.h | 6 +- frame/include/blis.h | 6 +- frame/include/level0/bli_absq2s.h | 6 +- frame/include/level0/bli_abval2s.h | 6 +- frame/include/level0/bli_add3s.h | 6 +- frame/include/level0/bli_addjs.h | 6 +- frame/include/level0/bli_adds.h | 6 +- frame/include/level0/bli_adds_mxn.h | 6 +- frame/include/level0/bli_adds_mxn_uplo.h | 6 +- frame/include/level0/bli_axmys.h | 6 +- frame/include/level0/bli_axpyjs.h | 6 +- frame/include/level0/bli_axpys.h | 6 +- frame/include/level0/bli_cast.h | 6 +- frame/include/level0/bli_conjs.h | 6 +- frame/include/level0/bli_constants.h | 6 +- frame/include/level0/bli_copycjs.h | 6 +- frame/include/level0/bli_copyjs.h | 6 +- frame/include/level0/bli_copys.h | 6 +- frame/include/level0/bli_copys_mxn.h | 6 +- frame/include/level0/bli_dotjs.h | 6 +- frame/include/level0/bli_dots.h | 6 +- frame/include/level0/bli_eq.h | 6 +- frame/include/level0/bli_fprints.h | 6 +- frame/include/level0/bli_gets.h | 6 +- frame/include/level0/bli_inverts.h | 6 +- frame/include/level0/bli_invscaljs.h | 6 +- frame/include/level0/bli_invscals.h | 6 +- frame/include/level0/bli_neg2s.h | 6 +- frame/include/level0/bli_rands.h | 6 +- frame/include/level0/bli_scal2js.h | 6 +- frame/include/level0/bli_scal2s.h | 6 +- frame/include/level0/bli_scalcjs.h | 6 +- frame/include/level0/bli_scaljs.h | 6 +- frame/include/level0/bli_scals.h | 6 +- frame/include/level0/bli_set0s.h | 6 +- frame/include/level0/bli_set0s_mxn.h | 6 +- frame/include/level0/bli_set1s.h | 6 +- frame/include/level0/bli_seti0s.h | 6 +- frame/include/level0/bli_setis.h | 6 +- frame/include/level0/bli_setrs.h | 6 +- frame/include/level0/bli_sets.h | 6 +- frame/include/level0/bli_sqrt2s.h | 6 +- frame/include/level0/bli_subjs.h | 6 +- frame/include/level0/bli_subs.h | 6 +- frame/include/level0/bli_swaps.h | 6 +- frame/include/level0/bli_xpbys.h | 6 +- frame/include/level0/bli_xpbys_mxn.h | 6 +- frame/include/level0/bli_xpbys_mxn_uplo.h | 6 +- frame/include/level0/old/bli_castfrom.h | 6 +- frame/include/level0/old/bli_castto.h | 6 +- frame/include/level0/old/bli_copynzjs.h | 6 +- frame/include/level0/old/bli_copynzs.h | 6 +- frame/include/level0/old/bli_invscalcjs.h | 6 +- frame/include/level0/old/bli_scalcjs.h | 6 +- frame/include/level0/old/bli_set0ris_mxn.h | 6 +- frame/include/level0/ri/bli_absq2ris.h | 6 +- frame/include/level0/ri/bli_abval2ris.h | 6 +- frame/include/level0/ri/bli_add3ris.h | 6 +- frame/include/level0/ri/bli_addjris.h | 6 +- frame/include/level0/ri/bli_addris.h | 6 +- frame/include/level0/ri/bli_axmyris.h | 6 +- frame/include/level0/ri/bli_axpbyris.h | 6 +- frame/include/level0/ri/bli_axpyjris.h | 6 +- frame/include/level0/ri/bli_axpyris.h | 6 +- frame/include/level0/ri/bli_conjris.h | 6 +- frame/include/level0/ri/bli_copycjris.h | 6 +- frame/include/level0/ri/bli_copyjris.h | 6 +- frame/include/level0/ri/bli_copyris.h | 6 +- frame/include/level0/ri/bli_eqri.h | 6 +- frame/include/level0/ri/bli_invertris.h | 6 +- frame/include/level0/ri/bli_invscaljris.h | 6 +- frame/include/level0/ri/bli_invscalris.h | 6 +- frame/include/level0/ri/bli_neg2ris.h | 6 +- frame/include/level0/ri/bli_scal2jris.h | 6 +- frame/include/level0/ri/bli_scal2ris.h | 6 +- frame/include/level0/ri/bli_scalcjris.h | 6 +- frame/include/level0/ri/bli_scaljris.h | 6 +- frame/include/level0/ri/bli_scalris.h | 6 +- .../include/level0/ri/bli_scalris_mxn_uplo.h | 6 +- frame/include/level0/ri/bli_set0ris.h | 6 +- frame/include/level0/ri/bli_sqrt2ris.h | 6 +- frame/include/level0/ri/bli_subjris.h | 6 +- frame/include/level0/ri/bli_subris.h | 6 +- frame/include/level0/ri/bli_swapris.h | 6 +- frame/include/level0/ri/bli_xpbyris.h | 6 +- frame/include/level0/ri3/bli_copyjri3s.h | 6 +- frame/include/level0/ri3/bli_copyri3s.h | 6 +- frame/include/level0/ri3/bli_scal2jri3s.h | 6 +- frame/include/level0/ri3/bli_scal2ri3s.h | 6 +- frame/util/amaxv/bli_amaxv.c | 6 +- frame/util/amaxv/bli_amaxv.h | 6 +- frame/util/amaxv/bli_amaxv_check.c | 6 +- frame/util/amaxv/bli_amaxv_check.h | 6 +- frame/util/amaxv/bli_amaxv_unb_var1.c | 6 +- frame/util/amaxv/bli_amaxv_unb_var1.h | 6 +- frame/util/asumv/bli_asumv.c | 6 +- frame/util/asumv/bli_asumv.h | 6 +- frame/util/asumv/bli_asumv_check.c | 6 +- frame/util/asumv/bli_asumv_check.h | 6 +- frame/util/asumv/bli_asumv_unb_var1.c | 6 +- frame/util/asumv/bli_asumv_unb_var1.h | 6 +- frame/util/mkherm/bli_mkherm.c | 6 +- frame/util/mkherm/bli_mkherm.h | 6 +- frame/util/mkherm/bli_mkherm_check.c | 6 +- frame/util/mkherm/bli_mkherm_check.h | 6 +- frame/util/mkherm/bli_mkherm_unb_var1.c | 6 +- frame/util/mkherm/bli_mkherm_unb_var1.h | 6 +- frame/util/mksymm/bli_mksymm.c | 6 +- frame/util/mksymm/bli_mksymm.h | 6 +- frame/util/mksymm/bli_mksymm_check.c | 6 +- frame/util/mksymm/bli_mksymm_check.h | 6 +- frame/util/mksymm/bli_mksymm_unb_var1.c | 6 +- frame/util/mksymm/bli_mksymm_unb_var1.h | 6 +- frame/util/mktrim/bli_mktrim.c | 6 +- frame/util/mktrim/bli_mktrim.h | 6 +- frame/util/mktrim/bli_mktrim_check.c | 6 +- frame/util/mktrim/bli_mktrim_check.h | 6 +- frame/util/mktrim/bli_mktrim_unb_var1.c | 6 +- frame/util/mktrim/bli_mktrim_unb_var1.h | 6 +- frame/util/norm1m/bli_norm1m.c | 6 +- frame/util/norm1m/bli_norm1m.h | 6 +- frame/util/norm1m/bli_norm1m_check.c | 6 +- frame/util/norm1m/bli_norm1m_check.h | 6 +- frame/util/norm1m/bli_norm1m_unb_var1.c | 6 +- frame/util/norm1m/bli_norm1m_unb_var1.h | 6 +- frame/util/norm1v/bli_norm1v.c | 6 +- frame/util/norm1v/bli_norm1v.h | 6 +- frame/util/norm1v/bli_norm1v_check.c | 6 +- frame/util/norm1v/bli_norm1v_check.h | 6 +- frame/util/norm1v/bli_norm1v_unb_var1.c | 6 +- frame/util/norm1v/bli_norm1v_unb_var1.h | 6 +- frame/util/normfm/bli_normfm.c | 6 +- frame/util/normfm/bli_normfm.h | 6 +- frame/util/normfm/bli_normfm_check.c | 6 +- frame/util/normfm/bli_normfm_check.h | 6 +- frame/util/normfm/bli_normfm_unb_var1.c | 6 +- frame/util/normfm/bli_normfm_unb_var1.h | 6 +- frame/util/normfv/bli_normfv.c | 6 +- frame/util/normfv/bli_normfv.h | 6 +- frame/util/normfv/bli_normfv_check.c | 6 +- frame/util/normfv/bli_normfv_check.h | 6 +- frame/util/normfv/bli_normfv_unb_var1.c | 6 +- frame/util/normfv/bli_normfv_unb_var1.h | 6 +- frame/util/normim/bli_normim.c | 6 +- frame/util/normim/bli_normim.h | 6 +- frame/util/normim/bli_normim_check.c | 6 +- frame/util/normim/bli_normim_check.h | 6 +- frame/util/normim/bli_normim_unb_var1.c | 6 +- frame/util/normim/bli_normim_unb_var1.h | 6 +- frame/util/normiv/bli_normiv.c | 6 +- frame/util/normiv/bli_normiv.h | 6 +- frame/util/normiv/bli_normiv_check.c | 6 +- frame/util/normiv/bli_normiv_check.h | 6 +- frame/util/normiv/bli_normiv_unb_var1.c | 6 +- frame/util/normiv/bli_normiv_unb_var1.h | 6 +- frame/util/printm/bli_fprintm.c | 6 +- frame/util/printm/bli_fprintm.h | 6 +- frame/util/printm/bli_fprintm_check.c | 6 +- frame/util/printm/bli_fprintm_check.h | 6 +- frame/util/printm/bli_printm.c | 6 +- frame/util/printm/bli_printm.h | 6 +- frame/util/printv/bli_fprintv.c | 6 +- frame/util/printv/bli_fprintv.h | 6 +- frame/util/printv/bli_fprintv_check.c | 6 +- frame/util/printv/bli_fprintv_check.h | 6 +- frame/util/printv/bli_printv.c | 6 +- frame/util/printv/bli_printv.h | 6 +- frame/util/randm/bli_randm.c | 6 +- frame/util/randm/bli_randm.h | 6 +- frame/util/randm/bli_randm_check.c | 6 +- frame/util/randm/bli_randm_check.h | 6 +- frame/util/randm/bli_randm_unb_var1.c | 6 +- frame/util/randm/bli_randm_unb_var1.h | 6 +- frame/util/randv/bli_randv.c | 6 +- frame/util/randv/bli_randv.h | 6 +- frame/util/randv/bli_randv_check.c | 6 +- frame/util/randv/bli_randv_check.h | 6 +- frame/util/randv/bli_randv_unb_var1.c | 6 +- frame/util/randv/bli_randv_unb_var1.h | 6 +- frame/util/sumsqv/bli_sumsqv.c | 6 +- frame/util/sumsqv/bli_sumsqv.h | 6 +- frame/util/sumsqv/bli_sumsqv_check.c | 6 +- frame/util/sumsqv/bli_sumsqv_check.h | 6 +- frame/util/sumsqv/bli_sumsqv_unb_var1.c | 6 +- frame/util/sumsqv/bli_sumsqv_unb_var1.h | 6 +- kernels/arm/neon/3/bli_gemm_opt_4x4.c | 6 +- kernels/armv7a/3/bli_gemm_opt_4x4.c | 6 +- kernels/bgq/1/bli_axpyv_opt_var1.c | 6 +- kernels/bgq/1/bli_dotv_opt_var1.c | 6 +- kernels/bgq/1f/bli_axpyf_opt_var1.c | 6 +- kernels/bgq/3/bli_gemm_8x8.c | 6 +- kernels/bgq/3/bli_gemm_8x8.h | 6 +- kernels/c99/3/bli_gemm_ref_4x4.c | 6 +- kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c | 6 +- kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c | 6 +- kernels/c99/3/bli_trsm_l_ref_4x4.c | 6 +- kernels/c99/3/bli_trsm_u_ref_4x4.c | 6 +- kernels/loongson3a/3/bli_gemm_opt_d4x4.c | 6 +- kernels/mic/3/bli_dgemm_opt_30x8.c | 6 +- kernels/mic/3/bli_sgemm_opt_30x16.c | 6 +- kernels/nacl/pnacl/1/bli_axpyv_opt.c | 6 +- kernels/nacl/pnacl/1/bli_dotv_opt.c | 6 +- kernels/nacl/pnacl/3/bli_gemm_opt.c | 6 +- kernels/power7/3/bli_gemm_opt_8x4.c | 6 +- kernels/power7/3/bli_gemm_opt_8x4.h | 6 +- kernels/power7/3/test/bli_gemm_opt_8x4.c | 551 +++++++++++++++++- kernels/power7/3/test/bli_gemm_opt_8x4.h | 85 ++- kernels/x86/1m/bli_packm_2xk.c | 6 +- kernels/x86/1m/bli_packm_2xk.h | 6 +- kernels/x86/1m/bli_packm_4xk.c | 6 +- kernels/x86/1m/bli_packm_4xk.h | 6 +- kernels/x86/3/bli_gemm_opt_d2x4.c | 6 +- kernels/x86/3/bli_gemm_opt_d2x4.h | 6 +- kernels/x86/3/bli_gemm_opt_d4x2.c | 6 +- kernels/x86/3/bli_gemm_opt_d4x2.h | 6 +- kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c | 6 +- kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h | 6 +- kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c | 6 +- kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h | 6 +- kernels/x86/3/bli_trsm_l_opt_d4x2.c | 6 +- kernels/x86/3/bli_trsm_l_opt_d4x2.h | 6 +- .../3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c | 6 +- .../x86_64/core2-sse3/1/bli_axpyv_opt_var1.c | 6 +- .../x86_64/core2-sse3/1/bli_dotv_opt_var1.c | 6 +- .../core2-sse3/1f/bli_axpy2v_opt_var1.c | 6 +- .../x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c | 6 +- .../core2-sse3/1f/bli_axpyf_opt_var1.c.alt | 6 +- .../core2-sse3/1f/bli_dotaxpyv_opt_var1.c | 6 +- .../core2-sse3/1f/bli_dotxaxpyf_opt_var1.c | 6 +- .../x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c | 6 +- .../core2-sse3/1f/bli_dotxf_opt_var1.c.alt | 6 +- .../x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c | 6 +- .../core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c | 6 +- .../core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c | 6 +- .../x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c | 6 +- .../x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c | 6 +- kernels/x86_64/piledriver/3/bli_gemm_4x6.c | 6 +- mpi_test/Makefile | 6 +- mpi_test/test_gemm.c | 6 +- mpi_test/test_hemm.c | 6 +- mpi_test/test_her2k.c | 6 +- mpi_test/test_herk.c | 6 +- mpi_test/test_trmm.c | 6 +- mpi_test/test_trsm.c | 6 +- test/Makefile | 6 +- test/exec_sizes/Makefile | 6 +- test/exec_sizes/grab_top_outputs.sh | 6 +- test/exec_sizes/test_size.c | 6 +- test/old/Makefile.prev | 6 +- test/test_gemm.c | 6 +- test/test_gemv.c | 6 +- test/test_ger.c | 6 +- test/test_hemm.c | 6 +- test/test_hemv.c | 6 +- test/test_her.c | 6 +- test/test_her2.c | 6 +- test/test_her2k.c | 6 +- test/test_herk.c | 6 +- test/test_trmm.c | 6 +- test/test_trmv.c | 6 +- test/test_trsm.c | 6 +- test/test_trsv.c | 6 +- testsuite/Makefile | 6 +- testsuite/src/test_addm.c | 6 +- testsuite/src/test_addm.h | 6 +- testsuite/src/test_addv.c | 6 +- testsuite/src/test_addv.h | 6 +- testsuite/src/test_axpy2v.c | 6 +- testsuite/src/test_axpy2v.h | 6 +- testsuite/src/test_axpyf.c | 6 +- testsuite/src/test_axpyf.h | 6 +- testsuite/src/test_axpym.c | 6 +- testsuite/src/test_axpym.h | 6 +- testsuite/src/test_axpyv.c | 6 +- testsuite/src/test_axpyv.h | 6 +- testsuite/src/test_copym.c | 6 +- testsuite/src/test_copym.h | 6 +- testsuite/src/test_copyv.c | 6 +- testsuite/src/test_copyv.h | 6 +- testsuite/src/test_dotaxpyv.c | 6 +- testsuite/src/test_dotaxpyv.h | 6 +- testsuite/src/test_dotv.c | 6 +- testsuite/src/test_dotv.h | 6 +- testsuite/src/test_dotxaxpyf.c | 6 +- testsuite/src/test_dotxaxpyf.h | 6 +- testsuite/src/test_dotxf.c | 6 +- testsuite/src/test_dotxf.h | 6 +- testsuite/src/test_dotxv.c | 6 +- testsuite/src/test_dotxv.h | 6 +- testsuite/src/test_gemm.c | 6 +- testsuite/src/test_gemm.h | 6 +- testsuite/src/test_gemm_ukr.c | 6 +- testsuite/src/test_gemm_ukr.h | 6 +- testsuite/src/test_gemmtrsm_ukr.c | 6 +- testsuite/src/test_gemmtrsm_ukr.h | 6 +- testsuite/src/test_gemv.c | 6 +- testsuite/src/test_gemv.h | 6 +- testsuite/src/test_ger.c | 6 +- testsuite/src/test_ger.h | 6 +- testsuite/src/test_hemm.c | 6 +- testsuite/src/test_hemm.h | 6 +- testsuite/src/test_hemv.c | 6 +- testsuite/src/test_hemv.h | 6 +- testsuite/src/test_her.c | 6 +- testsuite/src/test_her.h | 6 +- testsuite/src/test_her2.c | 6 +- testsuite/src/test_her2.h | 6 +- testsuite/src/test_her2k.c | 6 +- testsuite/src/test_her2k.h | 6 +- testsuite/src/test_herk.c | 6 +- testsuite/src/test_herk.h | 6 +- testsuite/src/test_libblis.c | 6 +- testsuite/src/test_libblis.h | 6 +- testsuite/src/test_normfm.c | 6 +- testsuite/src/test_normfm.h | 6 +- testsuite/src/test_normfv.c | 6 +- testsuite/src/test_normfv.h | 6 +- testsuite/src/test_randm.c | 6 +- testsuite/src/test_randm.h | 6 +- testsuite/src/test_randv.c | 6 +- testsuite/src/test_randv.h | 6 +- testsuite/src/test_scal2m.c | 6 +- testsuite/src/test_scal2m.h | 6 +- testsuite/src/test_scal2v.c | 6 +- testsuite/src/test_scal2v.h | 6 +- testsuite/src/test_scalm.c | 6 +- testsuite/src/test_scalm.h | 6 +- testsuite/src/test_scalv.c | 6 +- testsuite/src/test_scalv.h | 6 +- testsuite/src/test_setm.c | 6 +- testsuite/src/test_setm.h | 6 +- testsuite/src/test_setv.c | 6 +- testsuite/src/test_setv.h | 6 +- testsuite/src/test_subm.c | 6 +- testsuite/src/test_subm.h | 6 +- testsuite/src/test_subv.c | 6 +- testsuite/src/test_subv.h | 6 +- testsuite/src/test_symm.c | 6 +- testsuite/src/test_symm.h | 6 +- testsuite/src/test_symv.c | 6 +- testsuite/src/test_symv.h | 6 +- testsuite/src/test_syr.c | 6 +- testsuite/src/test_syr.h | 6 +- testsuite/src/test_syr2.c | 6 +- testsuite/src/test_syr2.h | 6 +- testsuite/src/test_syr2k.c | 6 +- testsuite/src/test_syr2k.h | 6 +- testsuite/src/test_syrk.c | 6 +- testsuite/src/test_syrk.h | 6 +- testsuite/src/test_trmm.c | 6 +- testsuite/src/test_trmm.h | 6 +- testsuite/src/test_trmm3.c | 6 +- testsuite/src/test_trmm3.h | 6 +- testsuite/src/test_trmv.c | 6 +- testsuite/src/test_trmv.h | 6 +- testsuite/src/test_trsm.c | 6 +- testsuite/src/test_trsm.h | 6 +- testsuite/src/test_trsm_ukr.c | 6 +- testsuite/src/test_trsm_ukr.h | 6 +- testsuite/src/test_trsv.c | 6 +- testsuite/src/test_trsv.h | 6 +- windows/build/bli_config.h | 6 +- windows/build/bli_kernel.h | 6 +- windows/build/config.mk.in | 6 +- windows/build/defs.mk | 6 +- windows/build/gather-src-for-windows.py | 6 +- windows/build/gen-check-rev-file.py | 6 +- windows/build/gen-config-file.py | 6 +- windows/build/nmake-help.cmd | 6 +- windows/configure.cmd | 6 +- 1560 files changed, 5308 insertions(+), 4676 deletions(-) mode change 120000 => 100755 kernels/power7/3/test/bli_gemm_opt_8x4.c mode change 120000 => 100755 kernels/power7/3/test/bli_gemm_opt_8x4.h diff --git a/LICENSE b/LICENSE index b3add9dfb..38017661d 100644 --- a/LICENSE +++ b/LICENSE @@ -17,9 +17,9 @@ met: - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/Makefile b/Makefile index 185aad985..bf5d0702f 100644 --- a/Makefile +++ b/Makefile @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/build/bump-version.sh b/build/bump-version.sh index 7d85f61c1..74d265eed 100755 --- a/build/bump-version.sh +++ b/build/bump-version.sh @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/build/config.mk.in b/build/config.mk.in index 1cfe327b5..595cf0192 100644 --- a/build/config.mk.in +++ b/build/config.mk.in @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/build/gen-make-frags/fragment.mk b/build/gen-make-frags/fragment.mk index bd670ce4c..08773302b 100644 --- a/build/gen-make-frags/fragment.mk +++ b/build/gen-make-frags/fragment.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/build/gen-make-frags/gen-make-frag.sh b/build/gen-make-frags/gen-make-frag.sh index 6af06d2f4..a83b14ea5 100755 --- a/build/gen-make-frags/gen-make-frag.sh +++ b/build/gen-make-frags/gen-make-frag.sh @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/build/mirror-tree.sh b/build/mirror-tree.sh index bd1874d9c..bac7ad9a6 100755 --- a/build/mirror-tree.sh +++ b/build/mirror-tree.sh @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/build/templates/license.c b/build/templates/license.c index ca466ece9..c393608c4 100644 --- a/build/templates/license.c +++ b/build/templates/license.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/build/templates/license.h b/build/templates/license.h index ca466ece9..c393608c4 100644 --- a/build/templates/license.h +++ b/build/templates/license.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/build/templates/license.sh b/build/templates/license.sh index 3164151cd..a9fc4b9fb 100644 --- a/build/templates/license.sh +++ b/build/templates/license.sh @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/build/update-version-file.sh b/build/update-version-file.sh index 4b95049ca..afa829e4a 100755 --- a/build/update-version-file.sh +++ b/build/update-version-file.sh @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/armv7a/bli_config.h b/config/armv7a/bli_config.h index c70fa701e..9ec2861cc 100644 --- a/config/armv7a/bli_config.h +++ b/config/armv7a/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/armv7a/bli_kernel.h b/config/armv7a/bli_kernel.h index 165c7547a..cde3c7da9 100644 --- a/config/armv7a/bli_kernel.h +++ b/config/armv7a/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/armv7a/make_defs.mk b/config/armv7a/make_defs.mk index 4aa4ce6d2..68d90c796 100644 --- a/config/armv7a/make_defs.mk +++ b/config/armv7a/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/bgq/bli_config.h b/config/bgq/bli_config.h index b7ed5d899..69aec45be 100644 --- a/config/bgq/bli_config.h +++ b/config/bgq/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/bgq/bli_kernel.h b/config/bgq/bli_kernel.h index b1a915f9c..746a1012e 100644 --- a/config/bgq/bli_kernel.h +++ b/config/bgq/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/bgq/make_defs.mk b/config/bgq/make_defs.mk index e220f047d..f693889c2 100644 --- a/config/bgq/make_defs.mk +++ b/config/bgq/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/cortex-a15/bli_config.h b/config/cortex-a15/bli_config.h index 223dd427c..cc8e30f68 100644 --- a/config/cortex-a15/bli_config.h +++ b/config/cortex-a15/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/cortex-a15/bli_kernel.h b/config/cortex-a15/bli_kernel.h index 9a003a050..e53eac640 100644 --- a/config/cortex-a15/bli_kernel.h +++ b/config/cortex-a15/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/cortex-a15/make_defs.mk b/config/cortex-a15/make_defs.mk index 91a441729..8575fe49e 100644 --- a/config/cortex-a15/make_defs.mk +++ b/config/cortex-a15/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/cortex-a9/bli_config.h b/config/cortex-a9/bli_config.h index 223dd427c..cc8e30f68 100644 --- a/config/cortex-a9/bli_config.h +++ b/config/cortex-a9/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/cortex-a9/bli_kernel.h b/config/cortex-a9/bli_kernel.h index d3a327784..ea7d953a7 100644 --- a/config/cortex-a9/bli_kernel.h +++ b/config/cortex-a9/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/cortex-a9/make_defs.mk b/config/cortex-a9/make_defs.mk index 9599afcc4..4622efb5d 100644 --- a/config/cortex-a9/make_defs.mk +++ b/config/cortex-a9/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/dunnington/bli_config.h b/config/dunnington/bli_config.h index 9b77e4543..65e6a2513 100644 --- a/config/dunnington/bli_config.h +++ b/config/dunnington/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/dunnington/bli_kernel.h b/config/dunnington/bli_kernel.h index 7c97cba71..490f3f921 100644 --- a/config/dunnington/bli_kernel.h +++ b/config/dunnington/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/dunnington/make_defs.mk b/config/dunnington/make_defs.mk index b58e1fa48..3684a304c 100644 --- a/config/dunnington/make_defs.mk +++ b/config/dunnington/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/loongson3a/bli_config.h b/config/loongson3a/bli_config.h index 612f0074c..e9f03d801 100644 --- a/config/loongson3a/bli_config.h +++ b/config/loongson3a/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/loongson3a/bli_kernel.h b/config/loongson3a/bli_kernel.h index a38cb0e2f..5c995d74e 100644 --- a/config/loongson3a/bli_kernel.h +++ b/config/loongson3a/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/loongson3a/make_defs.mk b/config/loongson3a/make_defs.mk index ec6c8506e..7e6968a82 100644 --- a/config/loongson3a/make_defs.mk +++ b/config/loongson3a/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/mic/bli_config.h b/config/mic/bli_config.h index 3f6a21f2e..8a3b528bb 100644 --- a/config/mic/bli_config.h +++ b/config/mic/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/mic/bli_kernel.h b/config/mic/bli_kernel.h index aa58d4219..34e3bb711 100644 --- a/config/mic/bli_kernel.h +++ b/config/mic/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/mic/make_defs.mk b/config/mic/make_defs.mk index 538bdc6da..c096aab73 100644 --- a/config/mic/make_defs.mk +++ b/config/mic/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/piledriver/bli_config.h b/config/piledriver/bli_config.h index 8aac103c7..e2f98f864 100644 --- a/config/piledriver/bli_config.h +++ b/config/piledriver/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/piledriver/bli_kernel.h b/config/piledriver/bli_kernel.h index 100fa8976..e7092fef4 100644 --- a/config/piledriver/bli_kernel.h +++ b/config/piledriver/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/piledriver/make_defs.mk b/config/piledriver/make_defs.mk index b41f1d626..f860bd044 100644 --- a/config/piledriver/make_defs.mk +++ b/config/piledriver/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/pnacl/bli_config.h b/config/pnacl/bli_config.h index 223dd427c..cc8e30f68 100644 --- a/config/pnacl/bli_config.h +++ b/config/pnacl/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/pnacl/bli_kernel.h b/config/pnacl/bli_kernel.h index 807183920..b3c679136 100644 --- a/config/pnacl/bli_kernel.h +++ b/config/pnacl/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/pnacl/make_defs.mk b/config/pnacl/make_defs.mk index 6c8f4349f..79747dafc 100644 --- a/config/pnacl/make_defs.mk +++ b/config/pnacl/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/power7/bli_config.h b/config/power7/bli_config.h index 9d2cada80..c38a2f7fb 100644 --- a/config/power7/bli_config.h +++ b/config/power7/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/power7/bli_kernel.h b/config/power7/bli_kernel.h index 6a909a858..bc7a0dc8d 100644 --- a/config/power7/bli_kernel.h +++ b/config/power7/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/power7/make_defs.mk b/config/power7/make_defs.mk index 6c80c2ea0..17d9410a5 100644 --- a/config/power7/make_defs.mk +++ b/config/power7/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/reference/bli_config.h b/config/reference/bli_config.h index 223dd427c..cc8e30f68 100644 --- a/config/reference/bli_config.h +++ b/config/reference/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/reference/bli_kernel.h b/config/reference/bli_kernel.h index 86356eff8..9dd872017 100644 --- a/config/reference/bli_kernel.h +++ b/config/reference/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/reference/make_defs.mk b/config/reference/make_defs.mk index b6557ea4e..62ee8fe1b 100644 --- a/config/reference/make_defs.mk +++ b/config/reference/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/sandybridge/bli_config.h b/config/sandybridge/bli_config.h index 9e4c7a083..37ed86513 100644 --- a/config/sandybridge/bli_config.h +++ b/config/sandybridge/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/sandybridge/bli_kernel.h b/config/sandybridge/bli_kernel.h index 4a112988e..ceaf91cc5 100644 --- a/config/sandybridge/bli_kernel.h +++ b/config/sandybridge/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/sandybridge/make_defs.mk b/config/sandybridge/make_defs.mk index ddb0c1cd3..7ee3e8de6 100644 --- a/config/sandybridge/make_defs.mk +++ b/config/sandybridge/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/bli_config.h b/config/template/bli_config.h index b9daa7f1f..04ae83ccb 100644 --- a/config/template/bli_config.h +++ b/config/template/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/bli_kernel.h b/config/template/bli_kernel.h index 2a4a1d212..a9cc52e12 100644 --- a/config/template/bli_kernel.h +++ b/config/template/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/1/bli_axpyv_opt_var1.c b/config/template/kernels/1/bli_axpyv_opt_var1.c index 44250c2a4..bb320d13a 100644 --- a/config/template/kernels/1/bli_axpyv_opt_var1.c +++ b/config/template/kernels/1/bli_axpyv_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/1/bli_dotv_opt_var1.c b/config/template/kernels/1/bli_dotv_opt_var1.c index b8d0692c9..5e61aff63 100644 --- a/config/template/kernels/1/bli_dotv_opt_var1.c +++ b/config/template/kernels/1/bli_dotv_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/1f/bli_axpy2v_opt_var1.c b/config/template/kernels/1f/bli_axpy2v_opt_var1.c index d49a78b3a..cff49de8b 100644 --- a/config/template/kernels/1f/bli_axpy2v_opt_var1.c +++ b/config/template/kernels/1f/bli_axpy2v_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/1f/bli_axpyf_opt_var1.c b/config/template/kernels/1f/bli_axpyf_opt_var1.c index 174d12324..4100061bd 100644 --- a/config/template/kernels/1f/bli_axpyf_opt_var1.c +++ b/config/template/kernels/1f/bli_axpyf_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/1f/bli_dotaxpyv_opt_var1.c b/config/template/kernels/1f/bli_dotaxpyv_opt_var1.c index 4db0fdcb8..7f7c12c62 100644 --- a/config/template/kernels/1f/bli_dotaxpyv_opt_var1.c +++ b/config/template/kernels/1f/bli_dotaxpyv_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/1f/bli_dotxaxpyf_opt_var1.c b/config/template/kernels/1f/bli_dotxaxpyf_opt_var1.c index 1a02fe880..04b2b5ab4 100644 --- a/config/template/kernels/1f/bli_dotxaxpyf_opt_var1.c +++ b/config/template/kernels/1f/bli_dotxaxpyf_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/1f/bli_dotxf_opt_var1.c b/config/template/kernels/1f/bli_dotxf_opt_var1.c index 7b090e1ee..757614f3e 100644 --- a/config/template/kernels/1f/bli_dotxf_opt_var1.c +++ b/config/template/kernels/1f/bli_dotxf_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/3/bli_gemm_opt_mxn.c b/config/template/kernels/3/bli_gemm_opt_mxn.c index d45fd1165..7c444ff4a 100644 --- a/config/template/kernels/3/bli_gemm_opt_mxn.c +++ b/config/template/kernels/3/bli_gemm_opt_mxn.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/3/bli_gemmtrsm_l_opt_mxn.c b/config/template/kernels/3/bli_gemmtrsm_l_opt_mxn.c index 6c7d04a89..c92f6df3b 100644 --- a/config/template/kernels/3/bli_gemmtrsm_l_opt_mxn.c +++ b/config/template/kernels/3/bli_gemmtrsm_l_opt_mxn.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/3/bli_gemmtrsm_u_opt_mxn.c b/config/template/kernels/3/bli_gemmtrsm_u_opt_mxn.c index ff8adecea..c456726a0 100644 --- a/config/template/kernels/3/bli_gemmtrsm_u_opt_mxn.c +++ b/config/template/kernels/3/bli_gemmtrsm_u_opt_mxn.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/3/bli_trsm_l_opt_mxn.c b/config/template/kernels/3/bli_trsm_l_opt_mxn.c index 99f456527..9ce740140 100644 --- a/config/template/kernels/3/bli_trsm_l_opt_mxn.c +++ b/config/template/kernels/3/bli_trsm_l_opt_mxn.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/kernels/3/bli_trsm_u_opt_mxn.c b/config/template/kernels/3/bli_trsm_u_opt_mxn.c index b65b4b48a..a18887d85 100644 --- a/config/template/kernels/3/bli_trsm_u_opt_mxn.c +++ b/config/template/kernels/3/bli_trsm_u_opt_mxn.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/config/template/make_defs.mk b/config/template/make_defs.mk index 6fba1ad35..d365dd824 100644 --- a/config/template/make_defs.mk +++ b/config/template/make_defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/configure b/configure index 4f2a3b4e0..acdb2ef78 100755 --- a/configure +++ b/configure @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/absqsc/bli_absqsc.c b/frame/0/absqsc/bli_absqsc.c index c8cc0b189..9557e4fe2 100644 --- a/frame/0/absqsc/bli_absqsc.c +++ b/frame/0/absqsc/bli_absqsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/absqsc/bli_absqsc.h b/frame/0/absqsc/bli_absqsc.h index 4474b234e..c42105ab0 100644 --- a/frame/0/absqsc/bli_absqsc.h +++ b/frame/0/absqsc/bli_absqsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/absqsc/bli_absqsc_check.c b/frame/0/absqsc/bli_absqsc_check.c index 4749d35a9..43686ca2c 100644 --- a/frame/0/absqsc/bli_absqsc_check.c +++ b/frame/0/absqsc/bli_absqsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/absqsc/bli_absqsc_check.h b/frame/0/absqsc/bli_absqsc_check.h index 30da5feb7..ebff519e8 100644 --- a/frame/0/absqsc/bli_absqsc_check.h +++ b/frame/0/absqsc/bli_absqsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/absqsc/bli_absqsc_unb_var1.c b/frame/0/absqsc/bli_absqsc_unb_var1.c index b0602daf2..36dc35b05 100644 --- a/frame/0/absqsc/bli_absqsc_unb_var1.c +++ b/frame/0/absqsc/bli_absqsc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/absqsc/bli_absqsc_unb_var1.h b/frame/0/absqsc/bli_absqsc_unb_var1.h index 08f29e3ba..7d07e52fc 100644 --- a/frame/0/absqsc/bli_absqsc_unb_var1.h +++ b/frame/0/absqsc/bli_absqsc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/addsc/bli_addsc.c b/frame/0/addsc/bli_addsc.c index 693333775..99db36d14 100644 --- a/frame/0/addsc/bli_addsc.c +++ b/frame/0/addsc/bli_addsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/addsc/bli_addsc.h b/frame/0/addsc/bli_addsc.h index b88de9aa5..50832b713 100644 --- a/frame/0/addsc/bli_addsc.h +++ b/frame/0/addsc/bli_addsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/addsc/bli_addsc_check.c b/frame/0/addsc/bli_addsc_check.c index 194434d4a..21b86305c 100644 --- a/frame/0/addsc/bli_addsc_check.c +++ b/frame/0/addsc/bli_addsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/addsc/bli_addsc_check.h b/frame/0/addsc/bli_addsc_check.h index 8f2381895..ddb48830c 100644 --- a/frame/0/addsc/bli_addsc_check.h +++ b/frame/0/addsc/bli_addsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/addsc/bli_addsc_unb_var1.c b/frame/0/addsc/bli_addsc_unb_var1.c index 9d367efac..79772418d 100644 --- a/frame/0/addsc/bli_addsc_unb_var1.c +++ b/frame/0/addsc/bli_addsc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/addsc/bli_addsc_unb_var1.h b/frame/0/addsc/bli_addsc_unb_var1.h index 548945b0d..ceab28a95 100644 --- a/frame/0/addsc/bli_addsc_unb_var1.h +++ b/frame/0/addsc/bli_addsc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/copysc/bli_copysc.c b/frame/0/copysc/bli_copysc.c index 0b813d0b7..346bf4d89 100644 --- a/frame/0/copysc/bli_copysc.c +++ b/frame/0/copysc/bli_copysc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/copysc/bli_copysc.h b/frame/0/copysc/bli_copysc.h index fe2aff51f..be2c8f52a 100644 --- a/frame/0/copysc/bli_copysc.h +++ b/frame/0/copysc/bli_copysc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/copysc/bli_copysc_check.c b/frame/0/copysc/bli_copysc_check.c index 88eb90ef6..2c16f11bb 100644 --- a/frame/0/copysc/bli_copysc_check.c +++ b/frame/0/copysc/bli_copysc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/copysc/bli_copysc_check.h b/frame/0/copysc/bli_copysc_check.h index 6fbd8dfcf..f060395e6 100644 --- a/frame/0/copysc/bli_copysc_check.h +++ b/frame/0/copysc/bli_copysc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/copysc/bli_copysc_unb_var1.c b/frame/0/copysc/bli_copysc_unb_var1.c index c7a89a642..394884e8f 100644 --- a/frame/0/copysc/bli_copysc_unb_var1.c +++ b/frame/0/copysc/bli_copysc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/copysc/bli_copysc_unb_var1.h b/frame/0/copysc/bli_copysc_unb_var1.h index e9485e736..70313c110 100644 --- a/frame/0/copysc/bli_copysc_unb_var1.h +++ b/frame/0/copysc/bli_copysc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/divsc/bli_divsc.c b/frame/0/divsc/bli_divsc.c index ec2ea2e44..7c29c6641 100644 --- a/frame/0/divsc/bli_divsc.c +++ b/frame/0/divsc/bli_divsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/divsc/bli_divsc.h b/frame/0/divsc/bli_divsc.h index 2f4be6e8f..a86d4a3eb 100644 --- a/frame/0/divsc/bli_divsc.h +++ b/frame/0/divsc/bli_divsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/divsc/bli_divsc_check.c b/frame/0/divsc/bli_divsc_check.c index 653a14b76..675cf9c05 100644 --- a/frame/0/divsc/bli_divsc_check.c +++ b/frame/0/divsc/bli_divsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/divsc/bli_divsc_check.h b/frame/0/divsc/bli_divsc_check.h index a4d1e6aba..6ee8785f9 100644 --- a/frame/0/divsc/bli_divsc_check.h +++ b/frame/0/divsc/bli_divsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/divsc/bli_divsc_unb_var1.c b/frame/0/divsc/bli_divsc_unb_var1.c index 8316b9a19..307184547 100644 --- a/frame/0/divsc/bli_divsc_unb_var1.c +++ b/frame/0/divsc/bli_divsc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/divsc/bli_divsc_unb_var1.h b/frame/0/divsc/bli_divsc_unb_var1.h index 40219d013..8ec7a39c7 100644 --- a/frame/0/divsc/bli_divsc_unb_var1.h +++ b/frame/0/divsc/bli_divsc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/getsc/bli_getsc.c b/frame/0/getsc/bli_getsc.c index 91b41fe18..87a394c26 100644 --- a/frame/0/getsc/bli_getsc.c +++ b/frame/0/getsc/bli_getsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/getsc/bli_getsc.h b/frame/0/getsc/bli_getsc.h index 493861ce4..9829aae73 100644 --- a/frame/0/getsc/bli_getsc.h +++ b/frame/0/getsc/bli_getsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/getsc/bli_getsc_check.c b/frame/0/getsc/bli_getsc_check.c index a1fac1ec0..e2f7df5be 100644 --- a/frame/0/getsc/bli_getsc_check.c +++ b/frame/0/getsc/bli_getsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/getsc/bli_getsc_check.h b/frame/0/getsc/bli_getsc_check.h index 5d6ddceb8..af66eb7f8 100644 --- a/frame/0/getsc/bli_getsc_check.h +++ b/frame/0/getsc/bli_getsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/mulsc/bli_mulsc.c b/frame/0/mulsc/bli_mulsc.c index d07c387e1..98cf5d46e 100644 --- a/frame/0/mulsc/bli_mulsc.c +++ b/frame/0/mulsc/bli_mulsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/mulsc/bli_mulsc.h b/frame/0/mulsc/bli_mulsc.h index 0965dfe91..f887a1685 100644 --- a/frame/0/mulsc/bli_mulsc.h +++ b/frame/0/mulsc/bli_mulsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/mulsc/bli_mulsc_check.c b/frame/0/mulsc/bli_mulsc_check.c index 829246a73..6845b31ff 100644 --- a/frame/0/mulsc/bli_mulsc_check.c +++ b/frame/0/mulsc/bli_mulsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/mulsc/bli_mulsc_check.h b/frame/0/mulsc/bli_mulsc_check.h index ee0789022..75146dd09 100644 --- a/frame/0/mulsc/bli_mulsc_check.h +++ b/frame/0/mulsc/bli_mulsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/mulsc/bli_mulsc_unb_var1.c b/frame/0/mulsc/bli_mulsc_unb_var1.c index 2db1149c9..776ff9c63 100644 --- a/frame/0/mulsc/bli_mulsc_unb_var1.c +++ b/frame/0/mulsc/bli_mulsc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/mulsc/bli_mulsc_unb_var1.h b/frame/0/mulsc/bli_mulsc_unb_var1.h index 241c5a94e..491651b26 100644 --- a/frame/0/mulsc/bli_mulsc_unb_var1.h +++ b/frame/0/mulsc/bli_mulsc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/normfsc/bli_normfsc.c b/frame/0/normfsc/bli_normfsc.c index 96a158a97..6b36ca0f8 100644 --- a/frame/0/normfsc/bli_normfsc.c +++ b/frame/0/normfsc/bli_normfsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/normfsc/bli_normfsc.h b/frame/0/normfsc/bli_normfsc.h index 804deacd3..cbdcb4d99 100644 --- a/frame/0/normfsc/bli_normfsc.h +++ b/frame/0/normfsc/bli_normfsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/normfsc/bli_normfsc_check.c b/frame/0/normfsc/bli_normfsc_check.c index 6fb166957..e3b2dd817 100644 --- a/frame/0/normfsc/bli_normfsc_check.c +++ b/frame/0/normfsc/bli_normfsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/normfsc/bli_normfsc_check.h b/frame/0/normfsc/bli_normfsc_check.h index ab39b97f4..a76c94a70 100644 --- a/frame/0/normfsc/bli_normfsc_check.h +++ b/frame/0/normfsc/bli_normfsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/normfsc/bli_normfsc_unb_var1.c b/frame/0/normfsc/bli_normfsc_unb_var1.c index 122430ae0..3acf8d289 100644 --- a/frame/0/normfsc/bli_normfsc_unb_var1.c +++ b/frame/0/normfsc/bli_normfsc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/normfsc/bli_normfsc_unb_var1.h b/frame/0/normfsc/bli_normfsc_unb_var1.h index 9151f4f9a..3595126f5 100644 --- a/frame/0/normfsc/bli_normfsc_unb_var1.h +++ b/frame/0/normfsc/bli_normfsc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/setsc/bli_setsc.c b/frame/0/setsc/bli_setsc.c index 2ac3db979..a399e54c5 100644 --- a/frame/0/setsc/bli_setsc.c +++ b/frame/0/setsc/bli_setsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/setsc/bli_setsc.h b/frame/0/setsc/bli_setsc.h index cf9dd8477..33321fc8c 100644 --- a/frame/0/setsc/bli_setsc.h +++ b/frame/0/setsc/bli_setsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/setsc/bli_setsc_check.c b/frame/0/setsc/bli_setsc_check.c index c373dff2e..0bfef82dc 100644 --- a/frame/0/setsc/bli_setsc_check.c +++ b/frame/0/setsc/bli_setsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/setsc/bli_setsc_check.h b/frame/0/setsc/bli_setsc_check.h index a60024b33..86aa1cbd2 100644 --- a/frame/0/setsc/bli_setsc_check.h +++ b/frame/0/setsc/bli_setsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/sqrtsc/bli_sqrtsc.c b/frame/0/sqrtsc/bli_sqrtsc.c index e3c3518d7..808b2377a 100644 --- a/frame/0/sqrtsc/bli_sqrtsc.c +++ b/frame/0/sqrtsc/bli_sqrtsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/sqrtsc/bli_sqrtsc.h b/frame/0/sqrtsc/bli_sqrtsc.h index ed6620eb1..077b833bf 100644 --- a/frame/0/sqrtsc/bli_sqrtsc.h +++ b/frame/0/sqrtsc/bli_sqrtsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/sqrtsc/bli_sqrtsc_check.c b/frame/0/sqrtsc/bli_sqrtsc_check.c index 39ce2d98b..8a7ba9d1c 100644 --- a/frame/0/sqrtsc/bli_sqrtsc_check.c +++ b/frame/0/sqrtsc/bli_sqrtsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/sqrtsc/bli_sqrtsc_check.h b/frame/0/sqrtsc/bli_sqrtsc_check.h index 08f81aca1..95d419035 100644 --- a/frame/0/sqrtsc/bli_sqrtsc_check.h +++ b/frame/0/sqrtsc/bli_sqrtsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/sqrtsc/bli_sqrtsc_unb_var1.c b/frame/0/sqrtsc/bli_sqrtsc_unb_var1.c index 525ca8488..3e1b360ca 100644 --- a/frame/0/sqrtsc/bli_sqrtsc_unb_var1.c +++ b/frame/0/sqrtsc/bli_sqrtsc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/sqrtsc/bli_sqrtsc_unb_var1.h b/frame/0/sqrtsc/bli_sqrtsc_unb_var1.h index 94a66891b..251ff5c7b 100644 --- a/frame/0/sqrtsc/bli_sqrtsc_unb_var1.h +++ b/frame/0/sqrtsc/bli_sqrtsc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/subsc/bli_subsc.c b/frame/0/subsc/bli_subsc.c index 7a1a65481..c3c18a202 100644 --- a/frame/0/subsc/bli_subsc.c +++ b/frame/0/subsc/bli_subsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/subsc/bli_subsc.h b/frame/0/subsc/bli_subsc.h index 800f75059..55d8e6036 100644 --- a/frame/0/subsc/bli_subsc.h +++ b/frame/0/subsc/bli_subsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/subsc/bli_subsc_check.c b/frame/0/subsc/bli_subsc_check.c index f02154463..8a66fa3f0 100644 --- a/frame/0/subsc/bli_subsc_check.c +++ b/frame/0/subsc/bli_subsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/subsc/bli_subsc_check.h b/frame/0/subsc/bli_subsc_check.h index 937a93dd6..3e8a16067 100644 --- a/frame/0/subsc/bli_subsc_check.h +++ b/frame/0/subsc/bli_subsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/subsc/bli_subsc_unb_var1.c b/frame/0/subsc/bli_subsc_unb_var1.c index 471d896c9..6d2b3f919 100644 --- a/frame/0/subsc/bli_subsc_unb_var1.c +++ b/frame/0/subsc/bli_subsc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/subsc/bli_subsc_unb_var1.h b/frame/0/subsc/bli_subsc_unb_var1.h index fc9419ec2..326198580 100644 --- a/frame/0/subsc/bli_subsc_unb_var1.h +++ b/frame/0/subsc/bli_subsc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/unzipsc/bli_unzipsc.c b/frame/0/unzipsc/bli_unzipsc.c index bdde5f293..42954f495 100644 --- a/frame/0/unzipsc/bli_unzipsc.c +++ b/frame/0/unzipsc/bli_unzipsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/unzipsc/bli_unzipsc.h b/frame/0/unzipsc/bli_unzipsc.h index 9dcfc1261..77904486a 100644 --- a/frame/0/unzipsc/bli_unzipsc.h +++ b/frame/0/unzipsc/bli_unzipsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/unzipsc/bli_unzipsc_check.c b/frame/0/unzipsc/bli_unzipsc_check.c index 62923c986..506995d47 100644 --- a/frame/0/unzipsc/bli_unzipsc_check.c +++ b/frame/0/unzipsc/bli_unzipsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/unzipsc/bli_unzipsc_check.h b/frame/0/unzipsc/bli_unzipsc_check.h index edc12d0f2..f97c6ed94 100644 --- a/frame/0/unzipsc/bli_unzipsc_check.h +++ b/frame/0/unzipsc/bli_unzipsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/unzipsc/bli_unzipsc_unb_var1.c b/frame/0/unzipsc/bli_unzipsc_unb_var1.c index fefa87ba8..702a54b3c 100644 --- a/frame/0/unzipsc/bli_unzipsc_unb_var1.c +++ b/frame/0/unzipsc/bli_unzipsc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/unzipsc/bli_unzipsc_unb_var1.h b/frame/0/unzipsc/bli_unzipsc_unb_var1.h index 8ac2c1218..9195e676e 100644 --- a/frame/0/unzipsc/bli_unzipsc_unb_var1.h +++ b/frame/0/unzipsc/bli_unzipsc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/zipsc/bli_zipsc.c b/frame/0/zipsc/bli_zipsc.c index 898465c0b..a86881ddb 100644 --- a/frame/0/zipsc/bli_zipsc.c +++ b/frame/0/zipsc/bli_zipsc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/zipsc/bli_zipsc.h b/frame/0/zipsc/bli_zipsc.h index dcfb33809..8fa4cfbde 100644 --- a/frame/0/zipsc/bli_zipsc.h +++ b/frame/0/zipsc/bli_zipsc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/zipsc/bli_zipsc_check.c b/frame/0/zipsc/bli_zipsc_check.c index cfff954ed..787d39420 100644 --- a/frame/0/zipsc/bli_zipsc_check.c +++ b/frame/0/zipsc/bli_zipsc_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/zipsc/bli_zipsc_check.h b/frame/0/zipsc/bli_zipsc_check.h index c61bcf2eb..db2dae92c 100644 --- a/frame/0/zipsc/bli_zipsc_check.h +++ b/frame/0/zipsc/bli_zipsc_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/zipsc/bli_zipsc_unb_var1.c b/frame/0/zipsc/bli_zipsc_unb_var1.c index 35cf053c9..37137c126 100644 --- a/frame/0/zipsc/bli_zipsc_unb_var1.c +++ b/frame/0/zipsc/bli_zipsc_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/0/zipsc/bli_zipsc_unb_var1.h b/frame/0/zipsc/bli_zipsc_unb_var1.h index bd71ff80d..54230996a 100644 --- a/frame/0/zipsc/bli_zipsc_unb_var1.h +++ b/frame/0/zipsc/bli_zipsc_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/addv/bli_addv.c b/frame/1/addv/bli_addv.c index 1dcf537c0..95ddf23e5 100644 --- a/frame/1/addv/bli_addv.c +++ b/frame/1/addv/bli_addv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/addv/bli_addv.h b/frame/1/addv/bli_addv.h index 245cff990..19f9ddd86 100644 --- a/frame/1/addv/bli_addv.h +++ b/frame/1/addv/bli_addv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/addv/bli_addv_check.c b/frame/1/addv/bli_addv_check.c index 60bc26525..e266d055a 100644 --- a/frame/1/addv/bli_addv_check.c +++ b/frame/1/addv/bli_addv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/addv/bli_addv_check.h b/frame/1/addv/bli_addv_check.h index 2a50d6331..61b85f432 100644 --- a/frame/1/addv/bli_addv_check.h +++ b/frame/1/addv/bli_addv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/addv/bli_addv_kernel.c b/frame/1/addv/bli_addv_kernel.c index b838d89be..a863284d8 100644 --- a/frame/1/addv/bli_addv_kernel.c +++ b/frame/1/addv/bli_addv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/addv/bli_addv_kernel.h b/frame/1/addv/bli_addv_kernel.h index 37f232598..33aedafd4 100644 --- a/frame/1/addv/bli_addv_kernel.h +++ b/frame/1/addv/bli_addv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/addv/bli_addv_ref.c b/frame/1/addv/bli_addv_ref.c index 99459d02b..5a92bf7ad 100644 --- a/frame/1/addv/bli_addv_ref.c +++ b/frame/1/addv/bli_addv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/addv/bli_addv_ref.h b/frame/1/addv/bli_addv_ref.h index f9b34d656..048eb015c 100644 --- a/frame/1/addv/bli_addv_ref.h +++ b/frame/1/addv/bli_addv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/axpyv/bli_axpyv.c b/frame/1/axpyv/bli_axpyv.c index 3b975aa93..e5e2272de 100644 --- a/frame/1/axpyv/bli_axpyv.c +++ b/frame/1/axpyv/bli_axpyv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/axpyv/bli_axpyv.h b/frame/1/axpyv/bli_axpyv.h index a1124b8a3..e8b644db2 100644 --- a/frame/1/axpyv/bli_axpyv.h +++ b/frame/1/axpyv/bli_axpyv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/axpyv/bli_axpyv_check.c b/frame/1/axpyv/bli_axpyv_check.c index 679b653e1..b3f3c9dbf 100644 --- a/frame/1/axpyv/bli_axpyv_check.c +++ b/frame/1/axpyv/bli_axpyv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/axpyv/bli_axpyv_check.h b/frame/1/axpyv/bli_axpyv_check.h index 494cdc1c1..6d8abcbcf 100644 --- a/frame/1/axpyv/bli_axpyv_check.h +++ b/frame/1/axpyv/bli_axpyv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/axpyv/bli_axpyv_kernel.c b/frame/1/axpyv/bli_axpyv_kernel.c index e7689732e..70034f778 100644 --- a/frame/1/axpyv/bli_axpyv_kernel.c +++ b/frame/1/axpyv/bli_axpyv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/axpyv/bli_axpyv_kernel.h b/frame/1/axpyv/bli_axpyv_kernel.h index c66e4786c..2db508ef1 100644 --- a/frame/1/axpyv/bli_axpyv_kernel.h +++ b/frame/1/axpyv/bli_axpyv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/axpyv/bli_axpyv_ref.c b/frame/1/axpyv/bli_axpyv_ref.c index a5de632fc..80c92fc08 100644 --- a/frame/1/axpyv/bli_axpyv_ref.c +++ b/frame/1/axpyv/bli_axpyv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/axpyv/bli_axpyv_ref.h b/frame/1/axpyv/bli_axpyv_ref.h index aad2bda79..f8e600cd0 100644 --- a/frame/1/axpyv/bli_axpyv_ref.h +++ b/frame/1/axpyv/bli_axpyv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/copyv/bli_copyv.c b/frame/1/copyv/bli_copyv.c index 708066ad6..56aa8b286 100644 --- a/frame/1/copyv/bli_copyv.c +++ b/frame/1/copyv/bli_copyv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/copyv/bli_copyv.h b/frame/1/copyv/bli_copyv.h index b8e914491..b664fb55e 100644 --- a/frame/1/copyv/bli_copyv.h +++ b/frame/1/copyv/bli_copyv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/copyv/bli_copyv_check.c b/frame/1/copyv/bli_copyv_check.c index 1c6413bed..e484f26b0 100644 --- a/frame/1/copyv/bli_copyv_check.c +++ b/frame/1/copyv/bli_copyv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/copyv/bli_copyv_check.h b/frame/1/copyv/bli_copyv_check.h index 795cef276..e8fe97c3e 100644 --- a/frame/1/copyv/bli_copyv_check.h +++ b/frame/1/copyv/bli_copyv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/copyv/bli_copyv_kernel.c b/frame/1/copyv/bli_copyv_kernel.c index d48fe134e..aab8c0604 100644 --- a/frame/1/copyv/bli_copyv_kernel.c +++ b/frame/1/copyv/bli_copyv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/copyv/bli_copyv_kernel.h b/frame/1/copyv/bli_copyv_kernel.h index bd1fdfedd..83c8c6a4c 100644 --- a/frame/1/copyv/bli_copyv_kernel.h +++ b/frame/1/copyv/bli_copyv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/copyv/bli_copyv_ref.c b/frame/1/copyv/bli_copyv_ref.c index c9aa424b7..abff268dc 100644 --- a/frame/1/copyv/bli_copyv_ref.c +++ b/frame/1/copyv/bli_copyv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/copyv/bli_copyv_ref.h b/frame/1/copyv/bli_copyv_ref.h index 2b9da5d88..7cc4c4259 100644 --- a/frame/1/copyv/bli_copyv_ref.h +++ b/frame/1/copyv/bli_copyv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotv/bli_dotv.c b/frame/1/dotv/bli_dotv.c index a6db37887..34a1b8499 100644 --- a/frame/1/dotv/bli_dotv.c +++ b/frame/1/dotv/bli_dotv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotv/bli_dotv.h b/frame/1/dotv/bli_dotv.h index 3067939b9..ddc22967a 100644 --- a/frame/1/dotv/bli_dotv.h +++ b/frame/1/dotv/bli_dotv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotv/bli_dotv_check.c b/frame/1/dotv/bli_dotv_check.c index 817e553cd..8a221638f 100644 --- a/frame/1/dotv/bli_dotv_check.c +++ b/frame/1/dotv/bli_dotv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotv/bli_dotv_check.h b/frame/1/dotv/bli_dotv_check.h index b90d39460..3ed387439 100644 --- a/frame/1/dotv/bli_dotv_check.h +++ b/frame/1/dotv/bli_dotv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotv/bli_dotv_kernel.c b/frame/1/dotv/bli_dotv_kernel.c index cdfb6ef1c..8f0970c08 100644 --- a/frame/1/dotv/bli_dotv_kernel.c +++ b/frame/1/dotv/bli_dotv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotv/bli_dotv_kernel.h b/frame/1/dotv/bli_dotv_kernel.h index febe7c166..c1a217361 100644 --- a/frame/1/dotv/bli_dotv_kernel.h +++ b/frame/1/dotv/bli_dotv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotv/bli_dotv_ref.c b/frame/1/dotv/bli_dotv_ref.c index 61bfb2c22..64fd207b0 100644 --- a/frame/1/dotv/bli_dotv_ref.c +++ b/frame/1/dotv/bli_dotv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotv/bli_dotv_ref.h b/frame/1/dotv/bli_dotv_ref.h index f87d53a41..c637215c7 100644 --- a/frame/1/dotv/bli_dotv_ref.h +++ b/frame/1/dotv/bli_dotv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotxv/bli_dotxv.c b/frame/1/dotxv/bli_dotxv.c index b93d56713..08cb71b04 100644 --- a/frame/1/dotxv/bli_dotxv.c +++ b/frame/1/dotxv/bli_dotxv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotxv/bli_dotxv.h b/frame/1/dotxv/bli_dotxv.h index a6c4e44a6..f48efbfdd 100644 --- a/frame/1/dotxv/bli_dotxv.h +++ b/frame/1/dotxv/bli_dotxv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotxv/bli_dotxv_check.c b/frame/1/dotxv/bli_dotxv_check.c index 71231b8cd..66d7bf568 100644 --- a/frame/1/dotxv/bli_dotxv_check.c +++ b/frame/1/dotxv/bli_dotxv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotxv/bli_dotxv_check.h b/frame/1/dotxv/bli_dotxv_check.h index 77a1a5a14..ab652e325 100644 --- a/frame/1/dotxv/bli_dotxv_check.h +++ b/frame/1/dotxv/bli_dotxv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotxv/bli_dotxv_kernel.c b/frame/1/dotxv/bli_dotxv_kernel.c index 16ec792ac..247b767d2 100644 --- a/frame/1/dotxv/bli_dotxv_kernel.c +++ b/frame/1/dotxv/bli_dotxv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotxv/bli_dotxv_kernel.h b/frame/1/dotxv/bli_dotxv_kernel.h index e3f0ab520..fe41cf168 100644 --- a/frame/1/dotxv/bli_dotxv_kernel.h +++ b/frame/1/dotxv/bli_dotxv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotxv/bli_dotxv_ref.c b/frame/1/dotxv/bli_dotxv_ref.c index b1d0cd61c..f2b2c2486 100644 --- a/frame/1/dotxv/bli_dotxv_ref.c +++ b/frame/1/dotxv/bli_dotxv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/dotxv/bli_dotxv_ref.h b/frame/1/dotxv/bli_dotxv_ref.h index 2fa27710d..560f69bd3 100644 --- a/frame/1/dotxv/bli_dotxv_ref.h +++ b/frame/1/dotxv/bli_dotxv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/invertv/bli_invertv.c b/frame/1/invertv/bli_invertv.c index 256bebdac..22e989177 100644 --- a/frame/1/invertv/bli_invertv.c +++ b/frame/1/invertv/bli_invertv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/invertv/bli_invertv.h b/frame/1/invertv/bli_invertv.h index 99a8643b2..771ae10f1 100644 --- a/frame/1/invertv/bli_invertv.h +++ b/frame/1/invertv/bli_invertv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/invertv/bli_invertv_check.c b/frame/1/invertv/bli_invertv_check.c index 11dbca51a..9a2750ab1 100644 --- a/frame/1/invertv/bli_invertv_check.c +++ b/frame/1/invertv/bli_invertv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/invertv/bli_invertv_check.h b/frame/1/invertv/bli_invertv_check.h index 341db4be4..a258f1264 100644 --- a/frame/1/invertv/bli_invertv_check.h +++ b/frame/1/invertv/bli_invertv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/invertv/bli_invertv_kernel.c b/frame/1/invertv/bli_invertv_kernel.c index 522428a81..81ef38309 100644 --- a/frame/1/invertv/bli_invertv_kernel.c +++ b/frame/1/invertv/bli_invertv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/invertv/bli_invertv_kernel.h b/frame/1/invertv/bli_invertv_kernel.h index 667d75ee4..6de80922f 100644 --- a/frame/1/invertv/bli_invertv_kernel.h +++ b/frame/1/invertv/bli_invertv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/invertv/bli_invertv_ref.c b/frame/1/invertv/bli_invertv_ref.c index 4b764a579..52bbfa349 100644 --- a/frame/1/invertv/bli_invertv_ref.c +++ b/frame/1/invertv/bli_invertv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/invertv/bli_invertv_ref.h b/frame/1/invertv/bli_invertv_ref.h index 1794c972c..fa2562131 100644 --- a/frame/1/invertv/bli_invertv_ref.h +++ b/frame/1/invertv/bli_invertv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv.c b/frame/1/packv/bli_packv.c index e3e02532a..3a64f1646 100644 --- a/frame/1/packv/bli_packv.c +++ b/frame/1/packv/bli_packv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv.h b/frame/1/packv/bli_packv.h index b62786ebc..f10c20634 100644 --- a/frame/1/packv/bli_packv.h +++ b/frame/1/packv/bli_packv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_check.c b/frame/1/packv/bli_packv_check.c index 7006de1da..8737b8bbb 100644 --- a/frame/1/packv/bli_packv_check.c +++ b/frame/1/packv/bli_packv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_check.h b/frame/1/packv/bli_packv_check.h index 1cf0bba03..fd7d7c850 100644 --- a/frame/1/packv/bli_packv_check.h +++ b/frame/1/packv/bli_packv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_cntl.c b/frame/1/packv/bli_packv_cntl.c index 73f4b1756..dbc353b43 100644 --- a/frame/1/packv/bli_packv_cntl.c +++ b/frame/1/packv/bli_packv_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_cntl.h b/frame/1/packv/bli_packv_cntl.h index afc4e5b06..2cac974fb 100644 --- a/frame/1/packv/bli_packv_cntl.h +++ b/frame/1/packv/bli_packv_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_init.c b/frame/1/packv/bli_packv_init.c index ce633ad47..033d3b4d9 100644 --- a/frame/1/packv/bli_packv_init.c +++ b/frame/1/packv/bli_packv_init.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_init.h b/frame/1/packv/bli_packv_init.h index 7d69434d2..d77fc8166 100644 --- a/frame/1/packv/bli_packv_init.h +++ b/frame/1/packv/bli_packv_init.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_int.c b/frame/1/packv/bli_packv_int.c index b148d4e38..01483a91d 100644 --- a/frame/1/packv/bli_packv_int.c +++ b/frame/1/packv/bli_packv_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_int.h b/frame/1/packv/bli_packv_int.h index d11b533da..962979fa9 100644 --- a/frame/1/packv/bli_packv_int.h +++ b/frame/1/packv/bli_packv_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_unb_var1.c b/frame/1/packv/bli_packv_unb_var1.c index 2fca1077d..ec87dd6fe 100644 --- a/frame/1/packv/bli_packv_unb_var1.c +++ b/frame/1/packv/bli_packv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/packv/bli_packv_unb_var1.h b/frame/1/packv/bli_packv_unb_var1.h index eb5ad535a..17a40e1d3 100644 --- a/frame/1/packv/bli_packv_unb_var1.h +++ b/frame/1/packv/bli_packv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scal2v/bli_scal2v.c b/frame/1/scal2v/bli_scal2v.c index d1bd7cc77..6d0188f69 100644 --- a/frame/1/scal2v/bli_scal2v.c +++ b/frame/1/scal2v/bli_scal2v.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scal2v/bli_scal2v.h b/frame/1/scal2v/bli_scal2v.h index 426f54ae1..38c4c9a69 100644 --- a/frame/1/scal2v/bli_scal2v.h +++ b/frame/1/scal2v/bli_scal2v.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scal2v/bli_scal2v_check.c b/frame/1/scal2v/bli_scal2v_check.c index 4a0fc57d4..0580693f6 100644 --- a/frame/1/scal2v/bli_scal2v_check.c +++ b/frame/1/scal2v/bli_scal2v_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scal2v/bli_scal2v_check.h b/frame/1/scal2v/bli_scal2v_check.h index c3afdf9f7..0f0c592ee 100644 --- a/frame/1/scal2v/bli_scal2v_check.h +++ b/frame/1/scal2v/bli_scal2v_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scal2v/bli_scal2v_kernel.c b/frame/1/scal2v/bli_scal2v_kernel.c index 644f1bc10..13a78643e 100644 --- a/frame/1/scal2v/bli_scal2v_kernel.c +++ b/frame/1/scal2v/bli_scal2v_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scal2v/bli_scal2v_kernel.h b/frame/1/scal2v/bli_scal2v_kernel.h index 3b7d626fc..3777e56f0 100644 --- a/frame/1/scal2v/bli_scal2v_kernel.h +++ b/frame/1/scal2v/bli_scal2v_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scal2v/bli_scal2v_ref.c b/frame/1/scal2v/bli_scal2v_ref.c index 25bc50457..d1cc87643 100644 --- a/frame/1/scal2v/bli_scal2v_ref.c +++ b/frame/1/scal2v/bli_scal2v_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scal2v/bli_scal2v_ref.h b/frame/1/scal2v/bli_scal2v_ref.h index 94b6d276f..ef0ca47cd 100644 --- a/frame/1/scal2v/bli_scal2v_ref.h +++ b/frame/1/scal2v/bli_scal2v_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv.c b/frame/1/scalv/bli_scalv.c index f2c83f053..0c2403817 100644 --- a/frame/1/scalv/bli_scalv.c +++ b/frame/1/scalv/bli_scalv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv.h b/frame/1/scalv/bli_scalv.h index bb445fe53..db48a3cad 100644 --- a/frame/1/scalv/bli_scalv.h +++ b/frame/1/scalv/bli_scalv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_check.c b/frame/1/scalv/bli_scalv_check.c index d1fcece1e..8e0cf5614 100644 --- a/frame/1/scalv/bli_scalv_check.c +++ b/frame/1/scalv/bli_scalv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_check.h b/frame/1/scalv/bli_scalv_check.h index c04ace50b..f522644c0 100644 --- a/frame/1/scalv/bli_scalv_check.h +++ b/frame/1/scalv/bli_scalv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_cntl.c b/frame/1/scalv/bli_scalv_cntl.c index 1e537e1f0..e3f259f3e 100644 --- a/frame/1/scalv/bli_scalv_cntl.c +++ b/frame/1/scalv/bli_scalv_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_cntl.h b/frame/1/scalv/bli_scalv_cntl.h index 4b3e3a3d9..f2a43b1ae 100644 --- a/frame/1/scalv/bli_scalv_cntl.h +++ b/frame/1/scalv/bli_scalv_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_int.c b/frame/1/scalv/bli_scalv_int.c index a3de0cfcd..e74172df6 100644 --- a/frame/1/scalv/bli_scalv_int.c +++ b/frame/1/scalv/bli_scalv_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_int.h b/frame/1/scalv/bli_scalv_int.h index a8975e1fb..1580c9581 100644 --- a/frame/1/scalv/bli_scalv_int.h +++ b/frame/1/scalv/bli_scalv_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_kernel.c b/frame/1/scalv/bli_scalv_kernel.c index cf901b0c3..1840ca13b 100644 --- a/frame/1/scalv/bli_scalv_kernel.c +++ b/frame/1/scalv/bli_scalv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_kernel.h b/frame/1/scalv/bli_scalv_kernel.h index d4afdacfa..e5db40102 100644 --- a/frame/1/scalv/bli_scalv_kernel.h +++ b/frame/1/scalv/bli_scalv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_ref.c b/frame/1/scalv/bli_scalv_ref.c index 7d99af4ac..46af42506 100644 --- a/frame/1/scalv/bli_scalv_ref.c +++ b/frame/1/scalv/bli_scalv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/scalv/bli_scalv_ref.h b/frame/1/scalv/bli_scalv_ref.h index 5eafcbd7f..9e22a56b6 100644 --- a/frame/1/scalv/bli_scalv_ref.h +++ b/frame/1/scalv/bli_scalv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/bli_setv.c b/frame/1/setv/bli_setv.c index f8898e4cd..9e734f87c 100644 --- a/frame/1/setv/bli_setv.c +++ b/frame/1/setv/bli_setv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/bli_setv.h b/frame/1/setv/bli_setv.h index 547c3118e..cb49e9f36 100644 --- a/frame/1/setv/bli_setv.h +++ b/frame/1/setv/bli_setv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/bli_setv_check.c b/frame/1/setv/bli_setv_check.c index 830706879..198cb233d 100644 --- a/frame/1/setv/bli_setv_check.c +++ b/frame/1/setv/bli_setv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/bli_setv_check.h b/frame/1/setv/bli_setv_check.h index c3dfc840a..46b7aea39 100644 --- a/frame/1/setv/bli_setv_check.h +++ b/frame/1/setv/bli_setv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/bli_setv_kernel.c b/frame/1/setv/bli_setv_kernel.c index ded4af1ad..cb3564787 100644 --- a/frame/1/setv/bli_setv_kernel.c +++ b/frame/1/setv/bli_setv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/bli_setv_kernel.h b/frame/1/setv/bli_setv_kernel.h index b10687327..661e6c545 100644 --- a/frame/1/setv/bli_setv_kernel.h +++ b/frame/1/setv/bli_setv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/bli_setv_ref.c b/frame/1/setv/bli_setv_ref.c index 2c2473fdd..db9862606 100644 --- a/frame/1/setv/bli_setv_ref.c +++ b/frame/1/setv/bli_setv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/bli_setv_ref.h b/frame/1/setv/bli_setv_ref.h index 325262ea6..3ae3a1bb0 100644 --- a/frame/1/setv/bli_setv_ref.h +++ b/frame/1/setv/bli_setv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/old/bli_setv_unb_var2.c b/frame/1/setv/old/bli_setv_unb_var2.c index 7764d25b2..9260383ca 100644 --- a/frame/1/setv/old/bli_setv_unb_var2.c +++ b/frame/1/setv/old/bli_setv_unb_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/setv/old/bli_setv_unb_var2.h b/frame/1/setv/old/bli_setv_unb_var2.h index 517dfe210..31e068a7d 100644 --- a/frame/1/setv/old/bli_setv_unb_var2.h +++ b/frame/1/setv/old/bli_setv_unb_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/subv/bli_subv.c b/frame/1/subv/bli_subv.c index cea807049..3425967f9 100644 --- a/frame/1/subv/bli_subv.c +++ b/frame/1/subv/bli_subv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/subv/bli_subv.h b/frame/1/subv/bli_subv.h index ea516a0eb..5a287d3ff 100644 --- a/frame/1/subv/bli_subv.h +++ b/frame/1/subv/bli_subv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/subv/bli_subv_check.c b/frame/1/subv/bli_subv_check.c index a540c510a..885361e13 100644 --- a/frame/1/subv/bli_subv_check.c +++ b/frame/1/subv/bli_subv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/subv/bli_subv_check.h b/frame/1/subv/bli_subv_check.h index bf1a30ce2..4903c8239 100644 --- a/frame/1/subv/bli_subv_check.h +++ b/frame/1/subv/bli_subv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/subv/bli_subv_kernel.c b/frame/1/subv/bli_subv_kernel.c index 3b1e0db2d..c5d97d54b 100644 --- a/frame/1/subv/bli_subv_kernel.c +++ b/frame/1/subv/bli_subv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/subv/bli_subv_kernel.h b/frame/1/subv/bli_subv_kernel.h index b724718a4..2f4a16a06 100644 --- a/frame/1/subv/bli_subv_kernel.h +++ b/frame/1/subv/bli_subv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/subv/bli_subv_ref.c b/frame/1/subv/bli_subv_ref.c index 770d26e76..500f6f0ae 100644 --- a/frame/1/subv/bli_subv_ref.c +++ b/frame/1/subv/bli_subv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/subv/bli_subv_ref.h b/frame/1/subv/bli_subv_ref.h index 23c67f3fc..033962169 100644 --- a/frame/1/subv/bli_subv_ref.h +++ b/frame/1/subv/bli_subv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/swapv/bli_swapv.c b/frame/1/swapv/bli_swapv.c index c5a72ab52..3e4d96517 100644 --- a/frame/1/swapv/bli_swapv.c +++ b/frame/1/swapv/bli_swapv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/swapv/bli_swapv.h b/frame/1/swapv/bli_swapv.h index dee3a017c..c73118aec 100644 --- a/frame/1/swapv/bli_swapv.h +++ b/frame/1/swapv/bli_swapv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/swapv/bli_swapv_check.c b/frame/1/swapv/bli_swapv_check.c index d3bf4c4a7..8eb8b23c1 100644 --- a/frame/1/swapv/bli_swapv_check.c +++ b/frame/1/swapv/bli_swapv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/swapv/bli_swapv_check.h b/frame/1/swapv/bli_swapv_check.h index 095333443..9a24581b9 100644 --- a/frame/1/swapv/bli_swapv_check.h +++ b/frame/1/swapv/bli_swapv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/swapv/bli_swapv_kernel.c b/frame/1/swapv/bli_swapv_kernel.c index 7df387c2d..f8fe41b69 100644 --- a/frame/1/swapv/bli_swapv_kernel.c +++ b/frame/1/swapv/bli_swapv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/swapv/bli_swapv_kernel.h b/frame/1/swapv/bli_swapv_kernel.h index d9deca1b1..d2c446564 100644 --- a/frame/1/swapv/bli_swapv_kernel.h +++ b/frame/1/swapv/bli_swapv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/swapv/bli_swapv_ref.c b/frame/1/swapv/bli_swapv_ref.c index 6492821d4..82848821d 100644 --- a/frame/1/swapv/bli_swapv_ref.c +++ b/frame/1/swapv/bli_swapv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/swapv/bli_swapv_ref.h b/frame/1/swapv/bli_swapv_ref.h index f8900f0d9..15b4d6b37 100644 --- a/frame/1/swapv/bli_swapv_ref.h +++ b/frame/1/swapv/bli_swapv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv.c b/frame/1/unpackv/bli_unpackv.c index e3e02532a..3a64f1646 100644 --- a/frame/1/unpackv/bli_unpackv.c +++ b/frame/1/unpackv/bli_unpackv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv.h b/frame/1/unpackv/bli_unpackv.h index e394057a9..9b326e933 100644 --- a/frame/1/unpackv/bli_unpackv.h +++ b/frame/1/unpackv/bli_unpackv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv_check.c b/frame/1/unpackv/bli_unpackv_check.c index 879411a1b..4ca6b86f8 100644 --- a/frame/1/unpackv/bli_unpackv_check.c +++ b/frame/1/unpackv/bli_unpackv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv_check.h b/frame/1/unpackv/bli_unpackv_check.h index 2d4c301e0..63bef2396 100644 --- a/frame/1/unpackv/bli_unpackv_check.h +++ b/frame/1/unpackv/bli_unpackv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv_cntl.c b/frame/1/unpackv/bli_unpackv_cntl.c index e6ba25928..56d40a69b 100644 --- a/frame/1/unpackv/bli_unpackv_cntl.c +++ b/frame/1/unpackv/bli_unpackv_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv_cntl.h b/frame/1/unpackv/bli_unpackv_cntl.h index 7726bc1ed..d40982041 100644 --- a/frame/1/unpackv/bli_unpackv_cntl.h +++ b/frame/1/unpackv/bli_unpackv_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv_int.c b/frame/1/unpackv/bli_unpackv_int.c index 8924aab9e..f3c2cc23c 100644 --- a/frame/1/unpackv/bli_unpackv_int.c +++ b/frame/1/unpackv/bli_unpackv_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv_int.h b/frame/1/unpackv/bli_unpackv_int.h index 1c48902b0..ae94c4c81 100644 --- a/frame/1/unpackv/bli_unpackv_int.h +++ b/frame/1/unpackv/bli_unpackv_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv_unb_var1.c b/frame/1/unpackv/bli_unpackv_unb_var1.c index 37c539806..fbbda2440 100644 --- a/frame/1/unpackv/bli_unpackv_unb_var1.c +++ b/frame/1/unpackv/bli_unpackv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1/unpackv/bli_unpackv_unb_var1.h b/frame/1/unpackv/bli_unpackv_unb_var1.h index 313dc94d6..dd34fa434 100644 --- a/frame/1/unpackv/bli_unpackv_unb_var1.h +++ b/frame/1/unpackv/bli_unpackv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/addd/bli_addd.c b/frame/1d/addd/bli_addd.c index 0cf03c7c4..409f89945 100644 --- a/frame/1d/addd/bli_addd.c +++ b/frame/1d/addd/bli_addd.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/addd/bli_addd.h b/frame/1d/addd/bli_addd.h index e654e99ea..6976588fa 100644 --- a/frame/1d/addd/bli_addd.h +++ b/frame/1d/addd/bli_addd.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/addd/bli_addd_check.c b/frame/1d/addd/bli_addd_check.c index b8ee1e856..44ae38175 100644 --- a/frame/1d/addd/bli_addd_check.c +++ b/frame/1d/addd/bli_addd_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/addd/bli_addd_check.h b/frame/1d/addd/bli_addd_check.h index ca2bca4b1..784805293 100644 --- a/frame/1d/addd/bli_addd_check.h +++ b/frame/1d/addd/bli_addd_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/addd/bli_addd_unb_var1.c b/frame/1d/addd/bli_addd_unb_var1.c index f77da17e7..d9ba81078 100644 --- a/frame/1d/addd/bli_addd_unb_var1.c +++ b/frame/1d/addd/bli_addd_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/addd/bli_addd_unb_var1.h b/frame/1d/addd/bli_addd_unb_var1.h index e43e597d1..bbf5416f6 100644 --- a/frame/1d/addd/bli_addd_unb_var1.h +++ b/frame/1d/addd/bli_addd_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/axpyd/bli_axpyd.c b/frame/1d/axpyd/bli_axpyd.c index b754b9773..dd689cbd2 100644 --- a/frame/1d/axpyd/bli_axpyd.c +++ b/frame/1d/axpyd/bli_axpyd.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/axpyd/bli_axpyd.h b/frame/1d/axpyd/bli_axpyd.h index b4fe6b0b2..0971a6809 100644 --- a/frame/1d/axpyd/bli_axpyd.h +++ b/frame/1d/axpyd/bli_axpyd.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/axpyd/bli_axpyd_check.c b/frame/1d/axpyd/bli_axpyd_check.c index cc0d962b3..d2171d527 100644 --- a/frame/1d/axpyd/bli_axpyd_check.c +++ b/frame/1d/axpyd/bli_axpyd_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/axpyd/bli_axpyd_check.h b/frame/1d/axpyd/bli_axpyd_check.h index 1db196dfb..97911700b 100644 --- a/frame/1d/axpyd/bli_axpyd_check.h +++ b/frame/1d/axpyd/bli_axpyd_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/axpyd/bli_axpyd_unb_var1.c b/frame/1d/axpyd/bli_axpyd_unb_var1.c index 459c75af8..5aaaade0a 100644 --- a/frame/1d/axpyd/bli_axpyd_unb_var1.c +++ b/frame/1d/axpyd/bli_axpyd_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/axpyd/bli_axpyd_unb_var1.h b/frame/1d/axpyd/bli_axpyd_unb_var1.h index ec62ace17..e3914e7fa 100644 --- a/frame/1d/axpyd/bli_axpyd_unb_var1.h +++ b/frame/1d/axpyd/bli_axpyd_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/copyd/bli_copyd.c b/frame/1d/copyd/bli_copyd.c index d5a929ed4..0dd72649b 100644 --- a/frame/1d/copyd/bli_copyd.c +++ b/frame/1d/copyd/bli_copyd.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/copyd/bli_copyd.h b/frame/1d/copyd/bli_copyd.h index 62f998703..eb744a599 100644 --- a/frame/1d/copyd/bli_copyd.h +++ b/frame/1d/copyd/bli_copyd.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/copyd/bli_copyd_check.c b/frame/1d/copyd/bli_copyd_check.c index f0fd204d5..83224ba03 100644 --- a/frame/1d/copyd/bli_copyd_check.c +++ b/frame/1d/copyd/bli_copyd_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/copyd/bli_copyd_check.h b/frame/1d/copyd/bli_copyd_check.h index 97714b8bc..deea2a032 100644 --- a/frame/1d/copyd/bli_copyd_check.h +++ b/frame/1d/copyd/bli_copyd_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/copyd/bli_copyd_unb_var1.c b/frame/1d/copyd/bli_copyd_unb_var1.c index 60949c7f7..46ba90679 100644 --- a/frame/1d/copyd/bli_copyd_unb_var1.c +++ b/frame/1d/copyd/bli_copyd_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/copyd/bli_copyd_unb_var1.h b/frame/1d/copyd/bli_copyd_unb_var1.h index a7cc12721..0cd8d4d1d 100644 --- a/frame/1d/copyd/bli_copyd_unb_var1.h +++ b/frame/1d/copyd/bli_copyd_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/invertd/bli_invertd.c b/frame/1d/invertd/bli_invertd.c index aa1fad9cd..502deb93d 100644 --- a/frame/1d/invertd/bli_invertd.c +++ b/frame/1d/invertd/bli_invertd.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/invertd/bli_invertd.h b/frame/1d/invertd/bli_invertd.h index b2352592a..16e849f79 100644 --- a/frame/1d/invertd/bli_invertd.h +++ b/frame/1d/invertd/bli_invertd.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/invertd/bli_invertd_check.c b/frame/1d/invertd/bli_invertd_check.c index b05984c9b..871563244 100644 --- a/frame/1d/invertd/bli_invertd_check.c +++ b/frame/1d/invertd/bli_invertd_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/invertd/bli_invertd_check.h b/frame/1d/invertd/bli_invertd_check.h index e62ce8d7c..8b9655234 100644 --- a/frame/1d/invertd/bli_invertd_check.h +++ b/frame/1d/invertd/bli_invertd_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/invertd/bli_invertd_unb_var1.c b/frame/1d/invertd/bli_invertd_unb_var1.c index adfb25631..586114a94 100644 --- a/frame/1d/invertd/bli_invertd_unb_var1.c +++ b/frame/1d/invertd/bli_invertd_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/invertd/bli_invertd_unb_var1.h b/frame/1d/invertd/bli_invertd_unb_var1.h index 93d7130b9..600fe9ebf 100644 --- a/frame/1d/invertd/bli_invertd_unb_var1.h +++ b/frame/1d/invertd/bli_invertd_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scal2d/bli_scal2d.c b/frame/1d/scal2d/bli_scal2d.c index 4980d8445..677534f38 100644 --- a/frame/1d/scal2d/bli_scal2d.c +++ b/frame/1d/scal2d/bli_scal2d.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scal2d/bli_scal2d.h b/frame/1d/scal2d/bli_scal2d.h index 355240916..736522f0b 100644 --- a/frame/1d/scal2d/bli_scal2d.h +++ b/frame/1d/scal2d/bli_scal2d.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scal2d/bli_scal2d_check.c b/frame/1d/scal2d/bli_scal2d_check.c index 2b370e957..71145703a 100644 --- a/frame/1d/scal2d/bli_scal2d_check.c +++ b/frame/1d/scal2d/bli_scal2d_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scal2d/bli_scal2d_check.h b/frame/1d/scal2d/bli_scal2d_check.h index 446ace97e..2be380ab7 100644 --- a/frame/1d/scal2d/bli_scal2d_check.h +++ b/frame/1d/scal2d/bli_scal2d_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scal2d/bli_scal2d_unb_var1.c b/frame/1d/scal2d/bli_scal2d_unb_var1.c index dd67bbc1f..a4feebbfb 100644 --- a/frame/1d/scal2d/bli_scal2d_unb_var1.c +++ b/frame/1d/scal2d/bli_scal2d_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scal2d/bli_scal2d_unb_var1.h b/frame/1d/scal2d/bli_scal2d_unb_var1.h index f4456fb35..799e324c8 100644 --- a/frame/1d/scal2d/bli_scal2d_unb_var1.h +++ b/frame/1d/scal2d/bli_scal2d_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scald/bli_scald.c b/frame/1d/scald/bli_scald.c index 12c953967..508fce2d9 100644 --- a/frame/1d/scald/bli_scald.c +++ b/frame/1d/scald/bli_scald.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scald/bli_scald.h b/frame/1d/scald/bli_scald.h index d6426cf69..400d96f89 100644 --- a/frame/1d/scald/bli_scald.h +++ b/frame/1d/scald/bli_scald.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scald/bli_scald_check.c b/frame/1d/scald/bli_scald_check.c index 8acf52ca0..59ddc5401 100644 --- a/frame/1d/scald/bli_scald_check.c +++ b/frame/1d/scald/bli_scald_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scald/bli_scald_check.h b/frame/1d/scald/bli_scald_check.h index 9a1d31ac2..bf6e6ff92 100644 --- a/frame/1d/scald/bli_scald_check.h +++ b/frame/1d/scald/bli_scald_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scald/bli_scald_unb_var1.c b/frame/1d/scald/bli_scald_unb_var1.c index 66559b22a..bb3d0abb3 100644 --- a/frame/1d/scald/bli_scald_unb_var1.c +++ b/frame/1d/scald/bli_scald_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/scald/bli_scald_unb_var1.h b/frame/1d/scald/bli_scald_unb_var1.h index 5a1c7815b..5d6bd6362 100644 --- a/frame/1d/scald/bli_scald_unb_var1.h +++ b/frame/1d/scald/bli_scald_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/setd/bli_setd.c b/frame/1d/setd/bli_setd.c index f33861de7..9f359e325 100644 --- a/frame/1d/setd/bli_setd.c +++ b/frame/1d/setd/bli_setd.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/setd/bli_setd.h b/frame/1d/setd/bli_setd.h index 54faa4dea..87ac585a4 100644 --- a/frame/1d/setd/bli_setd.h +++ b/frame/1d/setd/bli_setd.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/setd/bli_setd_check.c b/frame/1d/setd/bli_setd_check.c index ea5a128f6..0ec44a2ca 100644 --- a/frame/1d/setd/bli_setd_check.c +++ b/frame/1d/setd/bli_setd_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/setd/bli_setd_check.h b/frame/1d/setd/bli_setd_check.h index 1cd516f64..2f8e1768b 100644 --- a/frame/1d/setd/bli_setd_check.h +++ b/frame/1d/setd/bli_setd_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/setd/bli_setd_unb_var1.c b/frame/1d/setd/bli_setd_unb_var1.c index a4512430c..13878518d 100644 --- a/frame/1d/setd/bli_setd_unb_var1.c +++ b/frame/1d/setd/bli_setd_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/setd/bli_setd_unb_var1.h b/frame/1d/setd/bli_setd_unb_var1.h index dc61e2387..f5c65ea76 100644 --- a/frame/1d/setd/bli_setd_unb_var1.h +++ b/frame/1d/setd/bli_setd_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/subd/bli_subd.c b/frame/1d/subd/bli_subd.c index 5ede9101a..8c16d6d5d 100644 --- a/frame/1d/subd/bli_subd.c +++ b/frame/1d/subd/bli_subd.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/subd/bli_subd.h b/frame/1d/subd/bli_subd.h index 4f06f0c18..97349353e 100644 --- a/frame/1d/subd/bli_subd.h +++ b/frame/1d/subd/bli_subd.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/subd/bli_subd_check.c b/frame/1d/subd/bli_subd_check.c index 57e6c73ab..04ec405dd 100644 --- a/frame/1d/subd/bli_subd_check.c +++ b/frame/1d/subd/bli_subd_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/subd/bli_subd_check.h b/frame/1d/subd/bli_subd_check.h index 6f1a15dbe..64793e005 100644 --- a/frame/1d/subd/bli_subd_check.h +++ b/frame/1d/subd/bli_subd_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/subd/bli_subd_unb_var1.c b/frame/1d/subd/bli_subd_unb_var1.c index 47bdfd2b9..56633cfca 100644 --- a/frame/1d/subd/bli_subd_unb_var1.c +++ b/frame/1d/subd/bli_subd_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1d/subd/bli_subd_unb_var1.h b/frame/1d/subd/bli_subd_unb_var1.h index 73ffb1bb1..42fc5b717 100644 --- a/frame/1d/subd/bli_subd_unb_var1.h +++ b/frame/1d/subd/bli_subd_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpy2v/bli_axpy2v.c b/frame/1f/axpy2v/bli_axpy2v.c index c0e3fddc4..cf5ab476d 100644 --- a/frame/1f/axpy2v/bli_axpy2v.c +++ b/frame/1f/axpy2v/bli_axpy2v.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpy2v/bli_axpy2v.h b/frame/1f/axpy2v/bli_axpy2v.h index 8b133da95..21de24bc3 100644 --- a/frame/1f/axpy2v/bli_axpy2v.h +++ b/frame/1f/axpy2v/bli_axpy2v.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpy2v/bli_axpy2v_check.c b/frame/1f/axpy2v/bli_axpy2v_check.c index 49c716374..7f2b2951b 100644 --- a/frame/1f/axpy2v/bli_axpy2v_check.c +++ b/frame/1f/axpy2v/bli_axpy2v_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpy2v/bli_axpy2v_check.h b/frame/1f/axpy2v/bli_axpy2v_check.h index 6b6a75b3b..ea1668ee0 100644 --- a/frame/1f/axpy2v/bli_axpy2v_check.h +++ b/frame/1f/axpy2v/bli_axpy2v_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpy2v/bli_axpy2v_kernel.c b/frame/1f/axpy2v/bli_axpy2v_kernel.c index 62920cf4f..697215a25 100644 --- a/frame/1f/axpy2v/bli_axpy2v_kernel.c +++ b/frame/1f/axpy2v/bli_axpy2v_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpy2v/bli_axpy2v_kernel.h b/frame/1f/axpy2v/bli_axpy2v_kernel.h index d642315e4..134131eda 100644 --- a/frame/1f/axpy2v/bli_axpy2v_kernel.h +++ b/frame/1f/axpy2v/bli_axpy2v_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpy2v/bli_axpy2v_ref.c b/frame/1f/axpy2v/bli_axpy2v_ref.c index 8781736dc..825d088c4 100644 --- a/frame/1f/axpy2v/bli_axpy2v_ref.c +++ b/frame/1f/axpy2v/bli_axpy2v_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpy2v/bli_axpy2v_ref.h b/frame/1f/axpy2v/bli_axpy2v_ref.h index 6d23ac0fa..e36ab2089 100644 --- a/frame/1f/axpy2v/bli_axpy2v_ref.h +++ b/frame/1f/axpy2v/bli_axpy2v_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf.c b/frame/1f/axpyf/bli_axpyf.c index f255313d9..689a7e16b 100644 --- a/frame/1f/axpyf/bli_axpyf.c +++ b/frame/1f/axpyf/bli_axpyf.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf.h b/frame/1f/axpyf/bli_axpyf.h index c24217d9a..74b2b9b90 100644 --- a/frame/1f/axpyf/bli_axpyf.h +++ b/frame/1f/axpyf/bli_axpyf.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf_check.c b/frame/1f/axpyf/bli_axpyf_check.c index 7531c8a2c..243f16bd7 100644 --- a/frame/1f/axpyf/bli_axpyf_check.c +++ b/frame/1f/axpyf/bli_axpyf_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf_check.h b/frame/1f/axpyf/bli_axpyf_check.h index aadbe3c1e..ff01ba0ff 100644 --- a/frame/1f/axpyf/bli_axpyf_check.h +++ b/frame/1f/axpyf/bli_axpyf_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf_fusefac.c b/frame/1f/axpyf/bli_axpyf_fusefac.c index a2cd4d956..e6c00bc8a 100644 --- a/frame/1f/axpyf/bli_axpyf_fusefac.c +++ b/frame/1f/axpyf/bli_axpyf_fusefac.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf_fusefac.h b/frame/1f/axpyf/bli_axpyf_fusefac.h index 756ac4e42..a1a2e9021 100644 --- a/frame/1f/axpyf/bli_axpyf_fusefac.h +++ b/frame/1f/axpyf/bli_axpyf_fusefac.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf_kernel.c b/frame/1f/axpyf/bli_axpyf_kernel.c index 577d3c8c2..8b087646f 100644 --- a/frame/1f/axpyf/bli_axpyf_kernel.c +++ b/frame/1f/axpyf/bli_axpyf_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf_kernel.h b/frame/1f/axpyf/bli_axpyf_kernel.h index b6aa90ded..2d4fe74b2 100644 --- a/frame/1f/axpyf/bli_axpyf_kernel.h +++ b/frame/1f/axpyf/bli_axpyf_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf_ref.c b/frame/1f/axpyf/bli_axpyf_ref.c index b11904420..fb0558601 100644 --- a/frame/1f/axpyf/bli_axpyf_ref.c +++ b/frame/1f/axpyf/bli_axpyf_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/axpyf/bli_axpyf_ref.h b/frame/1f/axpyf/bli_axpyf_ref.h index 00095152c..86fb32681 100644 --- a/frame/1f/axpyf/bli_axpyf_ref.h +++ b/frame/1f/axpyf/bli_axpyf_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv.c b/frame/1f/dotaxpyv/bli_dotaxpyv.c index c16919ef6..84025bee4 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv.c +++ b/frame/1f/dotaxpyv/bli_dotaxpyv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv.h b/frame/1f/dotaxpyv/bli_dotaxpyv.h index 02d1fc323..2db74025f 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv.h +++ b/frame/1f/dotaxpyv/bli_dotaxpyv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_check.c b/frame/1f/dotaxpyv/bli_dotaxpyv_check.c index 3308c6e94..30ebb0c0c 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_check.c +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_check.h b/frame/1f/dotaxpyv/bli_dotaxpyv_check.h index 5f06c049b..6388b1d40 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_check.h +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c b/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c index bc1a5754a..faafb226b 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h b/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h index 0390d7700..b5e9cc802 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_ref.c b/frame/1f/dotaxpyv/bli_dotaxpyv_ref.c index 595845a42..b45fc44cb 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_ref.c +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotaxpyv/bli_dotaxpyv_ref.h b/frame/1f/dotaxpyv/bli_dotaxpyv_ref.h index 29081c705..40d41916d 100644 --- a/frame/1f/dotaxpyv/bli_dotaxpyv_ref.h +++ b/frame/1f/dotaxpyv/bli_dotaxpyv_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf.c index 3680dc57a..7be080926 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf.h index 2001b5663..dcb19c81d 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c index 3df435449..5981ffa19 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h index f1f3dd151..fadfea2ba 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c index 9b43302da..4820cf022 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h index 4e09e31a1..8591a1b6b 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_fusefac.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c index 27c0a604d..6e4e9b0b8 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h index 111699559..9d7f0b475 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c index 440898c2b..c0b9ff878 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h index 15d61e838..21cad7147 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c index 1147574aa..449dbfb5f 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h index 387386bd1..7d89d8cea 100644 --- a/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h +++ b/frame/1f/dotxaxpyf/bli_dotxaxpyf_ref_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf.c b/frame/1f/dotxf/bli_dotxf.c index 791c90b1f..b5c1775d1 100644 --- a/frame/1f/dotxf/bli_dotxf.c +++ b/frame/1f/dotxf/bli_dotxf.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf.h b/frame/1f/dotxf/bli_dotxf.h index 54ef43f4e..0b1b57b0a 100644 --- a/frame/1f/dotxf/bli_dotxf.h +++ b/frame/1f/dotxf/bli_dotxf.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf_check.c b/frame/1f/dotxf/bli_dotxf_check.c index e9188846b..005e27140 100644 --- a/frame/1f/dotxf/bli_dotxf_check.c +++ b/frame/1f/dotxf/bli_dotxf_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf_check.h b/frame/1f/dotxf/bli_dotxf_check.h index 65296de62..785f828f2 100644 --- a/frame/1f/dotxf/bli_dotxf_check.h +++ b/frame/1f/dotxf/bli_dotxf_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf_fusefac.c b/frame/1f/dotxf/bli_dotxf_fusefac.c index 7db7a1505..89755f265 100644 --- a/frame/1f/dotxf/bli_dotxf_fusefac.c +++ b/frame/1f/dotxf/bli_dotxf_fusefac.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf_fusefac.h b/frame/1f/dotxf/bli_dotxf_fusefac.h index d09777fc1..8a2ea6dda 100644 --- a/frame/1f/dotxf/bli_dotxf_fusefac.h +++ b/frame/1f/dotxf/bli_dotxf_fusefac.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf_kernel.c b/frame/1f/dotxf/bli_dotxf_kernel.c index eba71f737..3be191305 100644 --- a/frame/1f/dotxf/bli_dotxf_kernel.c +++ b/frame/1f/dotxf/bli_dotxf_kernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf_kernel.h b/frame/1f/dotxf/bli_dotxf_kernel.h index cc0f0e95e..de672caa2 100644 --- a/frame/1f/dotxf/bli_dotxf_kernel.h +++ b/frame/1f/dotxf/bli_dotxf_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf_ref.c b/frame/1f/dotxf/bli_dotxf_ref.c index 77ba0c9f6..c57b2db14 100644 --- a/frame/1f/dotxf/bli_dotxf_ref.c +++ b/frame/1f/dotxf/bli_dotxf_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1f/dotxf/bli_dotxf_ref.h b/frame/1f/dotxf/bli_dotxf_ref.h index 5d73e7412..daad2724a 100644 --- a/frame/1f/dotxf/bli_dotxf_ref.h +++ b/frame/1f/dotxf/bli_dotxf_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/addm/bli_addm.c b/frame/1m/addm/bli_addm.c index 421fa3b74..239cc18ad 100644 --- a/frame/1m/addm/bli_addm.c +++ b/frame/1m/addm/bli_addm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/addm/bli_addm.h b/frame/1m/addm/bli_addm.h index d174f7c59..72bcaf305 100644 --- a/frame/1m/addm/bli_addm.h +++ b/frame/1m/addm/bli_addm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/addm/bli_addm_check.c b/frame/1m/addm/bli_addm_check.c index f0d638f7d..a6302f21a 100644 --- a/frame/1m/addm/bli_addm_check.c +++ b/frame/1m/addm/bli_addm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/addm/bli_addm_check.h b/frame/1m/addm/bli_addm_check.h index 0203600c0..7d5e38d08 100644 --- a/frame/1m/addm/bli_addm_check.h +++ b/frame/1m/addm/bli_addm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/addm/bli_addm_unb_var1.c b/frame/1m/addm/bli_addm_unb_var1.c index 34b5372ae..075ee108a 100644 --- a/frame/1m/addm/bli_addm_unb_var1.c +++ b/frame/1m/addm/bli_addm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/addm/bli_addm_unb_var1.h b/frame/1m/addm/bli_addm_unb_var1.h index 8de8b3a18..f0cd79599 100644 --- a/frame/1m/addm/bli_addm_unb_var1.h +++ b/frame/1m/addm/bli_addm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/axpym/bli_axpym.c b/frame/1m/axpym/bli_axpym.c index ff8ebe824..e5e1d268b 100644 --- a/frame/1m/axpym/bli_axpym.c +++ b/frame/1m/axpym/bli_axpym.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/axpym/bli_axpym.h b/frame/1m/axpym/bli_axpym.h index 9162d6af6..346fcedd6 100644 --- a/frame/1m/axpym/bli_axpym.h +++ b/frame/1m/axpym/bli_axpym.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/axpym/bli_axpym_check.c b/frame/1m/axpym/bli_axpym_check.c index b8f8bfdaa..40755cd14 100644 --- a/frame/1m/axpym/bli_axpym_check.c +++ b/frame/1m/axpym/bli_axpym_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/axpym/bli_axpym_check.h b/frame/1m/axpym/bli_axpym_check.h index 909374aad..46da2a3d2 100644 --- a/frame/1m/axpym/bli_axpym_check.h +++ b/frame/1m/axpym/bli_axpym_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/axpym/bli_axpym_unb_var1.c b/frame/1m/axpym/bli_axpym_unb_var1.c index 576d1d692..50c9b574c 100644 --- a/frame/1m/axpym/bli_axpym_unb_var1.c +++ b/frame/1m/axpym/bli_axpym_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/axpym/bli_axpym_unb_var1.h b/frame/1m/axpym/bli_axpym_unb_var1.h index 06caeb718..61393b111 100644 --- a/frame/1m/axpym/bli_axpym_unb_var1.h +++ b/frame/1m/axpym/bli_axpym_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/copym/bli_copym.c b/frame/1m/copym/bli_copym.c index 5bcdb067a..b1809bbb7 100644 --- a/frame/1m/copym/bli_copym.c +++ b/frame/1m/copym/bli_copym.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/copym/bli_copym.h b/frame/1m/copym/bli_copym.h index 23c5ac28a..949cdff09 100644 --- a/frame/1m/copym/bli_copym.h +++ b/frame/1m/copym/bli_copym.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/copym/bli_copym_check.c b/frame/1m/copym/bli_copym_check.c index 0256717eb..a5487965a 100644 --- a/frame/1m/copym/bli_copym_check.c +++ b/frame/1m/copym/bli_copym_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/copym/bli_copym_check.h b/frame/1m/copym/bli_copym_check.h index 8b1cc472d..b720bb3b8 100644 --- a/frame/1m/copym/bli_copym_check.h +++ b/frame/1m/copym/bli_copym_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/copym/bli_copym_unb_var1.c b/frame/1m/copym/bli_copym_unb_var1.c index e4ab021f0..c8ca22fc1 100644 --- a/frame/1m/copym/bli_copym_unb_var1.c +++ b/frame/1m/copym/bli_copym_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/copym/bli_copym_unb_var1.h b/frame/1m/copym/bli_copym_unb_var1.h index 9704dce9c..958b71c83 100644 --- a/frame/1m/copym/bli_copym_unb_var1.h +++ b/frame/1m/copym/bli_copym_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm.c b/frame/1m/packm/bli_packm.c index e3e02532a..3a64f1646 100644 --- a/frame/1m/packm/bli_packm.c +++ b/frame/1m/packm/bli_packm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm.h b/frame/1m/packm/bli_packm.h index 835da0deb..96542790a 100644 --- a/frame/1m/packm/bli_packm.h +++ b/frame/1m/packm/bli_packm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_blk_var1.c b/frame/1m/packm/bli_packm_blk_var1.c index 699b3d18e..af50d994f 100644 --- a/frame/1m/packm/bli_packm_blk_var1.c +++ b/frame/1m/packm/bli_packm_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_blk_var1.h b/frame/1m/packm/bli_packm_blk_var1.h index d6714530f..b366edcef 100644 --- a/frame/1m/packm/bli_packm_blk_var1.h +++ b/frame/1m/packm/bli_packm_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_blk_var3.c b/frame/1m/packm/bli_packm_blk_var3.c index 8f9f08148..f078ed1b0 100644 --- a/frame/1m/packm/bli_packm_blk_var3.c +++ b/frame/1m/packm/bli_packm_blk_var3.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_blk_var3.h b/frame/1m/packm/bli_packm_blk_var3.h index f025be409..5f3b3fde2 100644 --- a/frame/1m/packm/bli_packm_blk_var3.h +++ b/frame/1m/packm/bli_packm_blk_var3.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_blk_var4.c b/frame/1m/packm/bli_packm_blk_var4.c index 83d56f096..2aef6001b 100644 --- a/frame/1m/packm/bli_packm_blk_var4.c +++ b/frame/1m/packm/bli_packm_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_blk_var4.h b/frame/1m/packm/bli_packm_blk_var4.h index be11465cb..30722c7ae 100644 --- a/frame/1m/packm/bli_packm_blk_var4.h +++ b/frame/1m/packm/bli_packm_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_check.c b/frame/1m/packm/bli_packm_check.c index 8ff6e6f6c..77de952aa 100644 --- a/frame/1m/packm/bli_packm_check.c +++ b/frame/1m/packm/bli_packm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_check.h b/frame/1m/packm/bli_packm_check.h index 261647fbb..b3997e1b5 100644 --- a/frame/1m/packm/bli_packm_check.h +++ b/frame/1m/packm/bli_packm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_cntl.c b/frame/1m/packm/bli_packm_cntl.c index 81f8e7f9f..8bb00a859 100644 --- a/frame/1m/packm/bli_packm_cntl.c +++ b/frame/1m/packm/bli_packm_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_cntl.h b/frame/1m/packm/bli_packm_cntl.h index 29b2875ef..5201cc273 100644 --- a/frame/1m/packm/bli_packm_cntl.h +++ b/frame/1m/packm/bli_packm_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_cxk.c b/frame/1m/packm/bli_packm_cxk.c index 188343322..0d6ef9a86 100644 --- a/frame/1m/packm/bli_packm_cxk.c +++ b/frame/1m/packm/bli_packm_cxk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_cxk.h b/frame/1m/packm/bli_packm_cxk.h index 790f72bdf..ce41fa936 100644 --- a/frame/1m/packm/bli_packm_cxk.h +++ b/frame/1m/packm/bli_packm_cxk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_cxk_ri.c b/frame/1m/packm/bli_packm_cxk_ri.c index 77dde8456..4a6dc6a63 100644 --- a/frame/1m/packm/bli_packm_cxk_ri.c +++ b/frame/1m/packm/bli_packm_cxk_ri.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_cxk_ri.h b/frame/1m/packm/bli_packm_cxk_ri.h index efc1e6eee..25ace973a 100644 --- a/frame/1m/packm/bli_packm_cxk_ri.h +++ b/frame/1m/packm/bli_packm_cxk_ri.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_cxk_ri3.c b/frame/1m/packm/bli_packm_cxk_ri3.c index 09045809d..dfb6d4525 100644 --- a/frame/1m/packm/bli_packm_cxk_ri3.c +++ b/frame/1m/packm/bli_packm_cxk_ri3.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_cxk_ri3.h b/frame/1m/packm/bli_packm_cxk_ri3.h index 6dc8ae91b..73285fd09 100644 --- a/frame/1m/packm/bli_packm_cxk_ri3.h +++ b/frame/1m/packm/bli_packm_cxk_ri3.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_gen_cxk.c b/frame/1m/packm/bli_packm_gen_cxk.c index 0c42e0c50..299785792 100644 --- a/frame/1m/packm/bli_packm_gen_cxk.c +++ b/frame/1m/packm/bli_packm_gen_cxk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_gen_cxk.h b/frame/1m/packm/bli_packm_gen_cxk.h index 7fb600231..6065675d5 100644 --- a/frame/1m/packm/bli_packm_gen_cxk.h +++ b/frame/1m/packm/bli_packm_gen_cxk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_herm_cxk.c b/frame/1m/packm/bli_packm_herm_cxk.c index 7f1029118..07d06c3b1 100644 --- a/frame/1m/packm/bli_packm_herm_cxk.c +++ b/frame/1m/packm/bli_packm_herm_cxk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_herm_cxk.h b/frame/1m/packm/bli_packm_herm_cxk.h index 52043232d..e70cbabb2 100644 --- a/frame/1m/packm/bli_packm_herm_cxk.h +++ b/frame/1m/packm/bli_packm_herm_cxk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_init.c b/frame/1m/packm/bli_packm_init.c index bbbf16e95..66e383210 100644 --- a/frame/1m/packm/bli_packm_init.c +++ b/frame/1m/packm/bli_packm_init.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_init.h b/frame/1m/packm/bli_packm_init.h index 7589d4cf6..4547463af 100644 --- a/frame/1m/packm/bli_packm_init.h +++ b/frame/1m/packm/bli_packm_init.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_int.c b/frame/1m/packm/bli_packm_int.c index f240326c0..58ebd6d4b 100644 --- a/frame/1m/packm/bli_packm_int.c +++ b/frame/1m/packm/bli_packm_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_int.h b/frame/1m/packm/bli_packm_int.h index 1af860a4a..35f990620 100644 --- a/frame/1m/packm/bli_packm_int.h +++ b/frame/1m/packm/bli_packm_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_part.c b/frame/1m/packm/bli_packm_part.c index 1e59d00cf..cf1215a77 100644 --- a/frame/1m/packm/bli_packm_part.c +++ b/frame/1m/packm/bli_packm_part.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_part.h b/frame/1m/packm/bli_packm_part.h index cfdfdc3fb..277390983 100644 --- a/frame/1m/packm/bli_packm_part.h +++ b/frame/1m/packm/bli_packm_part.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_threading.c b/frame/1m/packm/bli_packm_threading.c index 8a05940e2..8fc45ef29 100644 --- a/frame/1m/packm/bli_packm_threading.c +++ b/frame/1m/packm/bli_packm_threading.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_threading.h b/frame/1m/packm/bli_packm_threading.h index 51f3df40b..de486dbfa 100644 --- a/frame/1m/packm/bli_packm_threading.h +++ b/frame/1m/packm/bli_packm_threading.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_tri_cxk.c b/frame/1m/packm/bli_packm_tri_cxk.c index 2d75c4a17..254ab5fc1 100644 --- a/frame/1m/packm/bli_packm_tri_cxk.c +++ b/frame/1m/packm/bli_packm_tri_cxk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_tri_cxk.h b/frame/1m/packm/bli_packm_tri_cxk.h index 08303759d..8db7f242b 100644 --- a/frame/1m/packm/bli_packm_tri_cxk.h +++ b/frame/1m/packm/bli_packm_tri_cxk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_unb_var1.c b/frame/1m/packm/bli_packm_unb_var1.c index 0fa5859eb..116e020c7 100644 --- a/frame/1m/packm/bli_packm_unb_var1.c +++ b/frame/1m/packm/bli_packm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/bli_packm_unb_var1.h b/frame/1m/packm/bli_packm_unb_var1.h index 01b5374db..05790e92b 100644 --- a/frame/1m/packm/bli_packm_unb_var1.h +++ b/frame/1m/packm/bli_packm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/old/bli_packm_blk_var1.c b/frame/1m/packm/old/bli_packm_blk_var1.c index 53be87cc4..a1923d606 100644 --- a/frame/1m/packm/old/bli_packm_blk_var1.c +++ b/frame/1m/packm/old/bli_packm_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/old/bli_packm_blk_var1.h b/frame/1m/packm/old/bli_packm_blk_var1.h index 9ae34eead..965616639 100644 --- a/frame/1m/packm/old/bli_packm_blk_var1.h +++ b/frame/1m/packm/old/bli_packm_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/old/bli_packm_blk_var2.c b/frame/1m/packm/old/bli_packm_blk_var2.c index 9fba00869..5a5950688 100644 --- a/frame/1m/packm/old/bli_packm_blk_var2.c +++ b/frame/1m/packm/old/bli_packm_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/old/bli_packm_blk_var2.h b/frame/1m/packm/old/bli_packm_blk_var2.h index 2f2fedcba..b228bde92 100644 --- a/frame/1m/packm/old/bli_packm_blk_var2.h +++ b/frame/1m/packm/old/bli_packm_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/old/bli_packm_densify.c b/frame/1m/packm/old/bli_packm_densify.c index 6ab2e97f1..aab91fc8e 100644 --- a/frame/1m/packm/old/bli_packm_densify.c +++ b/frame/1m/packm/old/bli_packm_densify.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/old/bli_packm_densify.h b/frame/1m/packm/old/bli_packm_densify.h index 1097bcf7e..13f140562 100644 --- a/frame/1m/packm/old/bli_packm_densify.h +++ b/frame/1m/packm/old/bli_packm_densify.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/other/bli_packm_blk_var2.c b/frame/1m/packm/other/bli_packm_blk_var2.c index 01b8a883f..5ab1e9a35 100644 --- a/frame/1m/packm/other/bli_packm_blk_var2.c +++ b/frame/1m/packm/other/bli_packm_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_10xk.c b/frame/1m/packm/ukernels/bli_packm_ref_10xk.c index 4ec82f40e..f284529e9 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_10xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_10xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_10xk.h b/frame/1m/packm/ukernels/bli_packm_ref_10xk.h index 25995a94e..bf7a6239d 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_10xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_10xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_12xk.c b/frame/1m/packm/ukernels/bli_packm_ref_12xk.c index 812e5ad2f..262beef99 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_12xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_12xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_12xk.h b/frame/1m/packm/ukernels/bli_packm_ref_12xk.h index 26d930c3b..1187d7ff5 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_12xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_12xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_14xk.c b/frame/1m/packm/ukernels/bli_packm_ref_14xk.c index 166367f51..4040f0ff6 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_14xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_14xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_14xk.h b/frame/1m/packm/ukernels/bli_packm_ref_14xk.h index 0a00a281c..36ec5d1d9 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_14xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_14xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_16xk.c b/frame/1m/packm/ukernels/bli_packm_ref_16xk.c index 386fa330f..8642a75d1 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_16xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_16xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_16xk.h b/frame/1m/packm/ukernels/bli_packm_ref_16xk.h index 2b4d2b96d..d123c1fe8 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_16xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_16xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_2xk.c b/frame/1m/packm/ukernels/bli_packm_ref_2xk.c index 1f031b7b5..7c48e302d 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_2xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_2xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_2xk.h b/frame/1m/packm/ukernels/bli_packm_ref_2xk.h index ceb3c30e5..76b41db62 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_2xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_2xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_4xk.c b/frame/1m/packm/ukernels/bli_packm_ref_4xk.c index 2023d12b2..7c37e8dfe 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_4xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_4xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_4xk.h b/frame/1m/packm/ukernels/bli_packm_ref_4xk.h index 0a0b6710f..f10297efc 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_4xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_4xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_6xk.c b/frame/1m/packm/ukernels/bli_packm_ref_6xk.c index e2b329081..ee03e5216 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_6xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_6xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_6xk.h b/frame/1m/packm/ukernels/bli_packm_ref_6xk.h index 6db4168ec..271b0509e 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_6xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_6xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_8xk.c b/frame/1m/packm/ukernels/bli_packm_ref_8xk.c index bc44e22b5..ac30c87da 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_8xk.c +++ b/frame/1m/packm/ukernels/bli_packm_ref_8xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/packm/ukernels/bli_packm_ref_8xk.h b/frame/1m/packm/ukernels/bli_packm_ref_8xk.h index d0c62176a..a2dc9ec7e 100644 --- a/frame/1m/packm/ukernels/bli_packm_ref_8xk.h +++ b/frame/1m/packm/ukernels/bli_packm_ref_8xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scal2m/bli_scal2m.c b/frame/1m/scal2m/bli_scal2m.c index 3775b3501..866799a71 100644 --- a/frame/1m/scal2m/bli_scal2m.c +++ b/frame/1m/scal2m/bli_scal2m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scal2m/bli_scal2m.h b/frame/1m/scal2m/bli_scal2m.h index 00a6aed3b..93ba75ee5 100644 --- a/frame/1m/scal2m/bli_scal2m.h +++ b/frame/1m/scal2m/bli_scal2m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scal2m/bli_scal2m_check.c b/frame/1m/scal2m/bli_scal2m_check.c index 5abb445fe..faede3e76 100644 --- a/frame/1m/scal2m/bli_scal2m_check.c +++ b/frame/1m/scal2m/bli_scal2m_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scal2m/bli_scal2m_check.h b/frame/1m/scal2m/bli_scal2m_check.h index 2e8d77e7b..e909c1cb4 100644 --- a/frame/1m/scal2m/bli_scal2m_check.h +++ b/frame/1m/scal2m/bli_scal2m_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scal2m/bli_scal2m_unb_var1.c b/frame/1m/scal2m/bli_scal2m_unb_var1.c index eb4c1720a..61eaa7826 100644 --- a/frame/1m/scal2m/bli_scal2m_unb_var1.c +++ b/frame/1m/scal2m/bli_scal2m_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scal2m/bli_scal2m_unb_var1.h b/frame/1m/scal2m/bli_scal2m_unb_var1.h index a447eb57f..dab9be8ca 100644 --- a/frame/1m/scal2m/bli_scal2m_unb_var1.h +++ b/frame/1m/scal2m/bli_scal2m_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm.c b/frame/1m/scalm/bli_scalm.c index c98db30b6..3af5e7205 100644 --- a/frame/1m/scalm/bli_scalm.c +++ b/frame/1m/scalm/bli_scalm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm.h b/frame/1m/scalm/bli_scalm.h index 5a238039a..b17678a1b 100644 --- a/frame/1m/scalm/bli_scalm.h +++ b/frame/1m/scalm/bli_scalm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm_check.c b/frame/1m/scalm/bli_scalm_check.c index 55f597a03..6fb567485 100644 --- a/frame/1m/scalm/bli_scalm_check.c +++ b/frame/1m/scalm/bli_scalm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm_check.h b/frame/1m/scalm/bli_scalm_check.h index b6cd1863f..fcabd5887 100644 --- a/frame/1m/scalm/bli_scalm_check.h +++ b/frame/1m/scalm/bli_scalm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm_cntl.c b/frame/1m/scalm/bli_scalm_cntl.c index 912edd196..5f40df27d 100644 --- a/frame/1m/scalm/bli_scalm_cntl.c +++ b/frame/1m/scalm/bli_scalm_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm_cntl.h b/frame/1m/scalm/bli_scalm_cntl.h index d7bdab4b1..1a3888f70 100644 --- a/frame/1m/scalm/bli_scalm_cntl.h +++ b/frame/1m/scalm/bli_scalm_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm_int.c b/frame/1m/scalm/bli_scalm_int.c index 7260061d6..ba8a17243 100644 --- a/frame/1m/scalm/bli_scalm_int.c +++ b/frame/1m/scalm/bli_scalm_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm_int.h b/frame/1m/scalm/bli_scalm_int.h index d1c69fd02..f6a6f8098 100644 --- a/frame/1m/scalm/bli_scalm_int.h +++ b/frame/1m/scalm/bli_scalm_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm_unb_var1.c b/frame/1m/scalm/bli_scalm_unb_var1.c index a3b67b93c..b79b66c53 100644 --- a/frame/1m/scalm/bli_scalm_unb_var1.c +++ b/frame/1m/scalm/bli_scalm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/scalm/bli_scalm_unb_var1.h b/frame/1m/scalm/bli_scalm_unb_var1.h index 00b1651d8..cf8a94dd8 100644 --- a/frame/1m/scalm/bli_scalm_unb_var1.h +++ b/frame/1m/scalm/bli_scalm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/setm/bli_setm.c b/frame/1m/setm/bli_setm.c index ed01f480e..dce8ef6ca 100644 --- a/frame/1m/setm/bli_setm.c +++ b/frame/1m/setm/bli_setm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/setm/bli_setm.h b/frame/1m/setm/bli_setm.h index bd92401ab..fe82b1d23 100644 --- a/frame/1m/setm/bli_setm.h +++ b/frame/1m/setm/bli_setm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/setm/bli_setm_check.c b/frame/1m/setm/bli_setm_check.c index 81153f858..60efff97d 100644 --- a/frame/1m/setm/bli_setm_check.c +++ b/frame/1m/setm/bli_setm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/setm/bli_setm_check.h b/frame/1m/setm/bli_setm_check.h index f6863827a..4e58df37e 100644 --- a/frame/1m/setm/bli_setm_check.h +++ b/frame/1m/setm/bli_setm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/setm/bli_setm_unb_var1.c b/frame/1m/setm/bli_setm_unb_var1.c index f063b584e..535cc3168 100644 --- a/frame/1m/setm/bli_setm_unb_var1.c +++ b/frame/1m/setm/bli_setm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/setm/bli_setm_unb_var1.h b/frame/1m/setm/bli_setm_unb_var1.h index 4db72de44..0ba6aaa14 100644 --- a/frame/1m/setm/bli_setm_unb_var1.h +++ b/frame/1m/setm/bli_setm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/subm/bli_subm.c b/frame/1m/subm/bli_subm.c index 2be7caac0..e595820aa 100644 --- a/frame/1m/subm/bli_subm.c +++ b/frame/1m/subm/bli_subm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/subm/bli_subm.h b/frame/1m/subm/bli_subm.h index da4ceb179..07b262bab 100644 --- a/frame/1m/subm/bli_subm.h +++ b/frame/1m/subm/bli_subm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/subm/bli_subm_check.c b/frame/1m/subm/bli_subm_check.c index a22e821bc..37d9d573a 100644 --- a/frame/1m/subm/bli_subm_check.c +++ b/frame/1m/subm/bli_subm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/subm/bli_subm_check.h b/frame/1m/subm/bli_subm_check.h index 0d0167774..04fb9c8ba 100644 --- a/frame/1m/subm/bli_subm_check.h +++ b/frame/1m/subm/bli_subm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/subm/bli_subm_unb_var1.c b/frame/1m/subm/bli_subm_unb_var1.c index 7f7fd363d..0d87cfe9b 100644 --- a/frame/1m/subm/bli_subm_unb_var1.c +++ b/frame/1m/subm/bli_subm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/subm/bli_subm_unb_var1.h b/frame/1m/subm/bli_subm_unb_var1.h index 9c7cad13d..41c0adf3b 100644 --- a/frame/1m/subm/bli_subm_unb_var1.h +++ b/frame/1m/subm/bli_subm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm.c b/frame/1m/unpackm/bli_unpackm.c index e3e02532a..3a64f1646 100644 --- a/frame/1m/unpackm/bli_unpackm.c +++ b/frame/1m/unpackm/bli_unpackm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm.h b/frame/1m/unpackm/bli_unpackm.h index d24cd41b4..8254f5043 100644 --- a/frame/1m/unpackm/bli_unpackm.h +++ b/frame/1m/unpackm/bli_unpackm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_blk_var2.c b/frame/1m/unpackm/bli_unpackm_blk_var2.c index cc7815c98..4bce3e93f 100644 --- a/frame/1m/unpackm/bli_unpackm_blk_var2.c +++ b/frame/1m/unpackm/bli_unpackm_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_blk_var2.h b/frame/1m/unpackm/bli_unpackm_blk_var2.h index fc930ce6b..e9af5e204 100644 --- a/frame/1m/unpackm/bli_unpackm_blk_var2.h +++ b/frame/1m/unpackm/bli_unpackm_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_check.c b/frame/1m/unpackm/bli_unpackm_check.c index 748646880..c9feec40a 100644 --- a/frame/1m/unpackm/bli_unpackm_check.c +++ b/frame/1m/unpackm/bli_unpackm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_check.h b/frame/1m/unpackm/bli_unpackm_check.h index 381d6fd33..745163368 100644 --- a/frame/1m/unpackm/bli_unpackm_check.h +++ b/frame/1m/unpackm/bli_unpackm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_cntl.c b/frame/1m/unpackm/bli_unpackm_cntl.c index e37a96d26..3f8bb3b55 100644 --- a/frame/1m/unpackm/bli_unpackm_cntl.c +++ b/frame/1m/unpackm/bli_unpackm_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_cntl.h b/frame/1m/unpackm/bli_unpackm_cntl.h index 46530f907..f2a7da0ec 100644 --- a/frame/1m/unpackm/bli_unpackm_cntl.h +++ b/frame/1m/unpackm/bli_unpackm_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_cxk.c b/frame/1m/unpackm/bli_unpackm_cxk.c index df2ace13c..18b3d9f9a 100644 --- a/frame/1m/unpackm/bli_unpackm_cxk.c +++ b/frame/1m/unpackm/bli_unpackm_cxk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_cxk.h b/frame/1m/unpackm/bli_unpackm_cxk.h index b94d95ec6..e72025b63 100644 --- a/frame/1m/unpackm/bli_unpackm_cxk.h +++ b/frame/1m/unpackm/bli_unpackm_cxk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_int.c b/frame/1m/unpackm/bli_unpackm_int.c index 8bd94a86c..893d36c41 100644 --- a/frame/1m/unpackm/bli_unpackm_int.c +++ b/frame/1m/unpackm/bli_unpackm_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_int.h b/frame/1m/unpackm/bli_unpackm_int.h index 94a7bb4e1..47d10e171 100644 --- a/frame/1m/unpackm/bli_unpackm_int.h +++ b/frame/1m/unpackm/bli_unpackm_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_unb_var1.c b/frame/1m/unpackm/bli_unpackm_unb_var1.c index 900e2d208..95a133eac 100644 --- a/frame/1m/unpackm/bli_unpackm_unb_var1.c +++ b/frame/1m/unpackm/bli_unpackm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/bli_unpackm_unb_var1.h b/frame/1m/unpackm/bli_unpackm_unb_var1.h index e49d56904..a8e58cbd8 100644 --- a/frame/1m/unpackm/bli_unpackm_unb_var1.h +++ b/frame/1m/unpackm/bli_unpackm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/old/bli_unpackm_blk_var1.c b/frame/1m/unpackm/old/bli_unpackm_blk_var1.c index c0d00b274..767d8f342 100644 --- a/frame/1m/unpackm/old/bli_unpackm_blk_var1.c +++ b/frame/1m/unpackm/old/bli_unpackm_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/old/bli_unpackm_blk_var1.h b/frame/1m/unpackm/old/bli_unpackm_blk_var1.h index f32974386..545550ff3 100644 --- a/frame/1m/unpackm/old/bli_unpackm_blk_var1.h +++ b/frame/1m/unpackm/old/bli_unpackm_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.c index 715871e59..6dcee61ee 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.h index f7834cefd..2b5f9730d 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_10xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.c index b5b858165..372e55bbc 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.h index 848e91bae..d47476908 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_12xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.c index f7d09f205..99f88b5cd 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.h index 003ef0e92..9f4a61eae 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_14xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.c index 602e75c34..930d2b9d1 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.h index e61a6d63d..fc6f8a3dd 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_16xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.c index 532a18b41..6986ac493 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.h index 6e8e5577d..bb1734716 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_2xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.c index fb50b6bde..2a5bdb7dc 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.h index f8640bbad..0e5b150b8 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_4xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.c index 2db608e3e..19af46023 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.h index 60184af07..9acfcc487 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_6xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.c b/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.c index 9d3d8c336..dadabe78d 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.c +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.h b/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.h index 678ac2d46..52ad023f7 100644 --- a/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.h +++ b/frame/1m/unpackm/ukernels/bli_unpackm_ref_8xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv.c b/frame/2/gemv/bli_gemv.c index 4faa65571..7f91b4a10 100644 --- a/frame/2/gemv/bli_gemv.c +++ b/frame/2/gemv/bli_gemv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv.h b/frame/2/gemv/bli_gemv.h index e67cb3926..e91646a62 100644 --- a/frame/2/gemv/bli_gemv.h +++ b/frame/2/gemv/bli_gemv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_blk_var1.c b/frame/2/gemv/bli_gemv_blk_var1.c index 5c7c72706..76390ed14 100644 --- a/frame/2/gemv/bli_gemv_blk_var1.c +++ b/frame/2/gemv/bli_gemv_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_blk_var1.h b/frame/2/gemv/bli_gemv_blk_var1.h index 641cd04b9..6308ea262 100644 --- a/frame/2/gemv/bli_gemv_blk_var1.h +++ b/frame/2/gemv/bli_gemv_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_blk_var2.c b/frame/2/gemv/bli_gemv_blk_var2.c index a920aaeec..74adaa1f5 100644 --- a/frame/2/gemv/bli_gemv_blk_var2.c +++ b/frame/2/gemv/bli_gemv_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_blk_var2.h b/frame/2/gemv/bli_gemv_blk_var2.h index 88bce1a57..4034c3593 100644 --- a/frame/2/gemv/bli_gemv_blk_var2.h +++ b/frame/2/gemv/bli_gemv_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_check.c b/frame/2/gemv/bli_gemv_check.c index bcbe9ea0a..d6c8852f5 100644 --- a/frame/2/gemv/bli_gemv_check.c +++ b/frame/2/gemv/bli_gemv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_check.h b/frame/2/gemv/bli_gemv_check.h index 7ccdc78a3..d256e8d9e 100644 --- a/frame/2/gemv/bli_gemv_check.h +++ b/frame/2/gemv/bli_gemv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_cntl.c b/frame/2/gemv/bli_gemv_cntl.c index 926cba1a4..7b1ad8033 100644 --- a/frame/2/gemv/bli_gemv_cntl.c +++ b/frame/2/gemv/bli_gemv_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_cntl.h b/frame/2/gemv/bli_gemv_cntl.h index 1d5faf430..1c6d09408 100644 --- a/frame/2/gemv/bli_gemv_cntl.h +++ b/frame/2/gemv/bli_gemv_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_int.c b/frame/2/gemv/bli_gemv_int.c index 335d240cc..4c7ba0e5c 100644 --- a/frame/2/gemv/bli_gemv_int.c +++ b/frame/2/gemv/bli_gemv_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_int.h b/frame/2/gemv/bli_gemv_int.h index 2570b4eb8..13d2823cd 100644 --- a/frame/2/gemv/bli_gemv_int.h +++ b/frame/2/gemv/bli_gemv_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_unb_var1.c b/frame/2/gemv/bli_gemv_unb_var1.c index 978b89b8f..c4c63a3af 100644 --- a/frame/2/gemv/bli_gemv_unb_var1.c +++ b/frame/2/gemv/bli_gemv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_unb_var1.h b/frame/2/gemv/bli_gemv_unb_var1.h index 7e5ac4a50..041fad3c4 100644 --- a/frame/2/gemv/bli_gemv_unb_var1.h +++ b/frame/2/gemv/bli_gemv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_unb_var2.c b/frame/2/gemv/bli_gemv_unb_var2.c index 30ed22caa..49620f55a 100644 --- a/frame/2/gemv/bli_gemv_unb_var2.c +++ b/frame/2/gemv/bli_gemv_unb_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_unb_var2.h b/frame/2/gemv/bli_gemv_unb_var2.h index 021ff8956..8109082bb 100644 --- a/frame/2/gemv/bli_gemv_unb_var2.h +++ b/frame/2/gemv/bli_gemv_unb_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_unf_var1.c b/frame/2/gemv/bli_gemv_unf_var1.c index 3deefba49..47affb4be 100644 --- a/frame/2/gemv/bli_gemv_unf_var1.c +++ b/frame/2/gemv/bli_gemv_unf_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_unf_var1.h b/frame/2/gemv/bli_gemv_unf_var1.h index 452facf44..08f4fa610 100644 --- a/frame/2/gemv/bli_gemv_unf_var1.h +++ b/frame/2/gemv/bli_gemv_unf_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_unf_var2.c b/frame/2/gemv/bli_gemv_unf_var2.c index f21305533..1390b6c36 100644 --- a/frame/2/gemv/bli_gemv_unf_var2.c +++ b/frame/2/gemv/bli_gemv_unf_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/gemv/bli_gemv_unf_var2.h b/frame/2/gemv/bli_gemv_unf_var2.h index ad04963c8..8731833cc 100644 --- a/frame/2/gemv/bli_gemv_unf_var2.h +++ b/frame/2/gemv/bli_gemv_unf_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger.c b/frame/2/ger/bli_ger.c index 93eca6946..7b2268563 100644 --- a/frame/2/ger/bli_ger.c +++ b/frame/2/ger/bli_ger.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger.h b/frame/2/ger/bli_ger.h index 0d48a64ce..b016e6c57 100644 --- a/frame/2/ger/bli_ger.h +++ b/frame/2/ger/bli_ger.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_blk_var1.c b/frame/2/ger/bli_ger_blk_var1.c index bef76b200..4e647c772 100644 --- a/frame/2/ger/bli_ger_blk_var1.c +++ b/frame/2/ger/bli_ger_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_blk_var1.h b/frame/2/ger/bli_ger_blk_var1.h index d9758c7f6..fb1138b77 100644 --- a/frame/2/ger/bli_ger_blk_var1.h +++ b/frame/2/ger/bli_ger_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_blk_var2.c b/frame/2/ger/bli_ger_blk_var2.c index 08fca6a63..e02b7a0e8 100644 --- a/frame/2/ger/bli_ger_blk_var2.c +++ b/frame/2/ger/bli_ger_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_blk_var2.h b/frame/2/ger/bli_ger_blk_var2.h index f0a8b73e5..37870421d 100644 --- a/frame/2/ger/bli_ger_blk_var2.h +++ b/frame/2/ger/bli_ger_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_check.c b/frame/2/ger/bli_ger_check.c index d2dc4004d..e2994f385 100644 --- a/frame/2/ger/bli_ger_check.c +++ b/frame/2/ger/bli_ger_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_check.h b/frame/2/ger/bli_ger_check.h index cbc6e0677..cdd82ae3d 100644 --- a/frame/2/ger/bli_ger_check.h +++ b/frame/2/ger/bli_ger_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_cntl.c b/frame/2/ger/bli_ger_cntl.c index 3b5cc9c55..4e0921c49 100644 --- a/frame/2/ger/bli_ger_cntl.c +++ b/frame/2/ger/bli_ger_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_cntl.h b/frame/2/ger/bli_ger_cntl.h index 99aaea74a..06879d039 100644 --- a/frame/2/ger/bli_ger_cntl.h +++ b/frame/2/ger/bli_ger_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_int.c b/frame/2/ger/bli_ger_int.c index 1c734ef16..1a9d32374 100644 --- a/frame/2/ger/bli_ger_int.c +++ b/frame/2/ger/bli_ger_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_int.h b/frame/2/ger/bli_ger_int.h index 9bd39fa94..2dae7382d 100644 --- a/frame/2/ger/bli_ger_int.h +++ b/frame/2/ger/bli_ger_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_unb_var1.c b/frame/2/ger/bli_ger_unb_var1.c index f02abe9be..ef83d60fb 100644 --- a/frame/2/ger/bli_ger_unb_var1.c +++ b/frame/2/ger/bli_ger_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_unb_var1.h b/frame/2/ger/bli_ger_unb_var1.h index f0eea8291..7436d8791 100644 --- a/frame/2/ger/bli_ger_unb_var1.h +++ b/frame/2/ger/bli_ger_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_unb_var2.c b/frame/2/ger/bli_ger_unb_var2.c index 3b5592eeb..b16c26454 100644 --- a/frame/2/ger/bli_ger_unb_var2.c +++ b/frame/2/ger/bli_ger_unb_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/ger/bli_ger_unb_var2.h b/frame/2/ger/bli_ger_unb_var2.h index 362537d45..42e5fabf2 100644 --- a/frame/2/ger/bli_ger_unb_var2.h +++ b/frame/2/ger/bli_ger_unb_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv.c b/frame/2/hemv/bli_hemv.c index d6f09f888..60dea313e 100644 --- a/frame/2/hemv/bli_hemv.c +++ b/frame/2/hemv/bli_hemv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv.h b/frame/2/hemv/bli_hemv.h index 12bb67c92..fe004b0be 100644 --- a/frame/2/hemv/bli_hemv.h +++ b/frame/2/hemv/bli_hemv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_blk_var1.c b/frame/2/hemv/bli_hemv_blk_var1.c index f9ff178db..928a7f993 100644 --- a/frame/2/hemv/bli_hemv_blk_var1.c +++ b/frame/2/hemv/bli_hemv_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_blk_var1.h b/frame/2/hemv/bli_hemv_blk_var1.h index 79276c548..fcee4fe45 100644 --- a/frame/2/hemv/bli_hemv_blk_var1.h +++ b/frame/2/hemv/bli_hemv_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_blk_var2.c b/frame/2/hemv/bli_hemv_blk_var2.c index e5b30ebb0..00afa83a0 100644 --- a/frame/2/hemv/bli_hemv_blk_var2.c +++ b/frame/2/hemv/bli_hemv_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_blk_var2.h b/frame/2/hemv/bli_hemv_blk_var2.h index 06cfb9c4e..62929b972 100644 --- a/frame/2/hemv/bli_hemv_blk_var2.h +++ b/frame/2/hemv/bli_hemv_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_blk_var3.c b/frame/2/hemv/bli_hemv_blk_var3.c index c5b334cb5..571ea9444 100644 --- a/frame/2/hemv/bli_hemv_blk_var3.c +++ b/frame/2/hemv/bli_hemv_blk_var3.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_blk_var3.h b/frame/2/hemv/bli_hemv_blk_var3.h index cc91195c8..a841f2a16 100644 --- a/frame/2/hemv/bli_hemv_blk_var3.h +++ b/frame/2/hemv/bli_hemv_blk_var3.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_blk_var4.c b/frame/2/hemv/bli_hemv_blk_var4.c index 9abd6c773..8c5c3bb78 100644 --- a/frame/2/hemv/bli_hemv_blk_var4.c +++ b/frame/2/hemv/bli_hemv_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_blk_var4.h b/frame/2/hemv/bli_hemv_blk_var4.h index 0b3870374..2836dcd5e 100644 --- a/frame/2/hemv/bli_hemv_blk_var4.h +++ b/frame/2/hemv/bli_hemv_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_check.c b/frame/2/hemv/bli_hemv_check.c index c6b898640..fb71a2aba 100644 --- a/frame/2/hemv/bli_hemv_check.c +++ b/frame/2/hemv/bli_hemv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_check.h b/frame/2/hemv/bli_hemv_check.h index 60c8b165c..de15959ae 100644 --- a/frame/2/hemv/bli_hemv_check.h +++ b/frame/2/hemv/bli_hemv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_cntl.c b/frame/2/hemv/bli_hemv_cntl.c index 5292bfae5..f49e3a856 100644 --- a/frame/2/hemv/bli_hemv_cntl.c +++ b/frame/2/hemv/bli_hemv_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_cntl.h b/frame/2/hemv/bli_hemv_cntl.h index 8930edd47..407f3e106 100644 --- a/frame/2/hemv/bli_hemv_cntl.h +++ b/frame/2/hemv/bli_hemv_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_int.c b/frame/2/hemv/bli_hemv_int.c index 85c5ce800..d128bcb4f 100644 --- a/frame/2/hemv/bli_hemv_int.c +++ b/frame/2/hemv/bli_hemv_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_int.h b/frame/2/hemv/bli_hemv_int.h index b20590926..fb52fe280 100644 --- a/frame/2/hemv/bli_hemv_int.h +++ b/frame/2/hemv/bli_hemv_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unb_var1.c b/frame/2/hemv/bli_hemv_unb_var1.c index d8fc94488..db1630590 100644 --- a/frame/2/hemv/bli_hemv_unb_var1.c +++ b/frame/2/hemv/bli_hemv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unb_var1.h b/frame/2/hemv/bli_hemv_unb_var1.h index 4113fe8a9..ffd996597 100644 --- a/frame/2/hemv/bli_hemv_unb_var1.h +++ b/frame/2/hemv/bli_hemv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unb_var2.c b/frame/2/hemv/bli_hemv_unb_var2.c index 97f077df8..baf59345b 100644 --- a/frame/2/hemv/bli_hemv_unb_var2.c +++ b/frame/2/hemv/bli_hemv_unb_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unb_var2.h b/frame/2/hemv/bli_hemv_unb_var2.h index a441d4a8c..9ac58352a 100644 --- a/frame/2/hemv/bli_hemv_unb_var2.h +++ b/frame/2/hemv/bli_hemv_unb_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unb_var3.c b/frame/2/hemv/bli_hemv_unb_var3.c index b538e9ba9..6b3ec2da8 100644 --- a/frame/2/hemv/bli_hemv_unb_var3.c +++ b/frame/2/hemv/bli_hemv_unb_var3.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unb_var3.h b/frame/2/hemv/bli_hemv_unb_var3.h index 282736204..729094f0c 100644 --- a/frame/2/hemv/bli_hemv_unb_var3.h +++ b/frame/2/hemv/bli_hemv_unb_var3.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unb_var4.c b/frame/2/hemv/bli_hemv_unb_var4.c index 55739fb63..ead2d8538 100644 --- a/frame/2/hemv/bli_hemv_unb_var4.c +++ b/frame/2/hemv/bli_hemv_unb_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unb_var4.h b/frame/2/hemv/bli_hemv_unb_var4.h index 5b31b848c..1bde74d5e 100644 --- a/frame/2/hemv/bli_hemv_unb_var4.h +++ b/frame/2/hemv/bli_hemv_unb_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unf_var1.c b/frame/2/hemv/bli_hemv_unf_var1.c index c770949a5..ad669466f 100644 --- a/frame/2/hemv/bli_hemv_unf_var1.c +++ b/frame/2/hemv/bli_hemv_unf_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unf_var1.h b/frame/2/hemv/bli_hemv_unf_var1.h index fe40a43b1..346886d5e 100644 --- a/frame/2/hemv/bli_hemv_unf_var1.h +++ b/frame/2/hemv/bli_hemv_unf_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unf_var1a.c b/frame/2/hemv/bli_hemv_unf_var1a.c index 7814546bf..35cab687d 100644 --- a/frame/2/hemv/bli_hemv_unf_var1a.c +++ b/frame/2/hemv/bli_hemv_unf_var1a.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unf_var1a.h b/frame/2/hemv/bli_hemv_unf_var1a.h index a6d0a7c93..25c64bbfb 100644 --- a/frame/2/hemv/bli_hemv_unf_var1a.h +++ b/frame/2/hemv/bli_hemv_unf_var1a.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unf_var3.c b/frame/2/hemv/bli_hemv_unf_var3.c index 7a6e9f6bf..6599f2a82 100644 --- a/frame/2/hemv/bli_hemv_unf_var3.c +++ b/frame/2/hemv/bli_hemv_unf_var3.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unf_var3.h b/frame/2/hemv/bli_hemv_unf_var3.h index b9120e00c..10031821f 100644 --- a/frame/2/hemv/bli_hemv_unf_var3.h +++ b/frame/2/hemv/bli_hemv_unf_var3.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unf_var3a.c b/frame/2/hemv/bli_hemv_unf_var3a.c index a7c71489e..c6974bb6b 100644 --- a/frame/2/hemv/bli_hemv_unf_var3a.c +++ b/frame/2/hemv/bli_hemv_unf_var3a.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/hemv/bli_hemv_unf_var3a.h b/frame/2/hemv/bli_hemv_unf_var3a.h index eabeee52d..cbacbfcd1 100644 --- a/frame/2/hemv/bli_hemv_unf_var3a.h +++ b/frame/2/hemv/bli_hemv_unf_var3a.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her.c b/frame/2/her/bli_her.c index abf7ea60e..c23b10896 100644 --- a/frame/2/her/bli_her.c +++ b/frame/2/her/bli_her.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her.h b/frame/2/her/bli_her.h index d65516f27..340578dc8 100644 --- a/frame/2/her/bli_her.h +++ b/frame/2/her/bli_her.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_blk_var1.c b/frame/2/her/bli_her_blk_var1.c index 95f7386d5..a7074948e 100644 --- a/frame/2/her/bli_her_blk_var1.c +++ b/frame/2/her/bli_her_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_blk_var1.h b/frame/2/her/bli_her_blk_var1.h index a61c1adc3..70b55a82c 100644 --- a/frame/2/her/bli_her_blk_var1.h +++ b/frame/2/her/bli_her_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_blk_var2.c b/frame/2/her/bli_her_blk_var2.c index 97ffe5db3..931e7538c 100644 --- a/frame/2/her/bli_her_blk_var2.c +++ b/frame/2/her/bli_her_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_blk_var2.h b/frame/2/her/bli_her_blk_var2.h index f91af34b6..bd86b72d9 100644 --- a/frame/2/her/bli_her_blk_var2.h +++ b/frame/2/her/bli_her_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_check.c b/frame/2/her/bli_her_check.c index 8d6f62fd7..164d885ab 100644 --- a/frame/2/her/bli_her_check.c +++ b/frame/2/her/bli_her_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_check.h b/frame/2/her/bli_her_check.h index a4f05d0de..ed9a4856a 100644 --- a/frame/2/her/bli_her_check.h +++ b/frame/2/her/bli_her_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_cntl.c b/frame/2/her/bli_her_cntl.c index 3f9c115f5..1d118659b 100644 --- a/frame/2/her/bli_her_cntl.c +++ b/frame/2/her/bli_her_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_cntl.h b/frame/2/her/bli_her_cntl.h index 3fb52bc61..c9dd06d53 100644 --- a/frame/2/her/bli_her_cntl.h +++ b/frame/2/her/bli_her_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_int.c b/frame/2/her/bli_her_int.c index e37f81f84..c96fab1f1 100644 --- a/frame/2/her/bli_her_int.c +++ b/frame/2/her/bli_her_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_int.h b/frame/2/her/bli_her_int.h index b4e5ea62e..5fec45109 100644 --- a/frame/2/her/bli_her_int.h +++ b/frame/2/her/bli_her_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_unb_var1.c b/frame/2/her/bli_her_unb_var1.c index c6eefe163..741c3d1dc 100644 --- a/frame/2/her/bli_her_unb_var1.c +++ b/frame/2/her/bli_her_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_unb_var1.h b/frame/2/her/bli_her_unb_var1.h index f80a48044..358c51041 100644 --- a/frame/2/her/bli_her_unb_var1.h +++ b/frame/2/her/bli_her_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_unb_var2.c b/frame/2/her/bli_her_unb_var2.c index 97e6e3a25..ea2475200 100644 --- a/frame/2/her/bli_her_unb_var2.c +++ b/frame/2/her/bli_her_unb_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her/bli_her_unb_var2.h b/frame/2/her/bli_her_unb_var2.h index ac4b8a206..328ddf25f 100644 --- a/frame/2/her/bli_her_unb_var2.h +++ b/frame/2/her/bli_her_unb_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2.c b/frame/2/her2/bli_her2.c index 594f1f869..15703aaeb 100644 --- a/frame/2/her2/bli_her2.c +++ b/frame/2/her2/bli_her2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2.h b/frame/2/her2/bli_her2.h index 1e41122f7..a9dc2637d 100644 --- a/frame/2/her2/bli_her2.h +++ b/frame/2/her2/bli_her2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_blk_var1.c b/frame/2/her2/bli_her2_blk_var1.c index fd05b1569..a26ef2013 100644 --- a/frame/2/her2/bli_her2_blk_var1.c +++ b/frame/2/her2/bli_her2_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_blk_var1.h b/frame/2/her2/bli_her2_blk_var1.h index 3e31eb90e..338fa6bf0 100644 --- a/frame/2/her2/bli_her2_blk_var1.h +++ b/frame/2/her2/bli_her2_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_blk_var2.c b/frame/2/her2/bli_her2_blk_var2.c index 25a3aa6f6..ffa94b121 100644 --- a/frame/2/her2/bli_her2_blk_var2.c +++ b/frame/2/her2/bli_her2_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_blk_var2.h b/frame/2/her2/bli_her2_blk_var2.h index 21446d4a9..6769bf54f 100644 --- a/frame/2/her2/bli_her2_blk_var2.h +++ b/frame/2/her2/bli_her2_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_blk_var3.c b/frame/2/her2/bli_her2_blk_var3.c index 21463759a..2cf789302 100644 --- a/frame/2/her2/bli_her2_blk_var3.c +++ b/frame/2/her2/bli_her2_blk_var3.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_blk_var3.h b/frame/2/her2/bli_her2_blk_var3.h index 75e951524..b8c1227e1 100644 --- a/frame/2/her2/bli_her2_blk_var3.h +++ b/frame/2/her2/bli_her2_blk_var3.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_blk_var4.c b/frame/2/her2/bli_her2_blk_var4.c index cd9d1bcf3..57d2fc71b 100644 --- a/frame/2/her2/bli_her2_blk_var4.c +++ b/frame/2/her2/bli_her2_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_blk_var4.h b/frame/2/her2/bli_her2_blk_var4.h index c3693b352..f75659830 100644 --- a/frame/2/her2/bli_her2_blk_var4.h +++ b/frame/2/her2/bli_her2_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_check.c b/frame/2/her2/bli_her2_check.c index d4df1b27f..ac29fae55 100644 --- a/frame/2/her2/bli_her2_check.c +++ b/frame/2/her2/bli_her2_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_check.h b/frame/2/her2/bli_her2_check.h index 05697bfb0..973351f1d 100644 --- a/frame/2/her2/bli_her2_check.h +++ b/frame/2/her2/bli_her2_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_cntl.c b/frame/2/her2/bli_her2_cntl.c index cf964a663..3797c6223 100644 --- a/frame/2/her2/bli_her2_cntl.c +++ b/frame/2/her2/bli_her2_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_cntl.h b/frame/2/her2/bli_her2_cntl.h index 70e605397..fcd6f6289 100644 --- a/frame/2/her2/bli_her2_cntl.h +++ b/frame/2/her2/bli_her2_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_int.c b/frame/2/her2/bli_her2_int.c index 70e7c6f2d..16e4df8de 100644 --- a/frame/2/her2/bli_her2_int.c +++ b/frame/2/her2/bli_her2_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_int.h b/frame/2/her2/bli_her2_int.h index 107a2d61e..c03e9b918 100644 --- a/frame/2/her2/bli_her2_int.h +++ b/frame/2/her2/bli_her2_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unb_var1.c b/frame/2/her2/bli_her2_unb_var1.c index 510e671b4..8ed71dd38 100644 --- a/frame/2/her2/bli_her2_unb_var1.c +++ b/frame/2/her2/bli_her2_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unb_var1.h b/frame/2/her2/bli_her2_unb_var1.h index a731cc576..835bc66df 100644 --- a/frame/2/her2/bli_her2_unb_var1.h +++ b/frame/2/her2/bli_her2_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unb_var2.c b/frame/2/her2/bli_her2_unb_var2.c index 3d1b3432b..6c6f2d7a5 100644 --- a/frame/2/her2/bli_her2_unb_var2.c +++ b/frame/2/her2/bli_her2_unb_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unb_var2.h b/frame/2/her2/bli_her2_unb_var2.h index 1c4352f32..268362048 100644 --- a/frame/2/her2/bli_her2_unb_var2.h +++ b/frame/2/her2/bli_her2_unb_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unb_var3.c b/frame/2/her2/bli_her2_unb_var3.c index df831178b..11bf71c06 100644 --- a/frame/2/her2/bli_her2_unb_var3.c +++ b/frame/2/her2/bli_her2_unb_var3.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unb_var3.h b/frame/2/her2/bli_her2_unb_var3.h index 7dcf2fa36..60dc00d20 100644 --- a/frame/2/her2/bli_her2_unb_var3.h +++ b/frame/2/her2/bli_her2_unb_var3.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unb_var4.c b/frame/2/her2/bli_her2_unb_var4.c index 6393ac7a2..b08ba5800 100644 --- a/frame/2/her2/bli_her2_unb_var4.c +++ b/frame/2/her2/bli_her2_unb_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unb_var4.h b/frame/2/her2/bli_her2_unb_var4.h index 3c3c9c330..16dcb7c2e 100644 --- a/frame/2/her2/bli_her2_unb_var4.h +++ b/frame/2/her2/bli_her2_unb_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unf_var1.c b/frame/2/her2/bli_her2_unf_var1.c index 883bb4964..5e668503f 100644 --- a/frame/2/her2/bli_her2_unf_var1.c +++ b/frame/2/her2/bli_her2_unf_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unf_var1.h b/frame/2/her2/bli_her2_unf_var1.h index cb27a53d7..dedac9c78 100644 --- a/frame/2/her2/bli_her2_unf_var1.h +++ b/frame/2/her2/bli_her2_unf_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unf_var4.c b/frame/2/her2/bli_her2_unf_var4.c index 50580793e..2f0a2c43a 100644 --- a/frame/2/her2/bli_her2_unf_var4.c +++ b/frame/2/her2/bli_her2_unf_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/her2/bli_her2_unf_var4.h b/frame/2/her2/bli_her2_unf_var4.h index 7ed3307b1..3da89d62c 100644 --- a/frame/2/her2/bli_her2_unf_var4.h +++ b/frame/2/her2/bli_her2_unf_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/symv/bli_symv.c b/frame/2/symv/bli_symv.c index 13a461d44..c78838215 100644 --- a/frame/2/symv/bli_symv.c +++ b/frame/2/symv/bli_symv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/symv/bli_symv.h b/frame/2/symv/bli_symv.h index 4313a625b..2600c5929 100644 --- a/frame/2/symv/bli_symv.h +++ b/frame/2/symv/bli_symv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/symv/bli_symv_check.c b/frame/2/symv/bli_symv_check.c index c4f948b28..520feb3be 100644 --- a/frame/2/symv/bli_symv_check.c +++ b/frame/2/symv/bli_symv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/symv/bli_symv_check.h b/frame/2/symv/bli_symv_check.h index 0915e73e9..c49e15db5 100644 --- a/frame/2/symv/bli_symv_check.h +++ b/frame/2/symv/bli_symv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/syr/bli_syr.c b/frame/2/syr/bli_syr.c index d575e282f..667715a59 100644 --- a/frame/2/syr/bli_syr.c +++ b/frame/2/syr/bli_syr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/syr/bli_syr.h b/frame/2/syr/bli_syr.h index 1373a1fb6..be2d386d8 100644 --- a/frame/2/syr/bli_syr.h +++ b/frame/2/syr/bli_syr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/syr/bli_syr_check.c b/frame/2/syr/bli_syr_check.c index 197d4c9b6..8b32de4a5 100644 --- a/frame/2/syr/bli_syr_check.c +++ b/frame/2/syr/bli_syr_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/syr/bli_syr_check.h b/frame/2/syr/bli_syr_check.h index f8704780c..0e80daacf 100644 --- a/frame/2/syr/bli_syr_check.h +++ b/frame/2/syr/bli_syr_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/syr2/bli_syr2.c b/frame/2/syr2/bli_syr2.c index 07c71be8e..a23162fb5 100644 --- a/frame/2/syr2/bli_syr2.c +++ b/frame/2/syr2/bli_syr2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/syr2/bli_syr2.h b/frame/2/syr2/bli_syr2.h index 50185fbc0..9115af8fb 100644 --- a/frame/2/syr2/bli_syr2.h +++ b/frame/2/syr2/bli_syr2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/syr2/bli_syr2_check.c b/frame/2/syr2/bli_syr2_check.c index a49ffbe17..754f6b965 100644 --- a/frame/2/syr2/bli_syr2_check.c +++ b/frame/2/syr2/bli_syr2_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/syr2/bli_syr2_check.h b/frame/2/syr2/bli_syr2_check.h index f04d19af3..5690326ba 100644 --- a/frame/2/syr2/bli_syr2_check.h +++ b/frame/2/syr2/bli_syr2_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv.c b/frame/2/trmv/bli_trmv.c index e851d06bc..e47f4c061 100644 --- a/frame/2/trmv/bli_trmv.c +++ b/frame/2/trmv/bli_trmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv.h b/frame/2/trmv/bli_trmv.h index c6d96fb92..205b457e1 100644 --- a/frame/2/trmv/bli_trmv.h +++ b/frame/2/trmv/bli_trmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_check.c b/frame/2/trmv/bli_trmv_check.c index acd9a218d..7e3700345 100644 --- a/frame/2/trmv/bli_trmv_check.c +++ b/frame/2/trmv/bli_trmv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_check.h b/frame/2/trmv/bli_trmv_check.h index ba733f32f..1cd040b71 100644 --- a/frame/2/trmv/bli_trmv_check.h +++ b/frame/2/trmv/bli_trmv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_cntl.c b/frame/2/trmv/bli_trmv_cntl.c index 4cbf76eb9..c1876cb43 100644 --- a/frame/2/trmv/bli_trmv_cntl.c +++ b/frame/2/trmv/bli_trmv_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_cntl.h b/frame/2/trmv/bli_trmv_cntl.h index aa7c56fa2..d69907cc5 100644 --- a/frame/2/trmv/bli_trmv_cntl.h +++ b/frame/2/trmv/bli_trmv_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_int.c b/frame/2/trmv/bli_trmv_int.c index 00729c096..510ef7785 100644 --- a/frame/2/trmv/bli_trmv_int.c +++ b/frame/2/trmv/bli_trmv_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_int.h b/frame/2/trmv/bli_trmv_int.h index 6cd5394b3..43efc2b6e 100644 --- a/frame/2/trmv/bli_trmv_int.h +++ b/frame/2/trmv/bli_trmv_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_l_blk_var1.c b/frame/2/trmv/bli_trmv_l_blk_var1.c index 5a5982ca7..17d6347e8 100644 --- a/frame/2/trmv/bli_trmv_l_blk_var1.c +++ b/frame/2/trmv/bli_trmv_l_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_l_blk_var1.h b/frame/2/trmv/bli_trmv_l_blk_var1.h index c62032d75..cb076d39a 100644 --- a/frame/2/trmv/bli_trmv_l_blk_var1.h +++ b/frame/2/trmv/bli_trmv_l_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_l_blk_var2.c b/frame/2/trmv/bli_trmv_l_blk_var2.c index b83f2f98a..67ae1eac6 100644 --- a/frame/2/trmv/bli_trmv_l_blk_var2.c +++ b/frame/2/trmv/bli_trmv_l_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_l_blk_var2.h b/frame/2/trmv/bli_trmv_l_blk_var2.h index cb8b7d4f7..6dd9a4727 100644 --- a/frame/2/trmv/bli_trmv_l_blk_var2.h +++ b/frame/2/trmv/bli_trmv_l_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_u_blk_var1.c b/frame/2/trmv/bli_trmv_u_blk_var1.c index 079230376..531f5e082 100644 --- a/frame/2/trmv/bli_trmv_u_blk_var1.c +++ b/frame/2/trmv/bli_trmv_u_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_u_blk_var1.h b/frame/2/trmv/bli_trmv_u_blk_var1.h index 5929663e9..dff3bd1a6 100644 --- a/frame/2/trmv/bli_trmv_u_blk_var1.h +++ b/frame/2/trmv/bli_trmv_u_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_u_blk_var2.c b/frame/2/trmv/bli_trmv_u_blk_var2.c index fb50e833f..80f7dbc7b 100644 --- a/frame/2/trmv/bli_trmv_u_blk_var2.c +++ b/frame/2/trmv/bli_trmv_u_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_u_blk_var2.h b/frame/2/trmv/bli_trmv_u_blk_var2.h index 5864d74fc..d1b7e6f6a 100644 --- a/frame/2/trmv/bli_trmv_u_blk_var2.h +++ b/frame/2/trmv/bli_trmv_u_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_unb_var1.c b/frame/2/trmv/bli_trmv_unb_var1.c index 1035527cf..11d3ca757 100644 --- a/frame/2/trmv/bli_trmv_unb_var1.c +++ b/frame/2/trmv/bli_trmv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_unb_var1.h b/frame/2/trmv/bli_trmv_unb_var1.h index c112c9f9f..21e0a925f 100644 --- a/frame/2/trmv/bli_trmv_unb_var1.h +++ b/frame/2/trmv/bli_trmv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_unb_var2.c b/frame/2/trmv/bli_trmv_unb_var2.c index 80418307f..23e625142 100644 --- a/frame/2/trmv/bli_trmv_unb_var2.c +++ b/frame/2/trmv/bli_trmv_unb_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_unb_var2.h b/frame/2/trmv/bli_trmv_unb_var2.h index 41f16d4c7..905a6c4ea 100644 --- a/frame/2/trmv/bli_trmv_unb_var2.h +++ b/frame/2/trmv/bli_trmv_unb_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_unf_var1.c b/frame/2/trmv/bli_trmv_unf_var1.c index 9e53f256c..f6f74eb5c 100644 --- a/frame/2/trmv/bli_trmv_unf_var1.c +++ b/frame/2/trmv/bli_trmv_unf_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_unf_var1.h b/frame/2/trmv/bli_trmv_unf_var1.h index 122bbb5ad..c7187d3b8 100644 --- a/frame/2/trmv/bli_trmv_unf_var1.h +++ b/frame/2/trmv/bli_trmv_unf_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_unf_var2.c b/frame/2/trmv/bli_trmv_unf_var2.c index 2d164df7f..39bd0c4de 100644 --- a/frame/2/trmv/bli_trmv_unf_var2.c +++ b/frame/2/trmv/bli_trmv_unf_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trmv/bli_trmv_unf_var2.h b/frame/2/trmv/bli_trmv_unf_var2.h index f0ddd32d5..1c5c45951 100644 --- a/frame/2/trmv/bli_trmv_unf_var2.h +++ b/frame/2/trmv/bli_trmv_unf_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv.c b/frame/2/trsv/bli_trsv.c index 04b03687e..f86f7a57b 100644 --- a/frame/2/trsv/bli_trsv.c +++ b/frame/2/trsv/bli_trsv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv.h b/frame/2/trsv/bli_trsv.h index 6c1bbc650..1ad21ec63 100644 --- a/frame/2/trsv/bli_trsv.h +++ b/frame/2/trsv/bli_trsv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_check.c b/frame/2/trsv/bli_trsv_check.c index b821a8917..9f8c1e360 100644 --- a/frame/2/trsv/bli_trsv_check.c +++ b/frame/2/trsv/bli_trsv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_check.h b/frame/2/trsv/bli_trsv_check.h index b943533a6..5be364ddf 100644 --- a/frame/2/trsv/bli_trsv_check.h +++ b/frame/2/trsv/bli_trsv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_cntl.c b/frame/2/trsv/bli_trsv_cntl.c index 0c5eec394..72da76243 100644 --- a/frame/2/trsv/bli_trsv_cntl.c +++ b/frame/2/trsv/bli_trsv_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_cntl.h b/frame/2/trsv/bli_trsv_cntl.h index a7b73bad2..45e305376 100644 --- a/frame/2/trsv/bli_trsv_cntl.h +++ b/frame/2/trsv/bli_trsv_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_int.c b/frame/2/trsv/bli_trsv_int.c index d029be792..0f1454fc8 100644 --- a/frame/2/trsv/bli_trsv_int.c +++ b/frame/2/trsv/bli_trsv_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_int.h b/frame/2/trsv/bli_trsv_int.h index b442c47b8..267fddce2 100644 --- a/frame/2/trsv/bli_trsv_int.h +++ b/frame/2/trsv/bli_trsv_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_l_blk_var1.c b/frame/2/trsv/bli_trsv_l_blk_var1.c index 0a33b977e..bbb1d0b55 100644 --- a/frame/2/trsv/bli_trsv_l_blk_var1.c +++ b/frame/2/trsv/bli_trsv_l_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_l_blk_var1.h b/frame/2/trsv/bli_trsv_l_blk_var1.h index 59781f09e..906ceb8ad 100644 --- a/frame/2/trsv/bli_trsv_l_blk_var1.h +++ b/frame/2/trsv/bli_trsv_l_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_l_blk_var2.c b/frame/2/trsv/bli_trsv_l_blk_var2.c index 560020e86..de9116bd3 100644 --- a/frame/2/trsv/bli_trsv_l_blk_var2.c +++ b/frame/2/trsv/bli_trsv_l_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_l_blk_var2.h b/frame/2/trsv/bli_trsv_l_blk_var2.h index 2691e459b..f994d05c9 100644 --- a/frame/2/trsv/bli_trsv_l_blk_var2.h +++ b/frame/2/trsv/bli_trsv_l_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_u_blk_var1.c b/frame/2/trsv/bli_trsv_u_blk_var1.c index dfdc70bf8..c9f2d8810 100644 --- a/frame/2/trsv/bli_trsv_u_blk_var1.c +++ b/frame/2/trsv/bli_trsv_u_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_u_blk_var1.h b/frame/2/trsv/bli_trsv_u_blk_var1.h index 6d2ff3011..69b8de7bf 100644 --- a/frame/2/trsv/bli_trsv_u_blk_var1.h +++ b/frame/2/trsv/bli_trsv_u_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_u_blk_var2.c b/frame/2/trsv/bli_trsv_u_blk_var2.c index 710f1017c..0a650861f 100644 --- a/frame/2/trsv/bli_trsv_u_blk_var2.c +++ b/frame/2/trsv/bli_trsv_u_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_u_blk_var2.h b/frame/2/trsv/bli_trsv_u_blk_var2.h index af350d6ed..2f02db5a6 100644 --- a/frame/2/trsv/bli_trsv_u_blk_var2.h +++ b/frame/2/trsv/bli_trsv_u_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_unb_var1.c b/frame/2/trsv/bli_trsv_unb_var1.c index 2cbba6b37..67fbce519 100644 --- a/frame/2/trsv/bli_trsv_unb_var1.c +++ b/frame/2/trsv/bli_trsv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_unb_var1.h b/frame/2/trsv/bli_trsv_unb_var1.h index 47149d25c..ba939c2c0 100644 --- a/frame/2/trsv/bli_trsv_unb_var1.h +++ b/frame/2/trsv/bli_trsv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_unb_var2.c b/frame/2/trsv/bli_trsv_unb_var2.c index 291f9b815..1e3558eec 100644 --- a/frame/2/trsv/bli_trsv_unb_var2.c +++ b/frame/2/trsv/bli_trsv_unb_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_unb_var2.h b/frame/2/trsv/bli_trsv_unb_var2.h index b886516d2..e9054bc92 100644 --- a/frame/2/trsv/bli_trsv_unb_var2.h +++ b/frame/2/trsv/bli_trsv_unb_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_unf_var1.c b/frame/2/trsv/bli_trsv_unf_var1.c index f7989ae0a..a9560b2af 100644 --- a/frame/2/trsv/bli_trsv_unf_var1.c +++ b/frame/2/trsv/bli_trsv_unf_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_unf_var1.h b/frame/2/trsv/bli_trsv_unf_var1.h index 85893c169..f9d9db6e9 100644 --- a/frame/2/trsv/bli_trsv_unf_var1.h +++ b/frame/2/trsv/bli_trsv_unf_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_unf_var2.c b/frame/2/trsv/bli_trsv_unf_var2.c index 160bfc555..b2eb07745 100644 --- a/frame/2/trsv/bli_trsv_unf_var2.c +++ b/frame/2/trsv/bli_trsv_unf_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/2/trsv/bli_trsv_unf_var2.h b/frame/2/trsv/bli_trsv_unf_var2.h index a3d5fe3d5..8abde247f 100644 --- a/frame/2/trsv/bli_trsv_unf_var2.h +++ b/frame/2/trsv/bli_trsv_unf_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/3m/bli_gemm3m.c b/frame/3/gemm/3m/bli_gemm3m.c index c7ea33ae2..0f4aa9823 100644 --- a/frame/3/gemm/3m/bli_gemm3m.c +++ b/frame/3/gemm/3m/bli_gemm3m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/3m/bli_gemm3m.h b/frame/3/gemm/3m/bli_gemm3m.h index 98a5d8b44..1149e6c89 100644 --- a/frame/3/gemm/3m/bli_gemm3m.h +++ b/frame/3/gemm/3m/bli_gemm3m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/3m/bli_gemm3m_cntl.c b/frame/3/gemm/3m/bli_gemm3m_cntl.c index b2cd23791..0d9e5f63b 100644 --- a/frame/3/gemm/3m/bli_gemm3m_cntl.c +++ b/frame/3/gemm/3m/bli_gemm3m_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/3m/bli_gemm3m_cntl.h b/frame/3/gemm/3m/bli_gemm3m_cntl.h index 326be9a75..eb21d6e67 100644 --- a/frame/3/gemm/3m/bli_gemm3m_cntl.h +++ b/frame/3/gemm/3m/bli_gemm3m_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c b/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c index 5d4ed3532..14e3d8c5e 100644 --- a/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c +++ b/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h b/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h index e6c740dfe..2beaab14d 100644 --- a/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h +++ b/frame/3/gemm/3m/ukernels/bli_gemm3m_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/4m/bli_gemm4m.c b/frame/3/gemm/4m/bli_gemm4m.c index 00cbc762c..73826ee84 100644 --- a/frame/3/gemm/4m/bli_gemm4m.c +++ b/frame/3/gemm/4m/bli_gemm4m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/4m/bli_gemm4m.h b/frame/3/gemm/4m/bli_gemm4m.h index 4246e02d4..704646882 100644 --- a/frame/3/gemm/4m/bli_gemm4m.h +++ b/frame/3/gemm/4m/bli_gemm4m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/4m/bli_gemm4m_cntl.c b/frame/3/gemm/4m/bli_gemm4m_cntl.c index 3d395c64f..297aa8ea9 100644 --- a/frame/3/gemm/4m/bli_gemm4m_cntl.c +++ b/frame/3/gemm/4m/bli_gemm4m_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/4m/bli_gemm4m_cntl.h b/frame/3/gemm/4m/bli_gemm4m_cntl.h index 00ece73e5..2740bb80a 100644 --- a/frame/3/gemm/4m/bli_gemm4m_cntl.h +++ b/frame/3/gemm/4m/bli_gemm4m_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c b/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c index 4114235bd..f9f8b1477 100644 --- a/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c +++ b/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h b/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h index 306980800..cabc89736 100644 --- a/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h +++ b/frame/3/gemm/4m/ukernels/bli_gemm4m_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm.c b/frame/3/gemm/bli_gemm.c index 2012e6cbc..98c135eee 100644 --- a/frame/3/gemm/bli_gemm.c +++ b/frame/3/gemm/bli_gemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm.h b/frame/3/gemm/bli_gemm.h index 6896fc2b7..8ec618c7a 100644 --- a/frame/3/gemm/bli_gemm.h +++ b/frame/3/gemm/bli_gemm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_blk_var1f.c b/frame/3/gemm/bli_gemm_blk_var1f.c index 865387c5a..ad67dca7a 100644 --- a/frame/3/gemm/bli_gemm_blk_var1f.c +++ b/frame/3/gemm/bli_gemm_blk_var1f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_blk_var1f.h b/frame/3/gemm/bli_gemm_blk_var1f.h index 15ef41647..efdaa5df5 100644 --- a/frame/3/gemm/bli_gemm_blk_var1f.h +++ b/frame/3/gemm/bli_gemm_blk_var1f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_blk_var2f.c b/frame/3/gemm/bli_gemm_blk_var2f.c index 456226aa4..d6e5b3ec5 100644 --- a/frame/3/gemm/bli_gemm_blk_var2f.c +++ b/frame/3/gemm/bli_gemm_blk_var2f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_blk_var2f.h b/frame/3/gemm/bli_gemm_blk_var2f.h index c1d168048..3718d8623 100644 --- a/frame/3/gemm/bli_gemm_blk_var2f.h +++ b/frame/3/gemm/bli_gemm_blk_var2f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_blk_var3f.c b/frame/3/gemm/bli_gemm_blk_var3f.c index f87fd6899..63aef7302 100644 --- a/frame/3/gemm/bli_gemm_blk_var3f.c +++ b/frame/3/gemm/bli_gemm_blk_var3f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_blk_var3f.h b/frame/3/gemm/bli_gemm_blk_var3f.h index 0c3ef20d6..0eb2c9fba 100644 --- a/frame/3/gemm/bli_gemm_blk_var3f.h +++ b/frame/3/gemm/bli_gemm_blk_var3f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_check.c b/frame/3/gemm/bli_gemm_check.c index 33be7e7e1..558b3fee7 100644 --- a/frame/3/gemm/bli_gemm_check.c +++ b/frame/3/gemm/bli_gemm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_check.h b/frame/3/gemm/bli_gemm_check.h index d7466b3ab..7d38288d7 100644 --- a/frame/3/gemm/bli_gemm_check.h +++ b/frame/3/gemm/bli_gemm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_cntl.c b/frame/3/gemm/bli_gemm_cntl.c index 321d4a39e..2e3c6324a 100644 --- a/frame/3/gemm/bli_gemm_cntl.c +++ b/frame/3/gemm/bli_gemm_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_cntl.h b/frame/3/gemm/bli_gemm_cntl.h index 46f1f2d9c..6bd8ce13f 100644 --- a/frame/3/gemm/bli_gemm_cntl.h +++ b/frame/3/gemm/bli_gemm_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_cntl_exp.c b/frame/3/gemm/bli_gemm_cntl_exp.c index d1321977b..369ef6b17 100644 --- a/frame/3/gemm/bli_gemm_cntl_exp.c +++ b/frame/3/gemm/bli_gemm_cntl_exp.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_cntl_exp.h b/frame/3/gemm/bli_gemm_cntl_exp.h index 88677f9e5..eaab8b8ba 100644 --- a/frame/3/gemm/bli_gemm_cntl_exp.h +++ b/frame/3/gemm/bli_gemm_cntl_exp.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_front.c b/frame/3/gemm/bli_gemm_front.c index a24e6c0c8..090a87972 100644 --- a/frame/3/gemm/bli_gemm_front.c +++ b/frame/3/gemm/bli_gemm_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_front.h b/frame/3/gemm/bli_gemm_front.h index b8aa97e22..9801ec3d8 100644 --- a/frame/3/gemm/bli_gemm_front.h +++ b/frame/3/gemm/bli_gemm_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_int.c b/frame/3/gemm/bli_gemm_int.c index b2fa9bd6f..85a0f3c03 100644 --- a/frame/3/gemm/bli_gemm_int.c +++ b/frame/3/gemm/bli_gemm_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_int.h b/frame/3/gemm/bli_gemm_int.h index 6652a948b..ab071ac27 100644 --- a/frame/3/gemm/bli_gemm_int.h +++ b/frame/3/gemm/bli_gemm_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_ker_var2.c b/frame/3/gemm/bli_gemm_ker_var2.c index 4131bb8b9..f15a84836 100644 --- a/frame/3/gemm/bli_gemm_ker_var2.c +++ b/frame/3/gemm/bli_gemm_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_ker_var2.h b/frame/3/gemm/bli_gemm_ker_var2.h index a403b0332..88350143f 100644 --- a/frame/3/gemm/bli_gemm_ker_var2.h +++ b/frame/3/gemm/bli_gemm_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_ker_var5.c b/frame/3/gemm/bli_gemm_ker_var5.c index 60a906d6e..df853041d 100644 --- a/frame/3/gemm/bli_gemm_ker_var5.c +++ b/frame/3/gemm/bli_gemm_ker_var5.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_ker_var5.h b/frame/3/gemm/bli_gemm_ker_var5.h index 4c16ff755..7ccbbb499 100644 --- a/frame/3/gemm/bli_gemm_ker_var5.h +++ b/frame/3/gemm/bli_gemm_ker_var5.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_target.c b/frame/3/gemm/bli_gemm_target.c index 72cebbf40..2038d7bb6 100644 --- a/frame/3/gemm/bli_gemm_target.c +++ b/frame/3/gemm/bli_gemm_target.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_target.h b/frame/3/gemm/bli_gemm_target.h index 03d502cd3..6748615ee 100644 --- a/frame/3/gemm/bli_gemm_target.h +++ b/frame/3/gemm/bli_gemm_target.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_threading.c b/frame/3/gemm/bli_gemm_threading.c index 511f4fe30..65b7f14db 100644 --- a/frame/3/gemm/bli_gemm_threading.c +++ b/frame/3/gemm/bli_gemm_threading.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_threading.h b/frame/3/gemm/bli_gemm_threading.h index 3e313fb00..0fc98819f 100644 --- a/frame/3/gemm/bli_gemm_threading.h +++ b/frame/3/gemm/bli_gemm_threading.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_ukernel.c b/frame/3/gemm/bli_gemm_ukernel.c index 788302b3f..3361bc844 100644 --- a/frame/3/gemm/bli_gemm_ukernel.c +++ b/frame/3/gemm/bli_gemm_ukernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/bli_gemm_ukernel.h b/frame/3/gemm/bli_gemm_ukernel.h index 627222530..618e8846b 100644 --- a/frame/3/gemm/bli_gemm_ukernel.h +++ b/frame/3/gemm/bli_gemm_ukernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/other/bli_gemm_blk_var4.c b/frame/3/gemm/other/bli_gemm_blk_var4.c index 05dae95b2..d8aee80ef 100644 --- a/frame/3/gemm/other/bli_gemm_blk_var4.c +++ b/frame/3/gemm/other/bli_gemm_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/other/bli_gemm_blk_var4.h b/frame/3/gemm/other/bli_gemm_blk_var4.h index f9c46121a..2f6f6ec24 100644 --- a/frame/3/gemm/other/bli_gemm_blk_var4.h +++ b/frame/3/gemm/other/bli_gemm_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/other/bli_gemm_ker_var2.c b/frame/3/gemm/other/bli_gemm_ker_var2.c index c8be88da3..f9c1fe2ab 100644 --- a/frame/3/gemm/other/bli_gemm_ker_var2.c +++ b/frame/3/gemm/other/bli_gemm_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/ukernels/bli_gemm_ukr_ref.c b/frame/3/gemm/ukernels/bli_gemm_ukr_ref.c index c4a482916..7e6806fe0 100644 --- a/frame/3/gemm/ukernels/bli_gemm_ukr_ref.c +++ b/frame/3/gemm/ukernels/bli_gemm_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/gemm/ukernels/bli_gemm_ukr_ref.h b/frame/3/gemm/ukernels/bli_gemm_ukr_ref.h index f494b7b33..b1f936191 100644 --- a/frame/3/gemm/ukernels/bli_gemm_ukr_ref.h +++ b/frame/3/gemm/ukernels/bli_gemm_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/3m/bli_hemm3m.c b/frame/3/hemm/3m/bli_hemm3m.c index 4ab526cbe..75476dd17 100644 --- a/frame/3/hemm/3m/bli_hemm3m.c +++ b/frame/3/hemm/3m/bli_hemm3m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/3m/bli_hemm3m.h b/frame/3/hemm/3m/bli_hemm3m.h index 174fc5fdd..cb0fab85c 100644 --- a/frame/3/hemm/3m/bli_hemm3m.h +++ b/frame/3/hemm/3m/bli_hemm3m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/4m/bli_hemm4m.c b/frame/3/hemm/4m/bli_hemm4m.c index b16367d02..7472ce429 100644 --- a/frame/3/hemm/4m/bli_hemm4m.c +++ b/frame/3/hemm/4m/bli_hemm4m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/4m/bli_hemm4m.h b/frame/3/hemm/4m/bli_hemm4m.h index ee6fea482..db5adaf87 100644 --- a/frame/3/hemm/4m/bli_hemm4m.h +++ b/frame/3/hemm/4m/bli_hemm4m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/bli_hemm.c b/frame/3/hemm/bli_hemm.c index b18995dd4..15cc90018 100644 --- a/frame/3/hemm/bli_hemm.c +++ b/frame/3/hemm/bli_hemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/bli_hemm.h b/frame/3/hemm/bli_hemm.h index f92ba689f..16e2a84c2 100644 --- a/frame/3/hemm/bli_hemm.h +++ b/frame/3/hemm/bli_hemm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/bli_hemm_check.c b/frame/3/hemm/bli_hemm_check.c index ccc6d7059..044ca359e 100644 --- a/frame/3/hemm/bli_hemm_check.c +++ b/frame/3/hemm/bli_hemm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/bli_hemm_check.h b/frame/3/hemm/bli_hemm_check.h index 7d1d224d6..94798bb7f 100644 --- a/frame/3/hemm/bli_hemm_check.h +++ b/frame/3/hemm/bli_hemm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/bli_hemm_front.c b/frame/3/hemm/bli_hemm_front.c index 044030855..d7379a2f4 100644 --- a/frame/3/hemm/bli_hemm_front.c +++ b/frame/3/hemm/bli_hemm_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/hemm/bli_hemm_front.h b/frame/3/hemm/bli_hemm_front.h index b4304acde..ec7afad2d 100644 --- a/frame/3/hemm/bli_hemm_front.h +++ b/frame/3/hemm/bli_hemm_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/3m/bli_her2k3m.c b/frame/3/her2k/3m/bli_her2k3m.c index 0b6ed4c47..9a5558130 100644 --- a/frame/3/her2k/3m/bli_her2k3m.c +++ b/frame/3/her2k/3m/bli_her2k3m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/3m/bli_her2k3m.h b/frame/3/her2k/3m/bli_her2k3m.h index a6791b88f..b83703567 100644 --- a/frame/3/her2k/3m/bli_her2k3m.h +++ b/frame/3/her2k/3m/bli_her2k3m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/4m/bli_her2k4m.c b/frame/3/her2k/4m/bli_her2k4m.c index 4d6bd400d..8f93abbc5 100644 --- a/frame/3/her2k/4m/bli_her2k4m.c +++ b/frame/3/her2k/4m/bli_her2k4m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/4m/bli_her2k4m.h b/frame/3/her2k/4m/bli_her2k4m.h index 469419699..c562bfc39 100644 --- a/frame/3/her2k/4m/bli_her2k4m.h +++ b/frame/3/her2k/4m/bli_her2k4m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_blk_var1f.c b/frame/3/her2k/attic/bli_her2k_blk_var1f.c index b3ed3e084..4c7d1ff6d 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var1f.c +++ b/frame/3/her2k/attic/bli_her2k_blk_var1f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_blk_var1f.h b/frame/3/her2k/attic/bli_her2k_blk_var1f.h index 32df70fc4..39a98c12e 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var1f.h +++ b/frame/3/her2k/attic/bli_her2k_blk_var1f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_blk_var2f.c b/frame/3/her2k/attic/bli_her2k_blk_var2f.c index d95f44c1d..8809642a3 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var2f.c +++ b/frame/3/her2k/attic/bli_her2k_blk_var2f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_blk_var2f.h b/frame/3/her2k/attic/bli_her2k_blk_var2f.h index 036255380..9cf42cb63 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var2f.h +++ b/frame/3/her2k/attic/bli_her2k_blk_var2f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_blk_var3f.c b/frame/3/her2k/attic/bli_her2k_blk_var3f.c index 4fa784c6e..d504ffcf8 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var3f.c +++ b/frame/3/her2k/attic/bli_her2k_blk_var3f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_blk_var3f.h b/frame/3/her2k/attic/bli_her2k_blk_var3f.h index c5523b9e5..9b4c3eee7 100644 --- a/frame/3/her2k/attic/bli_her2k_blk_var3f.h +++ b/frame/3/her2k/attic/bli_her2k_blk_var3f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_cntl.c b/frame/3/her2k/attic/bli_her2k_cntl.c index 8296cd7c1..beb1fd26f 100644 --- a/frame/3/her2k/attic/bli_her2k_cntl.c +++ b/frame/3/her2k/attic/bli_her2k_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_cntl.h b/frame/3/her2k/attic/bli_her2k_cntl.h index bb1e8b227..7eb03f75d 100644 --- a/frame/3/her2k/attic/bli_her2k_cntl.h +++ b/frame/3/her2k/attic/bli_her2k_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_int.c b/frame/3/her2k/attic/bli_her2k_int.c index bced66035..714c229de 100644 --- a/frame/3/her2k/attic/bli_her2k_int.c +++ b/frame/3/her2k/attic/bli_her2k_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_int.h b/frame/3/her2k/attic/bli_her2k_int.h index 4a41d8222..801dbc969 100644 --- a/frame/3/her2k/attic/bli_her2k_int.h +++ b/frame/3/her2k/attic/bli_her2k_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_l_ker_var2.c b/frame/3/her2k/attic/bli_her2k_l_ker_var2.c index c6a4c3e9d..6e79690ab 100644 --- a/frame/3/her2k/attic/bli_her2k_l_ker_var2.c +++ b/frame/3/her2k/attic/bli_her2k_l_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_l_ker_var2.h b/frame/3/her2k/attic/bli_her2k_l_ker_var2.h index 02601e508..4d73182ea 100644 --- a/frame/3/her2k/attic/bli_her2k_l_ker_var2.h +++ b/frame/3/her2k/attic/bli_her2k_l_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_target.c b/frame/3/her2k/attic/bli_her2k_target.c index 0c4f0a423..45d6c13c2 100644 --- a/frame/3/her2k/attic/bli_her2k_target.c +++ b/frame/3/her2k/attic/bli_her2k_target.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_target.h b/frame/3/her2k/attic/bli_her2k_target.h index 6eb98d533..734a09a69 100644 --- a/frame/3/her2k/attic/bli_her2k_target.h +++ b/frame/3/her2k/attic/bli_her2k_target.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_u_ker_var2.c b/frame/3/her2k/attic/bli_her2k_u_ker_var2.c index 4f5e1dd62..4bf4f977c 100644 --- a/frame/3/her2k/attic/bli_her2k_u_ker_var2.c +++ b/frame/3/her2k/attic/bli_her2k_u_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/attic/bli_her2k_u_ker_var2.h b/frame/3/her2k/attic/bli_her2k_u_ker_var2.h index eb776ea75..a72bd90eb 100644 --- a/frame/3/her2k/attic/bli_her2k_u_ker_var2.h +++ b/frame/3/her2k/attic/bli_her2k_u_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/bli_her2k.c b/frame/3/her2k/bli_her2k.c index 1bf00487d..d1368accb 100644 --- a/frame/3/her2k/bli_her2k.c +++ b/frame/3/her2k/bli_her2k.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/bli_her2k.h b/frame/3/her2k/bli_her2k.h index aea56b9a5..821c1866b 100644 --- a/frame/3/her2k/bli_her2k.h +++ b/frame/3/her2k/bli_her2k.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/bli_her2k_check.c b/frame/3/her2k/bli_her2k_check.c index c61869dc5..51dae2964 100644 --- a/frame/3/her2k/bli_her2k_check.c +++ b/frame/3/her2k/bli_her2k_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/bli_her2k_check.h b/frame/3/her2k/bli_her2k_check.h index 6b72a897b..66047f8b9 100644 --- a/frame/3/her2k/bli_her2k_check.h +++ b/frame/3/her2k/bli_her2k_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/bli_her2k_front.c b/frame/3/her2k/bli_her2k_front.c index 89fb8085c..c159d7bf1 100644 --- a/frame/3/her2k/bli_her2k_front.c +++ b/frame/3/her2k/bli_her2k_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/her2k/bli_her2k_front.h b/frame/3/her2k/bli_her2k_front.h index e05a3ea35..146e59320 100644 --- a/frame/3/her2k/bli_her2k_front.h +++ b/frame/3/her2k/bli_her2k_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/3m/bli_herk3m.c b/frame/3/herk/3m/bli_herk3m.c index f366bd181..9f2bb2242 100644 --- a/frame/3/herk/3m/bli_herk3m.c +++ b/frame/3/herk/3m/bli_herk3m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/3m/bli_herk3m.h b/frame/3/herk/3m/bli_herk3m.h index 113e1ef16..e1d3ee812 100644 --- a/frame/3/herk/3m/bli_herk3m.h +++ b/frame/3/herk/3m/bli_herk3m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/3m/bli_herk3m_cntl.c b/frame/3/herk/3m/bli_herk3m_cntl.c index 700770633..565357c71 100644 --- a/frame/3/herk/3m/bli_herk3m_cntl.c +++ b/frame/3/herk/3m/bli_herk3m_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/3m/bli_herk3m_cntl.h b/frame/3/herk/3m/bli_herk3m_cntl.h index 0133c02bb..62bd7ad31 100644 --- a/frame/3/herk/3m/bli_herk3m_cntl.h +++ b/frame/3/herk/3m/bli_herk3m_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/4m/bli_herk4m.c b/frame/3/herk/4m/bli_herk4m.c index 092eaeae9..53cffbaec 100644 --- a/frame/3/herk/4m/bli_herk4m.c +++ b/frame/3/herk/4m/bli_herk4m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/4m/bli_herk4m.h b/frame/3/herk/4m/bli_herk4m.h index c149c2c03..eddc9e78a 100644 --- a/frame/3/herk/4m/bli_herk4m.h +++ b/frame/3/herk/4m/bli_herk4m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/4m/bli_herk4m_cntl.c b/frame/3/herk/4m/bli_herk4m_cntl.c index 7cacd3d55..0674a6f54 100644 --- a/frame/3/herk/4m/bli_herk4m_cntl.c +++ b/frame/3/herk/4m/bli_herk4m_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/4m/bli_herk4m_cntl.h b/frame/3/herk/4m/bli_herk4m_cntl.h index 3d4c6b480..988c2b3bc 100644 --- a/frame/3/herk/4m/bli_herk4m_cntl.h +++ b/frame/3/herk/4m/bli_herk4m_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk.c b/frame/3/herk/bli_herk.c index 6512eef54..e32de09e0 100644 --- a/frame/3/herk/bli_herk.c +++ b/frame/3/herk/bli_herk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk.h b/frame/3/herk/bli_herk.h index d4e0c2a24..9c70b4dde 100644 --- a/frame/3/herk/bli_herk.h +++ b/frame/3/herk/bli_herk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_blk_var1f.c b/frame/3/herk/bli_herk_blk_var1f.c index 24df2bdbf..bb68bd43d 100644 --- a/frame/3/herk/bli_herk_blk_var1f.c +++ b/frame/3/herk/bli_herk_blk_var1f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_blk_var1f.h b/frame/3/herk/bli_herk_blk_var1f.h index 7f063a217..4b1b7405c 100644 --- a/frame/3/herk/bli_herk_blk_var1f.h +++ b/frame/3/herk/bli_herk_blk_var1f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_blk_var2f.c b/frame/3/herk/bli_herk_blk_var2f.c index 8947066dc..e36350e4d 100644 --- a/frame/3/herk/bli_herk_blk_var2f.c +++ b/frame/3/herk/bli_herk_blk_var2f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_blk_var2f.h b/frame/3/herk/bli_herk_blk_var2f.h index 3fa573f81..01aaed7c2 100644 --- a/frame/3/herk/bli_herk_blk_var2f.h +++ b/frame/3/herk/bli_herk_blk_var2f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_blk_var3f.c b/frame/3/herk/bli_herk_blk_var3f.c index 50dbaaba7..a88b24049 100644 --- a/frame/3/herk/bli_herk_blk_var3f.c +++ b/frame/3/herk/bli_herk_blk_var3f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_blk_var3f.h b/frame/3/herk/bli_herk_blk_var3f.h index 6cb1ef315..691161f38 100644 --- a/frame/3/herk/bli_herk_blk_var3f.h +++ b/frame/3/herk/bli_herk_blk_var3f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_check.c b/frame/3/herk/bli_herk_check.c index dc6d2e42d..5998fd4cf 100644 --- a/frame/3/herk/bli_herk_check.c +++ b/frame/3/herk/bli_herk_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_check.h b/frame/3/herk/bli_herk_check.h index 3eacdbd9d..d41880fb2 100644 --- a/frame/3/herk/bli_herk_check.h +++ b/frame/3/herk/bli_herk_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_cntl.c b/frame/3/herk/bli_herk_cntl.c index 2fde037d7..12a27013e 100644 --- a/frame/3/herk/bli_herk_cntl.c +++ b/frame/3/herk/bli_herk_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_cntl.h b/frame/3/herk/bli_herk_cntl.h index a5024b528..18ac2129e 100644 --- a/frame/3/herk/bli_herk_cntl.h +++ b/frame/3/herk/bli_herk_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_front.c b/frame/3/herk/bli_herk_front.c index 6c1981db2..d98b945d2 100644 --- a/frame/3/herk/bli_herk_front.c +++ b/frame/3/herk/bli_herk_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_front.h b/frame/3/herk/bli_herk_front.h index 6813869f6..64ce2688d 100644 --- a/frame/3/herk/bli_herk_front.h +++ b/frame/3/herk/bli_herk_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_int.c b/frame/3/herk/bli_herk_int.c index 42a3717b4..36a45adde 100644 --- a/frame/3/herk/bli_herk_int.c +++ b/frame/3/herk/bli_herk_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_int.h b/frame/3/herk/bli_herk_int.h index 654db0bdb..d9ff74b69 100644 --- a/frame/3/herk/bli_herk_int.h +++ b/frame/3/herk/bli_herk_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_l_ker_var2.c b/frame/3/herk/bli_herk_l_ker_var2.c index 10f650b38..7ba674255 100644 --- a/frame/3/herk/bli_herk_l_ker_var2.c +++ b/frame/3/herk/bli_herk_l_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_l_ker_var2.h b/frame/3/herk/bli_herk_l_ker_var2.h index 0276c050c..f85c0d708 100644 --- a/frame/3/herk/bli_herk_l_ker_var2.h +++ b/frame/3/herk/bli_herk_l_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_target.c b/frame/3/herk/bli_herk_target.c index 0af709d61..d98093090 100644 --- a/frame/3/herk/bli_herk_target.c +++ b/frame/3/herk/bli_herk_target.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_target.h b/frame/3/herk/bli_herk_target.h index ef715e91e..866347fdd 100644 --- a/frame/3/herk/bli_herk_target.h +++ b/frame/3/herk/bli_herk_target.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_threading.c b/frame/3/herk/bli_herk_threading.c index 7fa43f08d..261d20a45 100644 --- a/frame/3/herk/bli_herk_threading.c +++ b/frame/3/herk/bli_herk_threading.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_threading.h b/frame/3/herk/bli_herk_threading.h index 6885a66db..67538f9f0 100644 --- a/frame/3/herk/bli_herk_threading.h +++ b/frame/3/herk/bli_herk_threading.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_u_ker_var2.c b/frame/3/herk/bli_herk_u_ker_var2.c index 7e30d4550..b1608b5b4 100644 --- a/frame/3/herk/bli_herk_u_ker_var2.c +++ b/frame/3/herk/bli_herk_u_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/bli_herk_u_ker_var2.h b/frame/3/herk/bli_herk_u_ker_var2.h index 038d3954c..0aa3d9d07 100644 --- a/frame/3/herk/bli_herk_u_ker_var2.h +++ b/frame/3/herk/bli_herk_u_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/other/bli_herk_l_blk_var4.c b/frame/3/herk/other/bli_herk_l_blk_var4.c index 813964eeb..80d5ca0a9 100644 --- a/frame/3/herk/other/bli_herk_l_blk_var4.c +++ b/frame/3/herk/other/bli_herk_l_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/other/bli_herk_l_blk_var4.h b/frame/3/herk/other/bli_herk_l_blk_var4.h index f91bc5d25..a656b5f65 100644 --- a/frame/3/herk/other/bli_herk_l_blk_var4.h +++ b/frame/3/herk/other/bli_herk_l_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/other/bli_herk_u_blk_var1.c b/frame/3/herk/other/bli_herk_u_blk_var1.c index f7d221935..4e9353bd9 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var1.c +++ b/frame/3/herk/other/bli_herk_u_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/other/bli_herk_u_blk_var1.h b/frame/3/herk/other/bli_herk_u_blk_var1.h index d8d2b48d7..c21beaac7 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var1.h +++ b/frame/3/herk/other/bli_herk_u_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/other/bli_herk_u_blk_var2.c b/frame/3/herk/other/bli_herk_u_blk_var2.c index 41000e04a..891234f53 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var2.c +++ b/frame/3/herk/other/bli_herk_u_blk_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/other/bli_herk_u_blk_var2.h b/frame/3/herk/other/bli_herk_u_blk_var2.h index 478efc594..8f23b8565 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var2.h +++ b/frame/3/herk/other/bli_herk_u_blk_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/other/bli_herk_u_blk_var4.c b/frame/3/herk/other/bli_herk_u_blk_var4.c index 31fc83d1b..99a1a74c0 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var4.c +++ b/frame/3/herk/other/bli_herk_u_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/herk/other/bli_herk_u_blk_var4.h b/frame/3/herk/other/bli_herk_u_blk_var4.h index 4851a962f..1bbd7e448 100644 --- a/frame/3/herk/other/bli_herk_u_blk_var4.h +++ b/frame/3/herk/other/bli_herk_u_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/3m/bli_symm3m.c b/frame/3/symm/3m/bli_symm3m.c index 1a433c41b..09699d212 100644 --- a/frame/3/symm/3m/bli_symm3m.c +++ b/frame/3/symm/3m/bli_symm3m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/3m/bli_symm3m.h b/frame/3/symm/3m/bli_symm3m.h index 15b846675..4576d200b 100644 --- a/frame/3/symm/3m/bli_symm3m.h +++ b/frame/3/symm/3m/bli_symm3m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/4m/bli_symm4m.c b/frame/3/symm/4m/bli_symm4m.c index cb2ff5bdf..8c997efd0 100644 --- a/frame/3/symm/4m/bli_symm4m.c +++ b/frame/3/symm/4m/bli_symm4m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/4m/bli_symm4m.h b/frame/3/symm/4m/bli_symm4m.h index f1548c7d4..875581ecb 100644 --- a/frame/3/symm/4m/bli_symm4m.h +++ b/frame/3/symm/4m/bli_symm4m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/bli_symm.c b/frame/3/symm/bli_symm.c index 85ed02371..19c8fa609 100644 --- a/frame/3/symm/bli_symm.c +++ b/frame/3/symm/bli_symm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/bli_symm.h b/frame/3/symm/bli_symm.h index c1f040a2f..a920d372e 100644 --- a/frame/3/symm/bli_symm.h +++ b/frame/3/symm/bli_symm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/bli_symm_check.c b/frame/3/symm/bli_symm_check.c index fef47329c..9783924c7 100644 --- a/frame/3/symm/bli_symm_check.c +++ b/frame/3/symm/bli_symm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/bli_symm_check.h b/frame/3/symm/bli_symm_check.h index edb300017..4c3abb9f7 100644 --- a/frame/3/symm/bli_symm_check.h +++ b/frame/3/symm/bli_symm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/bli_symm_front.c b/frame/3/symm/bli_symm_front.c index 0a57c39d3..7ad10b1b5 100644 --- a/frame/3/symm/bli_symm_front.c +++ b/frame/3/symm/bli_symm_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/symm/bli_symm_front.h b/frame/3/symm/bli_symm_front.h index 7345a886f..f05edea45 100644 --- a/frame/3/symm/bli_symm_front.h +++ b/frame/3/symm/bli_symm_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/3m/bli_syr2k3m.c b/frame/3/syr2k/3m/bli_syr2k3m.c index 5d0471a8a..161239374 100644 --- a/frame/3/syr2k/3m/bli_syr2k3m.c +++ b/frame/3/syr2k/3m/bli_syr2k3m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/3m/bli_syr2k3m.h b/frame/3/syr2k/3m/bli_syr2k3m.h index 8a8983e9d..b1334d553 100644 --- a/frame/3/syr2k/3m/bli_syr2k3m.h +++ b/frame/3/syr2k/3m/bli_syr2k3m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/4m/bli_syr2k4m.c b/frame/3/syr2k/4m/bli_syr2k4m.c index 9b661d74b..557cb79a5 100644 --- a/frame/3/syr2k/4m/bli_syr2k4m.c +++ b/frame/3/syr2k/4m/bli_syr2k4m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/4m/bli_syr2k4m.h b/frame/3/syr2k/4m/bli_syr2k4m.h index e6f95ad47..31d92457f 100644 --- a/frame/3/syr2k/4m/bli_syr2k4m.h +++ b/frame/3/syr2k/4m/bli_syr2k4m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/bli_syr2k.c b/frame/3/syr2k/bli_syr2k.c index 611418ebf..da99e1f56 100644 --- a/frame/3/syr2k/bli_syr2k.c +++ b/frame/3/syr2k/bli_syr2k.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/bli_syr2k.h b/frame/3/syr2k/bli_syr2k.h index ba08fd996..272bb2cfd 100644 --- a/frame/3/syr2k/bli_syr2k.h +++ b/frame/3/syr2k/bli_syr2k.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/bli_syr2k_check.c b/frame/3/syr2k/bli_syr2k_check.c index 6f92ee2c0..499844c23 100644 --- a/frame/3/syr2k/bli_syr2k_check.c +++ b/frame/3/syr2k/bli_syr2k_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/bli_syr2k_check.h b/frame/3/syr2k/bli_syr2k_check.h index cdf162cd1..e3bf98127 100644 --- a/frame/3/syr2k/bli_syr2k_check.h +++ b/frame/3/syr2k/bli_syr2k_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/bli_syr2k_front.c b/frame/3/syr2k/bli_syr2k_front.c index 5a21e6320..588eac655 100644 --- a/frame/3/syr2k/bli_syr2k_front.c +++ b/frame/3/syr2k/bli_syr2k_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syr2k/bli_syr2k_front.h b/frame/3/syr2k/bli_syr2k_front.h index 9e01c6af6..c6cfcad8e 100644 --- a/frame/3/syr2k/bli_syr2k_front.h +++ b/frame/3/syr2k/bli_syr2k_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/3m/bli_syrk3m.c b/frame/3/syrk/3m/bli_syrk3m.c index 82501ca44..05d776864 100644 --- a/frame/3/syrk/3m/bli_syrk3m.c +++ b/frame/3/syrk/3m/bli_syrk3m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/3m/bli_syrk3m.h b/frame/3/syrk/3m/bli_syrk3m.h index 4a75a3b83..094b7802f 100644 --- a/frame/3/syrk/3m/bli_syrk3m.h +++ b/frame/3/syrk/3m/bli_syrk3m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/4m/bli_syrk4m.c b/frame/3/syrk/4m/bli_syrk4m.c index 8b5f45745..ea747f82b 100644 --- a/frame/3/syrk/4m/bli_syrk4m.c +++ b/frame/3/syrk/4m/bli_syrk4m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/4m/bli_syrk4m.h b/frame/3/syrk/4m/bli_syrk4m.h index 3cc87c14c..62e168a1e 100644 --- a/frame/3/syrk/4m/bli_syrk4m.h +++ b/frame/3/syrk/4m/bli_syrk4m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/bli_syrk.c b/frame/3/syrk/bli_syrk.c index b62303299..9c7a00787 100644 --- a/frame/3/syrk/bli_syrk.c +++ b/frame/3/syrk/bli_syrk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/bli_syrk.h b/frame/3/syrk/bli_syrk.h index 6e99b20a9..fbdf2d50a 100644 --- a/frame/3/syrk/bli_syrk.h +++ b/frame/3/syrk/bli_syrk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/bli_syrk_check.c b/frame/3/syrk/bli_syrk_check.c index 29a3d317f..909dba50b 100644 --- a/frame/3/syrk/bli_syrk_check.c +++ b/frame/3/syrk/bli_syrk_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/bli_syrk_check.h b/frame/3/syrk/bli_syrk_check.h index c6543ecff..3995f5199 100644 --- a/frame/3/syrk/bli_syrk_check.h +++ b/frame/3/syrk/bli_syrk_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/bli_syrk_front.c b/frame/3/syrk/bli_syrk_front.c index e8b459523..7c5d6f526 100644 --- a/frame/3/syrk/bli_syrk_front.c +++ b/frame/3/syrk/bli_syrk_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/syrk/bli_syrk_front.h b/frame/3/syrk/bli_syrk_front.h index 18bbb3de0..29b023c9a 100644 --- a/frame/3/syrk/bli_syrk_front.h +++ b/frame/3/syrk/bli_syrk_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/3m/bli_trmm3m.c b/frame/3/trmm/3m/bli_trmm3m.c index 17a059058..c5de7f1b7 100644 --- a/frame/3/trmm/3m/bli_trmm3m.c +++ b/frame/3/trmm/3m/bli_trmm3m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/3m/bli_trmm3m.h b/frame/3/trmm/3m/bli_trmm3m.h index e57eda1da..48f892ede 100644 --- a/frame/3/trmm/3m/bli_trmm3m.h +++ b/frame/3/trmm/3m/bli_trmm3m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/3m/bli_trmm3m_cntl.c b/frame/3/trmm/3m/bli_trmm3m_cntl.c index 851406891..91d7d5c4d 100644 --- a/frame/3/trmm/3m/bli_trmm3m_cntl.c +++ b/frame/3/trmm/3m/bli_trmm3m_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/3m/bli_trmm3m_cntl.h b/frame/3/trmm/3m/bli_trmm3m_cntl.h index 912e60cd0..091a0635e 100644 --- a/frame/3/trmm/3m/bli_trmm3m_cntl.h +++ b/frame/3/trmm/3m/bli_trmm3m_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/4m/bli_trmm4m.c b/frame/3/trmm/4m/bli_trmm4m.c index c8660780f..30a966179 100644 --- a/frame/3/trmm/4m/bli_trmm4m.c +++ b/frame/3/trmm/4m/bli_trmm4m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/4m/bli_trmm4m.h b/frame/3/trmm/4m/bli_trmm4m.h index bc883e97a..c37825224 100644 --- a/frame/3/trmm/4m/bli_trmm4m.h +++ b/frame/3/trmm/4m/bli_trmm4m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/4m/bli_trmm4m_cntl.c b/frame/3/trmm/4m/bli_trmm4m_cntl.c index bae4e05d5..6e08956b8 100644 --- a/frame/3/trmm/4m/bli_trmm4m_cntl.c +++ b/frame/3/trmm/4m/bli_trmm4m_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/4m/bli_trmm4m_cntl.h b/frame/3/trmm/4m/bli_trmm4m_cntl.h index 919c6439a..b4152f471 100644 --- a/frame/3/trmm/4m/bli_trmm4m_cntl.h +++ b/frame/3/trmm/4m/bli_trmm4m_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm.c b/frame/3/trmm/bli_trmm.c index 3cfc068fc..a1546cb70 100644 --- a/frame/3/trmm/bli_trmm.c +++ b/frame/3/trmm/bli_trmm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm.h b/frame/3/trmm/bli_trmm.h index 20b741a19..9c06d805f 100644 --- a/frame/3/trmm/bli_trmm.h +++ b/frame/3/trmm/bli_trmm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var1f.c b/frame/3/trmm/bli_trmm_blk_var1f.c index 4cd42d0c7..e9bf126dd 100644 --- a/frame/3/trmm/bli_trmm_blk_var1f.c +++ b/frame/3/trmm/bli_trmm_blk_var1f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var1f.h b/frame/3/trmm/bli_trmm_blk_var1f.h index fab16b5fe..82a924d1b 100644 --- a/frame/3/trmm/bli_trmm_blk_var1f.h +++ b/frame/3/trmm/bli_trmm_blk_var1f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var2b.c b/frame/3/trmm/bli_trmm_blk_var2b.c index b354f79b3..eb305fad5 100644 --- a/frame/3/trmm/bli_trmm_blk_var2b.c +++ b/frame/3/trmm/bli_trmm_blk_var2b.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var2b.h b/frame/3/trmm/bli_trmm_blk_var2b.h index dcee405c8..5c8f41ca5 100644 --- a/frame/3/trmm/bli_trmm_blk_var2b.h +++ b/frame/3/trmm/bli_trmm_blk_var2b.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var2f.c b/frame/3/trmm/bli_trmm_blk_var2f.c index 480433462..aa9aa1bea 100644 --- a/frame/3/trmm/bli_trmm_blk_var2f.c +++ b/frame/3/trmm/bli_trmm_blk_var2f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var2f.h b/frame/3/trmm/bli_trmm_blk_var2f.h index c167a9baa..75b764e17 100644 --- a/frame/3/trmm/bli_trmm_blk_var2f.h +++ b/frame/3/trmm/bli_trmm_blk_var2f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var3b.c b/frame/3/trmm/bli_trmm_blk_var3b.c index 9baf9474d..a25356d6b 100644 --- a/frame/3/trmm/bli_trmm_blk_var3b.c +++ b/frame/3/trmm/bli_trmm_blk_var3b.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var3b.h b/frame/3/trmm/bli_trmm_blk_var3b.h index a8e376f6e..a88c89b93 100644 --- a/frame/3/trmm/bli_trmm_blk_var3b.h +++ b/frame/3/trmm/bli_trmm_blk_var3b.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var3f.c b/frame/3/trmm/bli_trmm_blk_var3f.c index 8ceda15ab..4b43b6cd9 100644 --- a/frame/3/trmm/bli_trmm_blk_var3f.c +++ b/frame/3/trmm/bli_trmm_blk_var3f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_blk_var3f.h b/frame/3/trmm/bli_trmm_blk_var3f.h index 42ac48b6c..d0596941a 100644 --- a/frame/3/trmm/bli_trmm_blk_var3f.h +++ b/frame/3/trmm/bli_trmm_blk_var3f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_check.c b/frame/3/trmm/bli_trmm_check.c index 0ef785190..0f231f2d8 100644 --- a/frame/3/trmm/bli_trmm_check.c +++ b/frame/3/trmm/bli_trmm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_check.h b/frame/3/trmm/bli_trmm_check.h index 80012802c..55a0b57a2 100644 --- a/frame/3/trmm/bli_trmm_check.h +++ b/frame/3/trmm/bli_trmm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_cntl.c b/frame/3/trmm/bli_trmm_cntl.c index a5be35b90..0bc88fe2b 100644 --- a/frame/3/trmm/bli_trmm_cntl.c +++ b/frame/3/trmm/bli_trmm_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_cntl.h b/frame/3/trmm/bli_trmm_cntl.h index cdcb7a275..dfb1bd5d8 100644 --- a/frame/3/trmm/bli_trmm_cntl.h +++ b/frame/3/trmm/bli_trmm_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_front.c b/frame/3/trmm/bli_trmm_front.c index 5495ee9e3..2842ef401 100644 --- a/frame/3/trmm/bli_trmm_front.c +++ b/frame/3/trmm/bli_trmm_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_front.h b/frame/3/trmm/bli_trmm_front.h index c3d60bf10..bd80ff7cb 100644 --- a/frame/3/trmm/bli_trmm_front.h +++ b/frame/3/trmm/bli_trmm_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_int.c b/frame/3/trmm/bli_trmm_int.c index 7298dad7a..8ada7ca20 100644 --- a/frame/3/trmm/bli_trmm_int.c +++ b/frame/3/trmm/bli_trmm_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_int.h b/frame/3/trmm/bli_trmm_int.h index ae98347a6..36231aacc 100644 --- a/frame/3/trmm/bli_trmm_int.h +++ b/frame/3/trmm/bli_trmm_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_ll_ker_var2.c b/frame/3/trmm/bli_trmm_ll_ker_var2.c index 24ff3093b..f985186f4 100644 --- a/frame/3/trmm/bli_trmm_ll_ker_var2.c +++ b/frame/3/trmm/bli_trmm_ll_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_ll_ker_var2.h b/frame/3/trmm/bli_trmm_ll_ker_var2.h index 3bf8f3df4..fc338374b 100644 --- a/frame/3/trmm/bli_trmm_ll_ker_var2.h +++ b/frame/3/trmm/bli_trmm_ll_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_lu_ker_var2.c b/frame/3/trmm/bli_trmm_lu_ker_var2.c index 003e90180..57e44aa54 100644 --- a/frame/3/trmm/bli_trmm_lu_ker_var2.c +++ b/frame/3/trmm/bli_trmm_lu_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_lu_ker_var2.h b/frame/3/trmm/bli_trmm_lu_ker_var2.h index a62deee34..ff4c49869 100644 --- a/frame/3/trmm/bli_trmm_lu_ker_var2.h +++ b/frame/3/trmm/bli_trmm_lu_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_rl_ker_var2.c b/frame/3/trmm/bli_trmm_rl_ker_var2.c index f6b1c8712..b84ae7107 100644 --- a/frame/3/trmm/bli_trmm_rl_ker_var2.c +++ b/frame/3/trmm/bli_trmm_rl_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_rl_ker_var2.h b/frame/3/trmm/bli_trmm_rl_ker_var2.h index 098b79f1a..3f4132d94 100644 --- a/frame/3/trmm/bli_trmm_rl_ker_var2.h +++ b/frame/3/trmm/bli_trmm_rl_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_ru_ker_var2.c b/frame/3/trmm/bli_trmm_ru_ker_var2.c index bd965ea3a..67375e61e 100644 --- a/frame/3/trmm/bli_trmm_ru_ker_var2.c +++ b/frame/3/trmm/bli_trmm_ru_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_ru_ker_var2.h b/frame/3/trmm/bli_trmm_ru_ker_var2.h index 14a2d5301..49840791c 100644 --- a/frame/3/trmm/bli_trmm_ru_ker_var2.h +++ b/frame/3/trmm/bli_trmm_ru_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_target.c b/frame/3/trmm/bli_trmm_target.c index 29a5f6847..15894c3ca 100644 --- a/frame/3/trmm/bli_trmm_target.c +++ b/frame/3/trmm/bli_trmm_target.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_target.h b/frame/3/trmm/bli_trmm_target.h index 2e0c42e5e..e54c20e7c 100644 --- a/frame/3/trmm/bli_trmm_target.h +++ b/frame/3/trmm/bli_trmm_target.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_threading.c b/frame/3/trmm/bli_trmm_threading.c index b53003db0..43afa6fc2 100644 --- a/frame/3/trmm/bli_trmm_threading.c +++ b/frame/3/trmm/bli_trmm_threading.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/bli_trmm_threading.h b/frame/3/trmm/bli_trmm_threading.h index 806d0825e..172ae88aa 100644 --- a/frame/3/trmm/bli_trmm_threading.h +++ b/frame/3/trmm/bli_trmm_threading.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/other/bli_trmm_ll_blk_var1.c b/frame/3/trmm/other/bli_trmm_ll_blk_var1.c index 9be32a816..34ae5cf84 100644 --- a/frame/3/trmm/other/bli_trmm_ll_blk_var1.c +++ b/frame/3/trmm/other/bli_trmm_ll_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/other/bli_trmm_ll_blk_var1.h b/frame/3/trmm/other/bli_trmm_ll_blk_var1.h index 99b02d949..ff6928122 100644 --- a/frame/3/trmm/other/bli_trmm_ll_blk_var1.h +++ b/frame/3/trmm/other/bli_trmm_ll_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/other/bli_trmm_ll_blk_var4.c b/frame/3/trmm/other/bli_trmm_ll_blk_var4.c index 214098b01..cf7765da4 100644 --- a/frame/3/trmm/other/bli_trmm_ll_blk_var4.c +++ b/frame/3/trmm/other/bli_trmm_ll_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/other/bli_trmm_ll_blk_var4.h b/frame/3/trmm/other/bli_trmm_ll_blk_var4.h index 2a2ea84aa..b9b9f8e12 100644 --- a/frame/3/trmm/other/bli_trmm_ll_blk_var4.h +++ b/frame/3/trmm/other/bli_trmm_ll_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/other/bli_trmm_lu_blk_var1.c b/frame/3/trmm/other/bli_trmm_lu_blk_var1.c index e52dd1f81..1606790c5 100644 --- a/frame/3/trmm/other/bli_trmm_lu_blk_var1.c +++ b/frame/3/trmm/other/bli_trmm_lu_blk_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/other/bli_trmm_lu_blk_var1.h b/frame/3/trmm/other/bli_trmm_lu_blk_var1.h index 94bb219df..12d53e8f1 100644 --- a/frame/3/trmm/other/bli_trmm_lu_blk_var1.h +++ b/frame/3/trmm/other/bli_trmm_lu_blk_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/other/bli_trmm_lu_blk_var4.c b/frame/3/trmm/other/bli_trmm_lu_blk_var4.c index 219469ac3..d256fb89a 100644 --- a/frame/3/trmm/other/bli_trmm_lu_blk_var4.c +++ b/frame/3/trmm/other/bli_trmm_lu_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm/other/bli_trmm_lu_blk_var4.h b/frame/3/trmm/other/bli_trmm_lu_blk_var4.h index a284df844..0d4e38005 100644 --- a/frame/3/trmm/other/bli_trmm_lu_blk_var4.h +++ b/frame/3/trmm/other/bli_trmm_lu_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/3m/bli_trmm33m.c b/frame/3/trmm3/3m/bli_trmm33m.c index 9532e67e7..e47bff085 100644 --- a/frame/3/trmm3/3m/bli_trmm33m.c +++ b/frame/3/trmm3/3m/bli_trmm33m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/3m/bli_trmm33m.h b/frame/3/trmm3/3m/bli_trmm33m.h index 8529da5ce..e8b32a166 100644 --- a/frame/3/trmm3/3m/bli_trmm33m.h +++ b/frame/3/trmm3/3m/bli_trmm33m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/4m/bli_trmm34m.c b/frame/3/trmm3/4m/bli_trmm34m.c index 51384ba51..07235dc82 100644 --- a/frame/3/trmm3/4m/bli_trmm34m.c +++ b/frame/3/trmm3/4m/bli_trmm34m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/4m/bli_trmm34m.h b/frame/3/trmm3/4m/bli_trmm34m.h index d3b487d55..451982201 100644 --- a/frame/3/trmm3/4m/bli_trmm34m.h +++ b/frame/3/trmm3/4m/bli_trmm34m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/bli_trmm3.c b/frame/3/trmm3/bli_trmm3.c index 81b639dad..2740194f9 100644 --- a/frame/3/trmm3/bli_trmm3.c +++ b/frame/3/trmm3/bli_trmm3.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/bli_trmm3.h b/frame/3/trmm3/bli_trmm3.h index c6e24a9fb..9fad723bd 100644 --- a/frame/3/trmm3/bli_trmm3.h +++ b/frame/3/trmm3/bli_trmm3.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/bli_trmm3_check.c b/frame/3/trmm3/bli_trmm3_check.c index c10d15b8e..2d52f80c3 100644 --- a/frame/3/trmm3/bli_trmm3_check.c +++ b/frame/3/trmm3/bli_trmm3_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/bli_trmm3_check.h b/frame/3/trmm3/bli_trmm3_check.h index 451a481d6..4dd7316ed 100644 --- a/frame/3/trmm3/bli_trmm3_check.h +++ b/frame/3/trmm3/bli_trmm3_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/bli_trmm3_front.c b/frame/3/trmm3/bli_trmm3_front.c index b3dc01eb7..be67037f3 100644 --- a/frame/3/trmm3/bli_trmm3_front.c +++ b/frame/3/trmm3/bli_trmm3_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trmm3/bli_trmm3_front.h b/frame/3/trmm3/bli_trmm3_front.h index af276f35b..4a169cc9f 100644 --- a/frame/3/trmm3/bli_trmm3_front.h +++ b/frame/3/trmm3/bli_trmm3_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/bli_trsm3m.c b/frame/3/trsm/3m/bli_trsm3m.c index 2c26527c7..32b8a4434 100644 --- a/frame/3/trsm/3m/bli_trsm3m.c +++ b/frame/3/trsm/3m/bli_trsm3m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/bli_trsm3m.h b/frame/3/trsm/3m/bli_trsm3m.h index f14410d62..90d98af37 100644 --- a/frame/3/trsm/3m/bli_trsm3m.h +++ b/frame/3/trsm/3m/bli_trsm3m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/bli_trsm3m_cntl.c b/frame/3/trsm/3m/bli_trsm3m_cntl.c index ab308e483..d4db6ff39 100644 --- a/frame/3/trsm/3m/bli_trsm3m_cntl.c +++ b/frame/3/trsm/3m/bli_trsm3m_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/bli_trsm3m_cntl.h b/frame/3/trsm/3m/bli_trsm3m_cntl.h index a6d328464..ba8ca3082 100644 --- a/frame/3/trsm/3m/bli_trsm3m_cntl.h +++ b/frame/3/trsm/3m/bli_trsm3m_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c index aef999481..b4630183f 100644 --- a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c +++ b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h index 7e6a17a84..7b8dc13ab 100644 --- a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h +++ b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_l_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c index 38c7bb372..da8e59a81 100644 --- a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c +++ b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h index 8b8f02b60..0d1b09ea7 100644 --- a/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h +++ b/frame/3/trsm/3m/ukernels/bli_gemmtrsm3m_u_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c b/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c index 5f72a04d5..dbeb89dcc 100644 --- a/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c +++ b/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h b/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h index 12a6fd466..8af951330 100644 --- a/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h +++ b/frame/3/trsm/3m/ukernels/bli_trsm3m_l_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c b/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c index 2be6b299e..f95131ab6 100644 --- a/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c +++ b/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h b/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h index 630b0e159..ebd51e93d 100644 --- a/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h +++ b/frame/3/trsm/3m/ukernels/bli_trsm3m_u_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/bli_trsm4m.c b/frame/3/trsm/4m/bli_trsm4m.c index a8d6191d8..d3564703a 100644 --- a/frame/3/trsm/4m/bli_trsm4m.c +++ b/frame/3/trsm/4m/bli_trsm4m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/bli_trsm4m.h b/frame/3/trsm/4m/bli_trsm4m.h index 0d5b3e4ea..95ccbec6d 100644 --- a/frame/3/trsm/4m/bli_trsm4m.h +++ b/frame/3/trsm/4m/bli_trsm4m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/bli_trsm4m_cntl.c b/frame/3/trsm/4m/bli_trsm4m_cntl.c index 507de4635..7f2520bcd 100644 --- a/frame/3/trsm/4m/bli_trsm4m_cntl.c +++ b/frame/3/trsm/4m/bli_trsm4m_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/bli_trsm4m_cntl.h b/frame/3/trsm/4m/bli_trsm4m_cntl.h index a582254e6..c9ea2af68 100644 --- a/frame/3/trsm/4m/bli_trsm4m_cntl.h +++ b/frame/3/trsm/4m/bli_trsm4m_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c index 4d91049a6..0cb80a718 100644 --- a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c +++ b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h index 2366e74a1..597fd05df 100644 --- a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h +++ b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_l_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c index 8586eedf0..cb7cb27a7 100644 --- a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c +++ b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h index 35e159dee..6aa5bbb7c 100644 --- a/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h +++ b/frame/3/trsm/4m/ukernels/bli_gemmtrsm4m_u_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c b/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c index b65322488..7f9e46fa1 100644 --- a/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c +++ b/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h b/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h index 7d6d07326..85bd7009d 100644 --- a/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h +++ b/frame/3/trsm/4m/ukernels/bli_trsm4m_l_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c b/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c index a2568273c..134407c1e 100644 --- a/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c +++ b/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h b/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h index 635c222b4..e20043dbf 100644 --- a/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h +++ b/frame/3/trsm/4m/ukernels/bli_trsm4m_u_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_gemmtrsm_ukernel.c b/frame/3/trsm/bli_gemmtrsm_ukernel.c index 06a1dfa79..7133d9bf3 100644 --- a/frame/3/trsm/bli_gemmtrsm_ukernel.c +++ b/frame/3/trsm/bli_gemmtrsm_ukernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_gemmtrsm_ukernel.h b/frame/3/trsm/bli_gemmtrsm_ukernel.h index af73b6908..2c443b58a 100644 --- a/frame/3/trsm/bli_gemmtrsm_ukernel.h +++ b/frame/3/trsm/bli_gemmtrsm_ukernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm.c b/frame/3/trsm/bli_trsm.c index ff58284f6..ef7b1afbc 100644 --- a/frame/3/trsm/bli_trsm.c +++ b/frame/3/trsm/bli_trsm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm.h b/frame/3/trsm/bli_trsm.h index 2c0bcf48d..ec47e974e 100644 --- a/frame/3/trsm/bli_trsm.h +++ b/frame/3/trsm/bli_trsm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var1b.c b/frame/3/trsm/bli_trsm_blk_var1b.c index 4938aefe9..2fc46c534 100644 --- a/frame/3/trsm/bli_trsm_blk_var1b.c +++ b/frame/3/trsm/bli_trsm_blk_var1b.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var1b.h b/frame/3/trsm/bli_trsm_blk_var1b.h index db4109801..996b11837 100644 --- a/frame/3/trsm/bli_trsm_blk_var1b.h +++ b/frame/3/trsm/bli_trsm_blk_var1b.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var1f.c b/frame/3/trsm/bli_trsm_blk_var1f.c index 9b58bfd42..6155ca524 100644 --- a/frame/3/trsm/bli_trsm_blk_var1f.c +++ b/frame/3/trsm/bli_trsm_blk_var1f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var1f.h b/frame/3/trsm/bli_trsm_blk_var1f.h index 4191f5567..98535e67d 100644 --- a/frame/3/trsm/bli_trsm_blk_var1f.h +++ b/frame/3/trsm/bli_trsm_blk_var1f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var2b.c b/frame/3/trsm/bli_trsm_blk_var2b.c index a903807c6..2ac6b666b 100644 --- a/frame/3/trsm/bli_trsm_blk_var2b.c +++ b/frame/3/trsm/bli_trsm_blk_var2b.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var2b.h b/frame/3/trsm/bli_trsm_blk_var2b.h index 152f65807..37ccc9b63 100644 --- a/frame/3/trsm/bli_trsm_blk_var2b.h +++ b/frame/3/trsm/bli_trsm_blk_var2b.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var2f.c b/frame/3/trsm/bli_trsm_blk_var2f.c index a7609abef..444ce544d 100644 --- a/frame/3/trsm/bli_trsm_blk_var2f.c +++ b/frame/3/trsm/bli_trsm_blk_var2f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var2f.h b/frame/3/trsm/bli_trsm_blk_var2f.h index a69effd1f..2415d8845 100644 --- a/frame/3/trsm/bli_trsm_blk_var2f.h +++ b/frame/3/trsm/bli_trsm_blk_var2f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var3b.c b/frame/3/trsm/bli_trsm_blk_var3b.c index 0d36f3f34..e62a6dee6 100644 --- a/frame/3/trsm/bli_trsm_blk_var3b.c +++ b/frame/3/trsm/bli_trsm_blk_var3b.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var3b.h b/frame/3/trsm/bli_trsm_blk_var3b.h index bd5ef655b..9a2ed5625 100644 --- a/frame/3/trsm/bli_trsm_blk_var3b.h +++ b/frame/3/trsm/bli_trsm_blk_var3b.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var3f.c b/frame/3/trsm/bli_trsm_blk_var3f.c index 3f794cbc6..7e3790d9f 100644 --- a/frame/3/trsm/bli_trsm_blk_var3f.c +++ b/frame/3/trsm/bli_trsm_blk_var3f.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_blk_var3f.h b/frame/3/trsm/bli_trsm_blk_var3f.h index ee9e49171..8c4e8a8d5 100644 --- a/frame/3/trsm/bli_trsm_blk_var3f.h +++ b/frame/3/trsm/bli_trsm_blk_var3f.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_check.c b/frame/3/trsm/bli_trsm_check.c index f3515670a..7abd33f2c 100644 --- a/frame/3/trsm/bli_trsm_check.c +++ b/frame/3/trsm/bli_trsm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_check.h b/frame/3/trsm/bli_trsm_check.h index 2278bb3f2..f0df6c608 100644 --- a/frame/3/trsm/bli_trsm_check.h +++ b/frame/3/trsm/bli_trsm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_cntl.c b/frame/3/trsm/bli_trsm_cntl.c index 4586b45e8..b26b6a43d 100644 --- a/frame/3/trsm/bli_trsm_cntl.c +++ b/frame/3/trsm/bli_trsm_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_cntl.h b/frame/3/trsm/bli_trsm_cntl.h index b7a43b559..3d13910d7 100644 --- a/frame/3/trsm/bli_trsm_cntl.h +++ b/frame/3/trsm/bli_trsm_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_front.c b/frame/3/trsm/bli_trsm_front.c index d649dc11f..447051e3e 100644 --- a/frame/3/trsm/bli_trsm_front.c +++ b/frame/3/trsm/bli_trsm_front.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_front.h b/frame/3/trsm/bli_trsm_front.h index d2174681e..f3342427f 100644 --- a/frame/3/trsm/bli_trsm_front.h +++ b/frame/3/trsm/bli_trsm_front.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_int.c b/frame/3/trsm/bli_trsm_int.c index 533995104..452b8afa6 100644 --- a/frame/3/trsm/bli_trsm_int.c +++ b/frame/3/trsm/bli_trsm_int.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_int.h b/frame/3/trsm/bli_trsm_int.h index 36d27879d..21fcde4cc 100644 --- a/frame/3/trsm/bli_trsm_int.h +++ b/frame/3/trsm/bli_trsm_int.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_ll_ker_var2.c b/frame/3/trsm/bli_trsm_ll_ker_var2.c index e538a68a2..49e9b0cf3 100644 --- a/frame/3/trsm/bli_trsm_ll_ker_var2.c +++ b/frame/3/trsm/bli_trsm_ll_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_ll_ker_var2.h b/frame/3/trsm/bli_trsm_ll_ker_var2.h index 308846549..302cc3d20 100644 --- a/frame/3/trsm/bli_trsm_ll_ker_var2.h +++ b/frame/3/trsm/bli_trsm_ll_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_lu_ker_var2.c b/frame/3/trsm/bli_trsm_lu_ker_var2.c index d03949920..3447c49b1 100644 --- a/frame/3/trsm/bli_trsm_lu_ker_var2.c +++ b/frame/3/trsm/bli_trsm_lu_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_lu_ker_var2.h b/frame/3/trsm/bli_trsm_lu_ker_var2.h index 7cb839f45..6cc4bb874 100644 --- a/frame/3/trsm/bli_trsm_lu_ker_var2.h +++ b/frame/3/trsm/bli_trsm_lu_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_rl_ker_var2.c b/frame/3/trsm/bli_trsm_rl_ker_var2.c index d223019a2..844f5061c 100644 --- a/frame/3/trsm/bli_trsm_rl_ker_var2.c +++ b/frame/3/trsm/bli_trsm_rl_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_rl_ker_var2.h b/frame/3/trsm/bli_trsm_rl_ker_var2.h index 38d61c2cd..5dc49a6b9 100644 --- a/frame/3/trsm/bli_trsm_rl_ker_var2.h +++ b/frame/3/trsm/bli_trsm_rl_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_ru_ker_var2.c b/frame/3/trsm/bli_trsm_ru_ker_var2.c index 37b58d75a..50b47108c 100644 --- a/frame/3/trsm/bli_trsm_ru_ker_var2.c +++ b/frame/3/trsm/bli_trsm_ru_ker_var2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_ru_ker_var2.h b/frame/3/trsm/bli_trsm_ru_ker_var2.h index c1216d02f..b6c049db6 100644 --- a/frame/3/trsm/bli_trsm_ru_ker_var2.h +++ b/frame/3/trsm/bli_trsm_ru_ker_var2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_threading.c b/frame/3/trsm/bli_trsm_threading.c index 758a62ce3..edf992cf0 100644 --- a/frame/3/trsm/bli_trsm_threading.c +++ b/frame/3/trsm/bli_trsm_threading.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_threading.h b/frame/3/trsm/bli_trsm_threading.h index d8db3fcf5..2f041a20c 100644 --- a/frame/3/trsm/bli_trsm_threading.h +++ b/frame/3/trsm/bli_trsm_threading.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_ukernel.c b/frame/3/trsm/bli_trsm_ukernel.c index 930c5dc1b..ee11ed3c4 100644 --- a/frame/3/trsm/bli_trsm_ukernel.c +++ b/frame/3/trsm/bli_trsm_ukernel.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/bli_trsm_ukernel.h b/frame/3/trsm/bli_trsm_ukernel.h index 073ff214a..134777781 100644 --- a/frame/3/trsm/bli_trsm_ukernel.h +++ b/frame/3/trsm/bli_trsm_ukernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/other/bli_trsm_l_blk_var4.c b/frame/3/trsm/other/bli_trsm_l_blk_var4.c index 15718f687..b71dd0ef3 100644 --- a/frame/3/trsm/other/bli_trsm_l_blk_var4.c +++ b/frame/3/trsm/other/bli_trsm_l_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/other/bli_trsm_l_blk_var4.h b/frame/3/trsm/other/bli_trsm_l_blk_var4.h index 0acd79d27..93675bb6b 100644 --- a/frame/3/trsm/other/bli_trsm_l_blk_var4.h +++ b/frame/3/trsm/other/bli_trsm_l_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/other/bli_trsm_u_blk_var4.c b/frame/3/trsm/other/bli_trsm_u_blk_var4.c index 5f25ef440..200936695 100644 --- a/frame/3/trsm/other/bli_trsm_u_blk_var4.c +++ b/frame/3/trsm/other/bli_trsm_u_blk_var4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/other/bli_trsm_u_blk_var4.h b/frame/3/trsm/other/bli_trsm_u_blk_var4.h index ab233b146..45f84c2e7 100644 --- a/frame/3/trsm/other/bli_trsm_u_blk_var4.h +++ b/frame/3/trsm/other/bli_trsm_u_blk_var4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c b/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c index 9256ee95a..cdd6ad459 100644 --- a/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c +++ b/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h b/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h index 2123c7c31..307dec440 100644 --- a/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h +++ b/frame/3/trsm/ukernels/bli_gemmtrsm_l_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c b/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c index ab9e197fa..0f7921410 100644 --- a/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c +++ b/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h b/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h index 877a4dee4..a90608040 100644 --- a/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h +++ b/frame/3/trsm/ukernels/bli_gemmtrsm_u_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c b/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c index be3273449..5daf507df 100644 --- a/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c +++ b/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h b/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h index e94f80c73..0b649c857 100644 --- a/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h +++ b/frame/3/trsm/ukernels/bli_trsm_l_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c b/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c index e5f98c429..56ae4d277 100644 --- a/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c +++ b/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h b/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h index 72e77f7fa..bcf3ab1fa 100644 --- a/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h +++ b/frame/3/trsm/ukernels/bli_trsm_u_ukr_ref.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_blocksize.c b/frame/base/bli_blocksize.c index 20443d2e7..92d1125f2 100644 --- a/frame/base/bli_blocksize.c +++ b/frame/base/bli_blocksize.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_blocksize.h b/frame/base/bli_blocksize.h index f22b55a9a..437a3a47e 100644 --- a/frame/base/bli_blocksize.h +++ b/frame/base/bli_blocksize.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_check.c b/frame/base/bli_check.c index 3308c79e0..74635f633 100644 --- a/frame/base/bli_check.c +++ b/frame/base/bli_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_check.h b/frame/base/bli_check.h index 76430f76e..41fbb5b64 100644 --- a/frame/base/bli_check.h +++ b/frame/base/bli_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_clock.c b/frame/base/bli_clock.c index a1763ad2e..1b4fb3b76 100644 --- a/frame/base/bli_clock.c +++ b/frame/base/bli_clock.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_clock.h b/frame/base/bli_clock.h index db216fdf4..5f65d6359 100644 --- a/frame/base/bli_clock.h +++ b/frame/base/bli_clock.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_error.c b/frame/base/bli_error.c index ccc178985..47634609c 100644 --- a/frame/base/bli_error.c +++ b/frame/base/bli_error.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_error.h b/frame/base/bli_error.h index f471652e9..acba60a73 100644 --- a/frame/base/bli_error.h +++ b/frame/base/bli_error.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_func.c b/frame/base/bli_func.c index c24f3bd6d..f8dd58a3d 100644 --- a/frame/base/bli_func.c +++ b/frame/base/bli_func.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_func.h b/frame/base/bli_func.h index 8e57ad779..963cf0e4c 100644 --- a/frame/base/bli_func.h +++ b/frame/base/bli_func.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_getopt.c b/frame/base/bli_getopt.c index 27a4337e9..c56868558 100644 --- a/frame/base/bli_getopt.c +++ b/frame/base/bli_getopt.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_getopt.h b/frame/base/bli_getopt.h index bc44baa76..c285f5292 100644 --- a/frame/base/bli_getopt.h +++ b/frame/base/bli_getopt.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_info.c b/frame/base/bli_info.c index e8d1806bd..d6355484a 100644 --- a/frame/base/bli_info.c +++ b/frame/base/bli_info.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_info.h b/frame/base/bli_info.h index 49c4a322d..198364a52 100644 --- a/frame/base/bli_info.h +++ b/frame/base/bli_info.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_init.c b/frame/base/bli_init.c index 6c38c8d34..a718f9f79 100644 --- a/frame/base/bli_init.c +++ b/frame/base/bli_init.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_init.h b/frame/base/bli_init.h index 3f1d55194..040325eac 100644 --- a/frame/base/bli_init.h +++ b/frame/base/bli_init.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_machval.c b/frame/base/bli_machval.c index ab43721f3..79137070f 100644 --- a/frame/base/bli_machval.c +++ b/frame/base/bli_machval.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_machval.h b/frame/base/bli_machval.h index 9184fb3c1..2c86f9dd5 100644 --- a/frame/base/bli_machval.h +++ b/frame/base/bli_machval.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_malloc.c b/frame/base/bli_malloc.c index 9bb52b03d..8afa3fb91 100644 --- a/frame/base/bli_malloc.c +++ b/frame/base/bli_malloc.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_malloc.h b/frame/base/bli_malloc.h index 7236e58ea..f5a05c0e4 100644 --- a/frame/base/bli_malloc.h +++ b/frame/base/bli_malloc.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_mem.c b/frame/base/bli_mem.c index f50cbc465..8847f5024 100644 --- a/frame/base/bli_mem.c +++ b/frame/base/bli_mem.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_mem.h b/frame/base/bli_mem.h index ff24ae7f5..6e83ac122 100644 --- a/frame/base/bli_mem.h +++ b/frame/base/bli_mem.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_obj.c b/frame/base/bli_obj.c index 7375c208e..c9f4ad366 100644 --- a/frame/base/bli_obj.c +++ b/frame/base/bli_obj.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_obj.h b/frame/base/bli_obj.h index 2a9d39aa7..a4369e22d 100644 --- a/frame/base/bli_obj.h +++ b/frame/base/bli_obj.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_obj_scalar.c b/frame/base/bli_obj_scalar.c index 2d70eb6c9..f8d33957c 100644 --- a/frame/base/bli_obj_scalar.c +++ b/frame/base/bli_obj_scalar.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_obj_scalar.h b/frame/base/bli_obj_scalar.h index 7cc8a5f84..388a2929f 100644 --- a/frame/base/bli_obj_scalar.h +++ b/frame/base/bli_obj_scalar.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_param_map.c b/frame/base/bli_param_map.c index 98cab7384..b50f5010b 100644 --- a/frame/base/bli_param_map.c +++ b/frame/base/bli_param_map.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_param_map.h b/frame/base/bli_param_map.h index ab5728435..75738cd62 100644 --- a/frame/base/bli_param_map.h +++ b/frame/base/bli_param_map.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_part.c b/frame/base/bli_part.c index ae3befd5f..b8a28d541 100644 --- a/frame/base/bli_part.c +++ b/frame/base/bli_part.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_part.h b/frame/base/bli_part.h index 2cbc6c5af..ed1fa0d15 100644 --- a/frame/base/bli_part.h +++ b/frame/base/bli_part.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_query.c b/frame/base/bli_query.c index e0c1d1833..7e7ce02c5 100644 --- a/frame/base/bli_query.c +++ b/frame/base/bli_query.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_query.h b/frame/base/bli_query.h index 0a8c07f44..4e89fcea6 100644 --- a/frame/base/bli_query.h +++ b/frame/base/bli_query.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_threading.c b/frame/base/bli_threading.c index 0c96124be..18f8fc5b5 100644 --- a/frame/base/bli_threading.c +++ b/frame/base/bli_threading.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/bli_threading.h b/frame/base/bli_threading.h index 67664e32f..852ac83b3 100644 --- a/frame/base/bli_threading.h +++ b/frame/base/bli_threading.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/check/bli_obj_check.c b/frame/base/check/bli_obj_check.c index 8a69d145a..d7ed185e9 100644 --- a/frame/base/check/bli_obj_check.c +++ b/frame/base/check/bli_obj_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/check/bli_obj_check.h b/frame/base/check/bli_obj_check.h index 934a7c863..68e653aaa 100644 --- a/frame/base/check/bli_obj_check.h +++ b/frame/base/check/bli_obj_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/check/bli_part_check.c b/frame/base/check/bli_part_check.c index 5be144c6f..4827a3a98 100644 --- a/frame/base/check/bli_part_check.c +++ b/frame/base/check/bli_part_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/check/bli_part_check.h b/frame/base/check/bli_part_check.h index 774cc3aae..89268c0fd 100644 --- a/frame/base/check/bli_part_check.h +++ b/frame/base/check/bli_part_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/noopt/bli_dlamch.h b/frame/base/noopt/bli_dlamch.h index 9874f25e9..b616e1a24 100644 --- a/frame/base/noopt/bli_dlamch.h +++ b/frame/base/noopt/bli_dlamch.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/noopt/bli_lsame.h b/frame/base/noopt/bli_lsame.h index c709da18c..892fb064e 100644 --- a/frame/base/noopt/bli_lsame.h +++ b/frame/base/noopt/bli_lsame.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/base/noopt/bli_slamch.h b/frame/base/noopt/bli_slamch.h index bad120411..80c7ae4ed 100644 --- a/frame/base/noopt/bli_slamch.h +++ b/frame/base/noopt/bli_slamch.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/cntl/bli_cntl.c b/frame/cntl/bli_cntl.c index 2ebd8d194..a31fc2dd5 100644 --- a/frame/cntl/bli_cntl.c +++ b/frame/cntl/bli_cntl.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/cntl/bli_cntl.h b/frame/cntl/bli_cntl.h index aa04dddfa..375cbb204 100644 --- a/frame/cntl/bli_cntl.h +++ b/frame/cntl/bli_cntl.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/cntl/bli_cntl_init.c b/frame/cntl/bli_cntl_init.c index 11a5bbd82..541af7156 100644 --- a/frame/cntl/bli_cntl_init.c +++ b/frame/cntl/bli_cntl_init.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/cntl/bli_cntl_init.h b/frame/cntl/bli_cntl_init.h index 1a060d4fe..c1bce09e0 100644 --- a/frame/cntl/bli_cntl_init.h +++ b/frame/cntl/bli_cntl_init.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_gbmv.c b/frame/compat/attic/bla_gbmv.c index 4e037cf28..41f2088e9 100644 --- a/frame/compat/attic/bla_gbmv.c +++ b/frame/compat/attic/bla_gbmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_gbmv.h b/frame/compat/attic/bla_gbmv.h index e9dcdfe59..43814691f 100644 --- a/frame/compat/attic/bla_gbmv.h +++ b/frame/compat/attic/bla_gbmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_hbmv.c b/frame/compat/attic/bla_hbmv.c index 4fddcb42f..51cc609f4 100644 --- a/frame/compat/attic/bla_hbmv.c +++ b/frame/compat/attic/bla_hbmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_hbmv.h b/frame/compat/attic/bla_hbmv.h index e6f826541..2fc88a4ab 100644 --- a/frame/compat/attic/bla_hbmv.h +++ b/frame/compat/attic/bla_hbmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_hpmv.c b/frame/compat/attic/bla_hpmv.c index 9f37e204e..6d5a09e31 100644 --- a/frame/compat/attic/bla_hpmv.c +++ b/frame/compat/attic/bla_hpmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_hpmv.h b/frame/compat/attic/bla_hpmv.h index 2ada79add..64e2f3acd 100644 --- a/frame/compat/attic/bla_hpmv.h +++ b/frame/compat/attic/bla_hpmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_hpr.c b/frame/compat/attic/bla_hpr.c index aa0c80af5..f81416498 100644 --- a/frame/compat/attic/bla_hpr.c +++ b/frame/compat/attic/bla_hpr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_hpr.h b/frame/compat/attic/bla_hpr.h index b67655f0b..d40485cd1 100644 --- a/frame/compat/attic/bla_hpr.h +++ b/frame/compat/attic/bla_hpr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_hpr2.c b/frame/compat/attic/bla_hpr2.c index 232389653..fa6bb40c8 100644 --- a/frame/compat/attic/bla_hpr2.c +++ b/frame/compat/attic/bla_hpr2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_hpr2.h b/frame/compat/attic/bla_hpr2.h index 9796fef57..cbf21e995 100644 --- a/frame/compat/attic/bla_hpr2.h +++ b/frame/compat/attic/bla_hpr2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_rot.c b/frame/compat/attic/bla_rot.c index 7aabc971e..2e0caa880 100644 --- a/frame/compat/attic/bla_rot.c +++ b/frame/compat/attic/bla_rot.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_rot.h b/frame/compat/attic/bla_rot.h index 12caf6568..1249ac883 100644 --- a/frame/compat/attic/bla_rot.h +++ b/frame/compat/attic/bla_rot.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_rotg.c b/frame/compat/attic/bla_rotg.c index 8a5d5a535..1d7fa50c2 100644 --- a/frame/compat/attic/bla_rotg.c +++ b/frame/compat/attic/bla_rotg.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_rotg.h b/frame/compat/attic/bla_rotg.h index 1fcf12c74..ef3320def 100644 --- a/frame/compat/attic/bla_rotg.h +++ b/frame/compat/attic/bla_rotg.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_rotm.c b/frame/compat/attic/bla_rotm.c index f575fc8f0..7914c7826 100644 --- a/frame/compat/attic/bla_rotm.c +++ b/frame/compat/attic/bla_rotm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_rotm.h b/frame/compat/attic/bla_rotm.h index c26a5277f..bee9e15ce 100644 --- a/frame/compat/attic/bla_rotm.h +++ b/frame/compat/attic/bla_rotm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_rotmg.c b/frame/compat/attic/bla_rotmg.c index 68454e72c..1a424dbe7 100644 --- a/frame/compat/attic/bla_rotmg.c +++ b/frame/compat/attic/bla_rotmg.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_rotmg.h b/frame/compat/attic/bla_rotmg.h index a985a3f0a..07ac962d6 100644 --- a/frame/compat/attic/bla_rotmg.h +++ b/frame/compat/attic/bla_rotmg.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_sbmv.c b/frame/compat/attic/bla_sbmv.c index cab76ec43..705368e9b 100644 --- a/frame/compat/attic/bla_sbmv.c +++ b/frame/compat/attic/bla_sbmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_sbmv.h b/frame/compat/attic/bla_sbmv.h index 01ce63d8a..148567bc3 100644 --- a/frame/compat/attic/bla_sbmv.h +++ b/frame/compat/attic/bla_sbmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_spmv.c b/frame/compat/attic/bla_spmv.c index 47c6be708..c577f2e6b 100644 --- a/frame/compat/attic/bla_spmv.c +++ b/frame/compat/attic/bla_spmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_spmv.h b/frame/compat/attic/bla_spmv.h index 2113afac5..dd5e774d8 100644 --- a/frame/compat/attic/bla_spmv.h +++ b/frame/compat/attic/bla_spmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_spr.c b/frame/compat/attic/bla_spr.c index d237ea904..a3b7bf1f3 100644 --- a/frame/compat/attic/bla_spr.c +++ b/frame/compat/attic/bla_spr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_spr.h b/frame/compat/attic/bla_spr.h index 490bf2981..93b90f9cb 100644 --- a/frame/compat/attic/bla_spr.h +++ b/frame/compat/attic/bla_spr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_spr2.c b/frame/compat/attic/bla_spr2.c index b44684055..5426633f1 100644 --- a/frame/compat/attic/bla_spr2.c +++ b/frame/compat/attic/bla_spr2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_spr2.h b/frame/compat/attic/bla_spr2.h index fa2ca1c4b..98c57a6a0 100644 --- a/frame/compat/attic/bla_spr2.h +++ b/frame/compat/attic/bla_spr2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_tbmv.c b/frame/compat/attic/bla_tbmv.c index 693d2d294..19cd6f995 100644 --- a/frame/compat/attic/bla_tbmv.c +++ b/frame/compat/attic/bla_tbmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_tbmv.h b/frame/compat/attic/bla_tbmv.h index e1578e382..83e3bb17a 100644 --- a/frame/compat/attic/bla_tbmv.h +++ b/frame/compat/attic/bla_tbmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_tbsv.c b/frame/compat/attic/bla_tbsv.c index 2282a3e93..18f897a91 100644 --- a/frame/compat/attic/bla_tbsv.c +++ b/frame/compat/attic/bla_tbsv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_tbsv.h b/frame/compat/attic/bla_tbsv.h index 483b48a1b..563833296 100644 --- a/frame/compat/attic/bla_tbsv.h +++ b/frame/compat/attic/bla_tbsv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_tpmv.c b/frame/compat/attic/bla_tpmv.c index 47b5c8ab2..28d362e76 100644 --- a/frame/compat/attic/bla_tpmv.c +++ b/frame/compat/attic/bla_tpmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_tpmv.h b/frame/compat/attic/bla_tpmv.h index f73546f7e..551742250 100644 --- a/frame/compat/attic/bla_tpmv.h +++ b/frame/compat/attic/bla_tpmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_tpsv.c b/frame/compat/attic/bla_tpsv.c index e1bb18b9d..da061d792 100644 --- a/frame/compat/attic/bla_tpsv.c +++ b/frame/compat/attic/bla_tpsv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/attic/bla_tpsv.h b/frame/compat/attic/bla_tpsv.h index fdfd17766..e5f82d10e 100644 --- a/frame/compat/attic/bla_tpsv.h +++ b/frame/compat/attic/bla_tpsv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_amax.c b/frame/compat/bla_amax.c index c1d6be14f..086a2ef14 100644 --- a/frame/compat/bla_amax.c +++ b/frame/compat/bla_amax.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_amax.h b/frame/compat/bla_amax.h index d8f5f1d27..0c2faf959 100644 --- a/frame/compat/bla_amax.h +++ b/frame/compat/bla_amax.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_asum.c b/frame/compat/bla_asum.c index 28d93740a..2e7cc8322 100644 --- a/frame/compat/bla_asum.c +++ b/frame/compat/bla_asum.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_asum.h b/frame/compat/bla_asum.h index 559919c54..ef3c9f3e7 100644 --- a/frame/compat/bla_asum.h +++ b/frame/compat/bla_asum.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_axpy.c b/frame/compat/bla_axpy.c index 7c20f4da2..46937f57b 100644 --- a/frame/compat/bla_axpy.c +++ b/frame/compat/bla_axpy.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_axpy.h b/frame/compat/bla_axpy.h index 59cfcfb8b..12b5bafa7 100644 --- a/frame/compat/bla_axpy.h +++ b/frame/compat/bla_axpy.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_copy.c b/frame/compat/bla_copy.c index ac4e70dcf..52d709bec 100644 --- a/frame/compat/bla_copy.c +++ b/frame/compat/bla_copy.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_copy.h b/frame/compat/bla_copy.h index 8b3415aac..46060b76c 100644 --- a/frame/compat/bla_copy.h +++ b/frame/compat/bla_copy.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_dot.c b/frame/compat/bla_dot.c index b253d445e..d725ae0e7 100644 --- a/frame/compat/bla_dot.c +++ b/frame/compat/bla_dot.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_dot.h b/frame/compat/bla_dot.h index 47ae7fe5e..1188fbeca 100644 --- a/frame/compat/bla_dot.h +++ b/frame/compat/bla_dot.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_gemm.c b/frame/compat/bla_gemm.c index c5daab2f4..7f6da67c5 100644 --- a/frame/compat/bla_gemm.c +++ b/frame/compat/bla_gemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_gemm.h b/frame/compat/bla_gemm.h index 0581672ae..0ad1018c4 100644 --- a/frame/compat/bla_gemm.h +++ b/frame/compat/bla_gemm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_gemv.c b/frame/compat/bla_gemv.c index 8acb87511..b0e64d618 100644 --- a/frame/compat/bla_gemv.c +++ b/frame/compat/bla_gemv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_gemv.h b/frame/compat/bla_gemv.h index 8b21c04fa..d1b391b67 100644 --- a/frame/compat/bla_gemv.h +++ b/frame/compat/bla_gemv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_ger.c b/frame/compat/bla_ger.c index 2f571055d..d5724367b 100644 --- a/frame/compat/bla_ger.c +++ b/frame/compat/bla_ger.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_ger.h b/frame/compat/bla_ger.h index c1f80c20e..515414c31 100644 --- a/frame/compat/bla_ger.h +++ b/frame/compat/bla_ger.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_hemm.c b/frame/compat/bla_hemm.c index 32f6aae8a..b78f24441 100644 --- a/frame/compat/bla_hemm.c +++ b/frame/compat/bla_hemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_hemm.h b/frame/compat/bla_hemm.h index 2547435bc..75f5200dd 100644 --- a/frame/compat/bla_hemm.h +++ b/frame/compat/bla_hemm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_hemv.c b/frame/compat/bla_hemv.c index 1191485a9..d68f07712 100644 --- a/frame/compat/bla_hemv.c +++ b/frame/compat/bla_hemv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_hemv.h b/frame/compat/bla_hemv.h index 984959d52..733f19572 100644 --- a/frame/compat/bla_hemv.h +++ b/frame/compat/bla_hemv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_her.c b/frame/compat/bla_her.c index a60daf4da..85a282877 100644 --- a/frame/compat/bla_her.c +++ b/frame/compat/bla_her.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_her.h b/frame/compat/bla_her.h index 86233cb66..65fdbae94 100644 --- a/frame/compat/bla_her.h +++ b/frame/compat/bla_her.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_her2.c b/frame/compat/bla_her2.c index c7b457be0..82b92bf6f 100644 --- a/frame/compat/bla_her2.c +++ b/frame/compat/bla_her2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_her2.h b/frame/compat/bla_her2.h index 05ad59dc5..049137fc7 100644 --- a/frame/compat/bla_her2.h +++ b/frame/compat/bla_her2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_her2k.c b/frame/compat/bla_her2k.c index 983ebb36a..43279e682 100644 --- a/frame/compat/bla_her2k.c +++ b/frame/compat/bla_her2k.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_her2k.h b/frame/compat/bla_her2k.h index d3859bb34..d166ae9d6 100644 --- a/frame/compat/bla_her2k.h +++ b/frame/compat/bla_her2k.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_herk.c b/frame/compat/bla_herk.c index c64daf9c7..c3b6de5c5 100644 --- a/frame/compat/bla_herk.c +++ b/frame/compat/bla_herk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_herk.h b/frame/compat/bla_herk.h index ab2ae35a8..d5db7850e 100644 --- a/frame/compat/bla_herk.h +++ b/frame/compat/bla_herk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_nrm2.c b/frame/compat/bla_nrm2.c index e81a8894f..7b1e544d8 100644 --- a/frame/compat/bla_nrm2.c +++ b/frame/compat/bla_nrm2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_nrm2.h b/frame/compat/bla_nrm2.h index aa47dca8e..a2d043df7 100644 --- a/frame/compat/bla_nrm2.h +++ b/frame/compat/bla_nrm2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_scal.c b/frame/compat/bla_scal.c index 240928f42..a1058f4af 100644 --- a/frame/compat/bla_scal.c +++ b/frame/compat/bla_scal.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_scal.h b/frame/compat/bla_scal.h index 965cb28aa..325494e04 100644 --- a/frame/compat/bla_scal.h +++ b/frame/compat/bla_scal.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_swap.c b/frame/compat/bla_swap.c index efe7a6425..1e06afb83 100644 --- a/frame/compat/bla_swap.c +++ b/frame/compat/bla_swap.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_swap.h b/frame/compat/bla_swap.h index becef29c8..9186987ae 100644 --- a/frame/compat/bla_swap.h +++ b/frame/compat/bla_swap.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_symm.c b/frame/compat/bla_symm.c index 7b181afc0..b5ac8a935 100644 --- a/frame/compat/bla_symm.c +++ b/frame/compat/bla_symm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_symm.h b/frame/compat/bla_symm.h index f4a741219..d5f523cf1 100644 --- a/frame/compat/bla_symm.h +++ b/frame/compat/bla_symm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_symv.c b/frame/compat/bla_symv.c index 07b878dc8..2ebd784c7 100644 --- a/frame/compat/bla_symv.c +++ b/frame/compat/bla_symv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_symv.h b/frame/compat/bla_symv.h index 38b380f1c..7aa3c1071 100644 --- a/frame/compat/bla_symv.h +++ b/frame/compat/bla_symv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_syr.c b/frame/compat/bla_syr.c index 14119a47b..5a86e456d 100644 --- a/frame/compat/bla_syr.c +++ b/frame/compat/bla_syr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_syr.h b/frame/compat/bla_syr.h index b8eda89d7..39e097927 100644 --- a/frame/compat/bla_syr.h +++ b/frame/compat/bla_syr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_syr2.c b/frame/compat/bla_syr2.c index d17049dd2..2532874de 100644 --- a/frame/compat/bla_syr2.c +++ b/frame/compat/bla_syr2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_syr2.h b/frame/compat/bla_syr2.h index 871e40f0f..845d45858 100644 --- a/frame/compat/bla_syr2.h +++ b/frame/compat/bla_syr2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_syr2k.c b/frame/compat/bla_syr2k.c index 7b6a2e5fd..2a6bcc68f 100644 --- a/frame/compat/bla_syr2k.c +++ b/frame/compat/bla_syr2k.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_syr2k.h b/frame/compat/bla_syr2k.h index bf53ff67e..70d68e654 100644 --- a/frame/compat/bla_syr2k.h +++ b/frame/compat/bla_syr2k.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_syrk.c b/frame/compat/bla_syrk.c index be9ad40f0..02c8b5b01 100644 --- a/frame/compat/bla_syrk.c +++ b/frame/compat/bla_syrk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_syrk.h b/frame/compat/bla_syrk.h index 11190c53b..e7b152454 100644 --- a/frame/compat/bla_syrk.h +++ b/frame/compat/bla_syrk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_trmm.c b/frame/compat/bla_trmm.c index c51f20cad..714f46d49 100644 --- a/frame/compat/bla_trmm.c +++ b/frame/compat/bla_trmm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_trmm.h b/frame/compat/bla_trmm.h index bec888119..aa8e1375b 100644 --- a/frame/compat/bla_trmm.h +++ b/frame/compat/bla_trmm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_trmv.c b/frame/compat/bla_trmv.c index 86b11c1cc..15b978a42 100644 --- a/frame/compat/bla_trmv.c +++ b/frame/compat/bla_trmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_trmv.h b/frame/compat/bla_trmv.h index e88d2adb7..16611faf4 100644 --- a/frame/compat/bla_trmv.h +++ b/frame/compat/bla_trmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_trsm.c b/frame/compat/bla_trsm.c index 8bbd8da48..105bb318e 100644 --- a/frame/compat/bla_trsm.c +++ b/frame/compat/bla_trsm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_trsm.h b/frame/compat/bla_trsm.h index 45c15ba7e..27625422c 100644 --- a/frame/compat/bla_trsm.h +++ b/frame/compat/bla_trsm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_trsv.c b/frame/compat/bla_trsv.c index 44d8d54cf..040d9d4ce 100644 --- a/frame/compat/bla_trsv.c +++ b/frame/compat/bla_trsv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bla_trsv.h b/frame/compat/bla_trsv.h index f04377a81..d82feecbe 100644 --- a/frame/compat/bla_trsv.h +++ b/frame/compat/bla_trsv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/bli_blas.h b/frame/compat/bli_blas.h index e4fc24791..a046d305a 100644 --- a/frame/compat/bli_blas.h +++ b/frame/compat/bli_blas.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_gemm_check.c b/frame/compat/check/bla_gemm_check.c index 11070cabc..b0d524397 100644 --- a/frame/compat/check/bla_gemm_check.c +++ b/frame/compat/check/bla_gemm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_gemm_check.h b/frame/compat/check/bla_gemm_check.h index 51aff8ea1..4282d947a 100644 --- a/frame/compat/check/bla_gemm_check.h +++ b/frame/compat/check/bla_gemm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_gemv_check.c b/frame/compat/check/bla_gemv_check.c index 4ab1b639f..eec338dc8 100644 --- a/frame/compat/check/bla_gemv_check.c +++ b/frame/compat/check/bla_gemv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_gemv_check.h b/frame/compat/check/bla_gemv_check.h index 6de31d018..a640d6a18 100644 --- a/frame/compat/check/bla_gemv_check.h +++ b/frame/compat/check/bla_gemv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_ger_check.c b/frame/compat/check/bla_ger_check.c index cb0a37b9d..31838d01d 100644 --- a/frame/compat/check/bla_ger_check.c +++ b/frame/compat/check/bla_ger_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_ger_check.h b/frame/compat/check/bla_ger_check.h index cfd55c023..3e1a27f81 100644 --- a/frame/compat/check/bla_ger_check.h +++ b/frame/compat/check/bla_ger_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_hemm_check.c b/frame/compat/check/bla_hemm_check.c index 09ee233ca..f0b1238e0 100644 --- a/frame/compat/check/bla_hemm_check.c +++ b/frame/compat/check/bla_hemm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_hemm_check.h b/frame/compat/check/bla_hemm_check.h index 3acf44824..cf7308678 100644 --- a/frame/compat/check/bla_hemm_check.h +++ b/frame/compat/check/bla_hemm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_hemv_check.c b/frame/compat/check/bla_hemv_check.c index d6e8a55cc..3ca58ef49 100644 --- a/frame/compat/check/bla_hemv_check.c +++ b/frame/compat/check/bla_hemv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_hemv_check.h b/frame/compat/check/bla_hemv_check.h index 347db56cd..9bddec287 100644 --- a/frame/compat/check/bla_hemv_check.h +++ b/frame/compat/check/bla_hemv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_her2_check.c b/frame/compat/check/bla_her2_check.c index f1f286d3b..43396e19b 100644 --- a/frame/compat/check/bla_her2_check.c +++ b/frame/compat/check/bla_her2_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_her2_check.h b/frame/compat/check/bla_her2_check.h index d8947289f..617c1a37f 100644 --- a/frame/compat/check/bla_her2_check.h +++ b/frame/compat/check/bla_her2_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_her2k_check.c b/frame/compat/check/bla_her2k_check.c index 202a6db9a..492bfc9fa 100644 --- a/frame/compat/check/bla_her2k_check.c +++ b/frame/compat/check/bla_her2k_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_her2k_check.h b/frame/compat/check/bla_her2k_check.h index 0c01d2c5e..c67372778 100644 --- a/frame/compat/check/bla_her2k_check.h +++ b/frame/compat/check/bla_her2k_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_her_check.c b/frame/compat/check/bla_her_check.c index 528cf714c..0db28fca2 100644 --- a/frame/compat/check/bla_her_check.c +++ b/frame/compat/check/bla_her_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_her_check.h b/frame/compat/check/bla_her_check.h index 610e04097..d4b69abee 100644 --- a/frame/compat/check/bla_her_check.h +++ b/frame/compat/check/bla_her_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_herk_check.c b/frame/compat/check/bla_herk_check.c index daf261811..dd221bfc7 100644 --- a/frame/compat/check/bla_herk_check.c +++ b/frame/compat/check/bla_herk_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_herk_check.h b/frame/compat/check/bla_herk_check.h index 533dfba10..95f91a114 100644 --- a/frame/compat/check/bla_herk_check.h +++ b/frame/compat/check/bla_herk_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_symm_check.c b/frame/compat/check/bla_symm_check.c index c068d1af8..e95646a24 100644 --- a/frame/compat/check/bla_symm_check.c +++ b/frame/compat/check/bla_symm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_symm_check.h b/frame/compat/check/bla_symm_check.h index 447c5392e..e3d22264f 100644 --- a/frame/compat/check/bla_symm_check.h +++ b/frame/compat/check/bla_symm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_symv_check.c b/frame/compat/check/bla_symv_check.c index 27ce15ded..d9540dfbc 100644 --- a/frame/compat/check/bla_symv_check.c +++ b/frame/compat/check/bla_symv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_symv_check.h b/frame/compat/check/bla_symv_check.h index 4cc194bb2..06d4b92ab 100644 --- a/frame/compat/check/bla_symv_check.h +++ b/frame/compat/check/bla_symv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_syr2_check.c b/frame/compat/check/bla_syr2_check.c index 60b6cdda5..45ecaa799 100644 --- a/frame/compat/check/bla_syr2_check.c +++ b/frame/compat/check/bla_syr2_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_syr2_check.h b/frame/compat/check/bla_syr2_check.h index 3c73ffe26..ab70439ee 100644 --- a/frame/compat/check/bla_syr2_check.h +++ b/frame/compat/check/bla_syr2_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_syr2k_check.c b/frame/compat/check/bla_syr2k_check.c index 73e4f0d88..9182854dc 100644 --- a/frame/compat/check/bla_syr2k_check.c +++ b/frame/compat/check/bla_syr2k_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_syr2k_check.h b/frame/compat/check/bla_syr2k_check.h index 436632b67..e97fff663 100644 --- a/frame/compat/check/bla_syr2k_check.h +++ b/frame/compat/check/bla_syr2k_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_syr_check.c b/frame/compat/check/bla_syr_check.c index f364dbe15..bcd48ff19 100644 --- a/frame/compat/check/bla_syr_check.c +++ b/frame/compat/check/bla_syr_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_syr_check.h b/frame/compat/check/bla_syr_check.h index 249666d7c..b52f80ea7 100644 --- a/frame/compat/check/bla_syr_check.h +++ b/frame/compat/check/bla_syr_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_syrk_check.c b/frame/compat/check/bla_syrk_check.c index 52687e7b0..19f8f7e2e 100644 --- a/frame/compat/check/bla_syrk_check.c +++ b/frame/compat/check/bla_syrk_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_syrk_check.h b/frame/compat/check/bla_syrk_check.h index d24bd1379..f01614079 100644 --- a/frame/compat/check/bla_syrk_check.h +++ b/frame/compat/check/bla_syrk_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_trmm_check.c b/frame/compat/check/bla_trmm_check.c index 5d48225e6..7e8924be7 100644 --- a/frame/compat/check/bla_trmm_check.c +++ b/frame/compat/check/bla_trmm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_trmm_check.h b/frame/compat/check/bla_trmm_check.h index f90a22a02..e6460a820 100644 --- a/frame/compat/check/bla_trmm_check.h +++ b/frame/compat/check/bla_trmm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_trmv_check.c b/frame/compat/check/bla_trmv_check.c index c95911803..9f8b6dc8a 100644 --- a/frame/compat/check/bla_trmv_check.c +++ b/frame/compat/check/bla_trmv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_trmv_check.h b/frame/compat/check/bla_trmv_check.h index 7149620f7..e1cd113ce 100644 --- a/frame/compat/check/bla_trmv_check.h +++ b/frame/compat/check/bla_trmv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_trsm_check.c b/frame/compat/check/bla_trsm_check.c index 8ee7bc52e..4ce1f17fe 100644 --- a/frame/compat/check/bla_trsm_check.c +++ b/frame/compat/check/bla_trsm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_trsm_check.h b/frame/compat/check/bla_trsm_check.h index c4c6f3fb5..7aec9dee3 100644 --- a/frame/compat/check/bla_trsm_check.h +++ b/frame/compat/check/bla_trsm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_trsv_check.c b/frame/compat/check/bla_trsv_check.c index f0086f04a..b456689d8 100644 --- a/frame/compat/check/bla_trsv_check.c +++ b/frame/compat/check/bla_trsv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/check/bla_trsv_check.h b/frame/compat/check/bla_trsv_check.h index e4d5e38b9..9ba97be6b 100644 --- a/frame/compat/check/bla_trsv_check.h +++ b/frame/compat/check/bla_trsv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_gbmv.c b/frame/compat/f2c/bla_gbmv.c index 9c535f776..89a950860 100644 --- a/frame/compat/f2c/bla_gbmv.c +++ b/frame/compat/f2c/bla_gbmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_gbmv.h b/frame/compat/f2c/bla_gbmv.h index 0d1953335..e3fcee1cb 100644 --- a/frame/compat/f2c/bla_gbmv.h +++ b/frame/compat/f2c/bla_gbmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_hbmv.c b/frame/compat/f2c/bla_hbmv.c index 499843f77..fd2bfca8f 100644 --- a/frame/compat/f2c/bla_hbmv.c +++ b/frame/compat/f2c/bla_hbmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_hbmv.h b/frame/compat/f2c/bla_hbmv.h index f53ddd9d2..ed1080e30 100644 --- a/frame/compat/f2c/bla_hbmv.h +++ b/frame/compat/f2c/bla_hbmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_hpmv.c b/frame/compat/f2c/bla_hpmv.c index 0ce7b1d79..07d7086cb 100644 --- a/frame/compat/f2c/bla_hpmv.c +++ b/frame/compat/f2c/bla_hpmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_hpmv.h b/frame/compat/f2c/bla_hpmv.h index 0bd31383e..c97a01616 100644 --- a/frame/compat/f2c/bla_hpmv.h +++ b/frame/compat/f2c/bla_hpmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_hpr.c b/frame/compat/f2c/bla_hpr.c index ddd0428e4..821984ec0 100644 --- a/frame/compat/f2c/bla_hpr.c +++ b/frame/compat/f2c/bla_hpr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_hpr.h b/frame/compat/f2c/bla_hpr.h index 0090b4cf4..8391a3603 100644 --- a/frame/compat/f2c/bla_hpr.h +++ b/frame/compat/f2c/bla_hpr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_hpr2.c b/frame/compat/f2c/bla_hpr2.c index 6505823cf..f3be078ae 100644 --- a/frame/compat/f2c/bla_hpr2.c +++ b/frame/compat/f2c/bla_hpr2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_hpr2.h b/frame/compat/f2c/bla_hpr2.h index b219a471a..2900fce66 100644 --- a/frame/compat/f2c/bla_hpr2.h +++ b/frame/compat/f2c/bla_hpr2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_lsame.c b/frame/compat/f2c/bla_lsame.c index 89c1d9ffe..3321f464e 100644 --- a/frame/compat/f2c/bla_lsame.c +++ b/frame/compat/f2c/bla_lsame.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_lsame.h b/frame/compat/f2c/bla_lsame.h index 2bd8c0e37..ce0e0d220 100644 --- a/frame/compat/f2c/bla_lsame.h +++ b/frame/compat/f2c/bla_lsame.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_rot.c b/frame/compat/f2c/bla_rot.c index e1d9a0723..de8fcc7fe 100644 --- a/frame/compat/f2c/bla_rot.c +++ b/frame/compat/f2c/bla_rot.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_rot.h b/frame/compat/f2c/bla_rot.h index 79b3274af..aa835a385 100644 --- a/frame/compat/f2c/bla_rot.h +++ b/frame/compat/f2c/bla_rot.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_rotg.c b/frame/compat/f2c/bla_rotg.c index 3e09ff8db..05b4257b6 100644 --- a/frame/compat/f2c/bla_rotg.c +++ b/frame/compat/f2c/bla_rotg.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_rotg.h b/frame/compat/f2c/bla_rotg.h index 0bd872381..1bbff7da0 100644 --- a/frame/compat/f2c/bla_rotg.h +++ b/frame/compat/f2c/bla_rotg.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_rotm.c b/frame/compat/f2c/bla_rotm.c index 6c5d60d01..dd606e17a 100644 --- a/frame/compat/f2c/bla_rotm.c +++ b/frame/compat/f2c/bla_rotm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_rotm.h b/frame/compat/f2c/bla_rotm.h index 9a04f7281..9ae26a030 100644 --- a/frame/compat/f2c/bla_rotm.h +++ b/frame/compat/f2c/bla_rotm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_rotmg.c b/frame/compat/f2c/bla_rotmg.c index d8fac89b9..17468b374 100644 --- a/frame/compat/f2c/bla_rotmg.c +++ b/frame/compat/f2c/bla_rotmg.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_rotmg.h b/frame/compat/f2c/bla_rotmg.h index d4ab1da82..ebb57cc0c 100644 --- a/frame/compat/f2c/bla_rotmg.h +++ b/frame/compat/f2c/bla_rotmg.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_sbmv.c b/frame/compat/f2c/bla_sbmv.c index d1c2cff0a..ed60f194d 100644 --- a/frame/compat/f2c/bla_sbmv.c +++ b/frame/compat/f2c/bla_sbmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_sbmv.h b/frame/compat/f2c/bla_sbmv.h index f5463b66e..f9ad77780 100644 --- a/frame/compat/f2c/bla_sbmv.h +++ b/frame/compat/f2c/bla_sbmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_spmv.c b/frame/compat/f2c/bla_spmv.c index 7c616c8d0..4f9d8f53c 100644 --- a/frame/compat/f2c/bla_spmv.c +++ b/frame/compat/f2c/bla_spmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_spmv.h b/frame/compat/f2c/bla_spmv.h index 3449bbd25..d6066308a 100644 --- a/frame/compat/f2c/bla_spmv.h +++ b/frame/compat/f2c/bla_spmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_spr.c b/frame/compat/f2c/bla_spr.c index f336f100b..73f9c4128 100644 --- a/frame/compat/f2c/bla_spr.c +++ b/frame/compat/f2c/bla_spr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_spr.h b/frame/compat/f2c/bla_spr.h index 43592b4c4..e4dda5356 100644 --- a/frame/compat/f2c/bla_spr.h +++ b/frame/compat/f2c/bla_spr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_spr2.c b/frame/compat/f2c/bla_spr2.c index 8adde1edd..56524b8e3 100644 --- a/frame/compat/f2c/bla_spr2.c +++ b/frame/compat/f2c/bla_spr2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_spr2.h b/frame/compat/f2c/bla_spr2.h index bbfeddbf1..fe72d1998 100644 --- a/frame/compat/f2c/bla_spr2.h +++ b/frame/compat/f2c/bla_spr2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_tbmv.c b/frame/compat/f2c/bla_tbmv.c index 1aa7cef4b..58cc97b39 100644 --- a/frame/compat/f2c/bla_tbmv.c +++ b/frame/compat/f2c/bla_tbmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_tbmv.h b/frame/compat/f2c/bla_tbmv.h index 9ae40e99d..d278794ba 100644 --- a/frame/compat/f2c/bla_tbmv.h +++ b/frame/compat/f2c/bla_tbmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_tbsv.c b/frame/compat/f2c/bla_tbsv.c index 7d48baabf..9dfa1c610 100644 --- a/frame/compat/f2c/bla_tbsv.c +++ b/frame/compat/f2c/bla_tbsv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_tbsv.h b/frame/compat/f2c/bla_tbsv.h index 8314eb087..1363301fa 100644 --- a/frame/compat/f2c/bla_tbsv.h +++ b/frame/compat/f2c/bla_tbsv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_tpmv.c b/frame/compat/f2c/bla_tpmv.c index 903a267ee..180add678 100644 --- a/frame/compat/f2c/bla_tpmv.c +++ b/frame/compat/f2c/bla_tpmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_tpmv.h b/frame/compat/f2c/bla_tpmv.h index bed1da0d8..c80f20c3b 100644 --- a/frame/compat/f2c/bla_tpmv.h +++ b/frame/compat/f2c/bla_tpmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_tpsv.c b/frame/compat/f2c/bla_tpsv.c index 80301ea58..ac83b9b77 100644 --- a/frame/compat/f2c/bla_tpsv.c +++ b/frame/compat/f2c/bla_tpsv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_tpsv.h b/frame/compat/f2c/bla_tpsv.h index 9fae101fe..61fbf3695 100644 --- a/frame/compat/f2c/bla_tpsv.h +++ b/frame/compat/f2c/bla_tpsv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_xerbla.c b/frame/compat/f2c/bla_xerbla.c index 193fc5677..1166ddc18 100644 --- a/frame/compat/f2c/bla_xerbla.c +++ b/frame/compat/f2c/bla_xerbla.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/bla_xerbla.h b/frame/compat/f2c/bla_xerbla.h index df819f441..82b4e10dd 100644 --- a/frame/compat/f2c/bla_xerbla.h +++ b/frame/compat/f2c/bla_xerbla.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_c_abs.c b/frame/compat/f2c/util/bla_c_abs.c index 70d84880b..47aa03370 100644 --- a/frame/compat/f2c/util/bla_c_abs.c +++ b/frame/compat/f2c/util/bla_c_abs.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_c_abs.h b/frame/compat/f2c/util/bla_c_abs.h index b7882542f..1efa4ddd4 100644 --- a/frame/compat/f2c/util/bla_c_abs.h +++ b/frame/compat/f2c/util/bla_c_abs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_c_div.c b/frame/compat/f2c/util/bla_c_div.c index d2708dcfc..a1f10f6ab 100644 --- a/frame/compat/f2c/util/bla_c_div.c +++ b/frame/compat/f2c/util/bla_c_div.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_c_div.h b/frame/compat/f2c/util/bla_c_div.h index d53a50641..5be6b025d 100644 --- a/frame/compat/f2c/util/bla_c_div.h +++ b/frame/compat/f2c/util/bla_c_div.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_d_abs.c b/frame/compat/f2c/util/bla_d_abs.c index 5134f8e93..b855579dd 100644 --- a/frame/compat/f2c/util/bla_d_abs.c +++ b/frame/compat/f2c/util/bla_d_abs.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_d_abs.h b/frame/compat/f2c/util/bla_d_abs.h index d447b0fd1..626bf80f0 100644 --- a/frame/compat/f2c/util/bla_d_abs.h +++ b/frame/compat/f2c/util/bla_d_abs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_d_cnjg.c b/frame/compat/f2c/util/bla_d_cnjg.c index e712c5e64..b35b52115 100644 --- a/frame/compat/f2c/util/bla_d_cnjg.c +++ b/frame/compat/f2c/util/bla_d_cnjg.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_d_cnjg.h b/frame/compat/f2c/util/bla_d_cnjg.h index 49753017e..a70b1ecca 100644 --- a/frame/compat/f2c/util/bla_d_cnjg.h +++ b/frame/compat/f2c/util/bla_d_cnjg.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_d_imag.c b/frame/compat/f2c/util/bla_d_imag.c index aa1b8403a..f0d3080de 100644 --- a/frame/compat/f2c/util/bla_d_imag.c +++ b/frame/compat/f2c/util/bla_d_imag.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_d_imag.h b/frame/compat/f2c/util/bla_d_imag.h index f9e75dde0..9fdaed147 100644 --- a/frame/compat/f2c/util/bla_d_imag.h +++ b/frame/compat/f2c/util/bla_d_imag.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_d_sign.c b/frame/compat/f2c/util/bla_d_sign.c index 1750ceb91..2f9be26b7 100644 --- a/frame/compat/f2c/util/bla_d_sign.c +++ b/frame/compat/f2c/util/bla_d_sign.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_d_sign.h b/frame/compat/f2c/util/bla_d_sign.h index e0a9f2ff2..d893dfc50 100644 --- a/frame/compat/f2c/util/bla_d_sign.h +++ b/frame/compat/f2c/util/bla_d_sign.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_f__cabs.c b/frame/compat/f2c/util/bla_f__cabs.c index 1bbe79d7c..7efb3e24f 100644 --- a/frame/compat/f2c/util/bla_f__cabs.c +++ b/frame/compat/f2c/util/bla_f__cabs.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_f__cabs.h b/frame/compat/f2c/util/bla_f__cabs.h index cbd67ded7..7b30f729c 100644 --- a/frame/compat/f2c/util/bla_f__cabs.h +++ b/frame/compat/f2c/util/bla_f__cabs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_r_abs.c b/frame/compat/f2c/util/bla_r_abs.c index 2f09af824..a04eb1210 100644 --- a/frame/compat/f2c/util/bla_r_abs.c +++ b/frame/compat/f2c/util/bla_r_abs.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_r_abs.h b/frame/compat/f2c/util/bla_r_abs.h index 5fa8e71e5..89455a911 100644 --- a/frame/compat/f2c/util/bla_r_abs.h +++ b/frame/compat/f2c/util/bla_r_abs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_r_cnjg.c b/frame/compat/f2c/util/bla_r_cnjg.c index 921484b6e..826ee9b54 100644 --- a/frame/compat/f2c/util/bla_r_cnjg.c +++ b/frame/compat/f2c/util/bla_r_cnjg.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_r_cnjg.h b/frame/compat/f2c/util/bla_r_cnjg.h index cf8be253e..f136d91fb 100644 --- a/frame/compat/f2c/util/bla_r_cnjg.h +++ b/frame/compat/f2c/util/bla_r_cnjg.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_r_imag.c b/frame/compat/f2c/util/bla_r_imag.c index 92be2e7fe..e309fe15a 100644 --- a/frame/compat/f2c/util/bla_r_imag.c +++ b/frame/compat/f2c/util/bla_r_imag.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_r_imag.h b/frame/compat/f2c/util/bla_r_imag.h index 1bc74e16d..2944905d9 100644 --- a/frame/compat/f2c/util/bla_r_imag.h +++ b/frame/compat/f2c/util/bla_r_imag.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_r_sign.c b/frame/compat/f2c/util/bla_r_sign.c index bec7cf80c..65de2a7e8 100644 --- a/frame/compat/f2c/util/bla_r_sign.c +++ b/frame/compat/f2c/util/bla_r_sign.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_r_sign.h b/frame/compat/f2c/util/bla_r_sign.h index a8211bfb2..017ef4d17 100644 --- a/frame/compat/f2c/util/bla_r_sign.h +++ b/frame/compat/f2c/util/bla_r_sign.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_z_abs.c b/frame/compat/f2c/util/bla_z_abs.c index afe72af6f..42f150f0a 100644 --- a/frame/compat/f2c/util/bla_z_abs.c +++ b/frame/compat/f2c/util/bla_z_abs.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_z_abs.h b/frame/compat/f2c/util/bla_z_abs.h index 517b26cea..3056f6f02 100644 --- a/frame/compat/f2c/util/bla_z_abs.h +++ b/frame/compat/f2c/util/bla_z_abs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_z_div.c b/frame/compat/f2c/util/bla_z_div.c index cc58eb3ad..40e6259cb 100644 --- a/frame/compat/f2c/util/bla_z_div.c +++ b/frame/compat/f2c/util/bla_z_div.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/compat/f2c/util/bla_z_div.h b/frame/compat/f2c/util/bla_z_div.h index 3f83aaff5..547969d68 100644 --- a/frame/compat/f2c/util/bla_z_div.h +++ b/frame/compat/f2c/util/bla_z_div.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_auxinfo_macro_defs.h b/frame/include/bli_auxinfo_macro_defs.h index 3e8d162a2..46ac6eaf6 100644 --- a/frame/include/bli_auxinfo_macro_defs.h +++ b/frame/include/bli_auxinfo_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_blas_macro_defs.h b/frame/include/bli_blas_macro_defs.h index 27b642b47..cd3e03a12 100644 --- a/frame/include/bli_blas_macro_defs.h +++ b/frame/include/bli_blas_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_complex_macro_defs.h b/frame/include/bli_complex_macro_defs.h index 93570568c..bfe699279 100644 --- a/frame/include/bli_complex_macro_defs.h +++ b/frame/include/bli_complex_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_error_macro_defs.h b/frame/include/bli_error_macro_defs.h index e47ee0b14..f45f44c56 100644 --- a/frame/include/bli_error_macro_defs.h +++ b/frame/include/bli_error_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_extern_defs.h b/frame/include/bli_extern_defs.h index 78abcc1ff..70e810485 100644 --- a/frame/include/bli_extern_defs.h +++ b/frame/include/bli_extern_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_genarray_macro_defs.h b/frame/include/bli_genarray_macro_defs.h index 6423fbff1..f3ea0b7c3 100644 --- a/frame/include/bli_genarray_macro_defs.h +++ b/frame/include/bli_genarray_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_gentfunc_macro_defs.h b/frame/include/bli_gentfunc_macro_defs.h index 3f57afd43..8b98674a4 100644 --- a/frame/include/bli_gentfunc_macro_defs.h +++ b/frame/include/bli_gentfunc_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_gentprot_macro_defs.h b/frame/include/bli_gentprot_macro_defs.h index 83dc3784f..06955283a 100644 --- a/frame/include/bli_gentprot_macro_defs.h +++ b/frame/include/bli_gentprot_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_kernel_3m_macro_defs.h b/frame/include/bli_kernel_3m_macro_defs.h index 706335115..eb3fc12ed 100644 --- a/frame/include/bli_kernel_3m_macro_defs.h +++ b/frame/include/bli_kernel_3m_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_kernel_4m_macro_defs.h b/frame/include/bli_kernel_4m_macro_defs.h index b8cd8a8f3..96e4b50c6 100644 --- a/frame/include/bli_kernel_4m_macro_defs.h +++ b/frame/include/bli_kernel_4m_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_kernel_macro_defs.h b/frame/include/bli_kernel_macro_defs.h index 580fbbf67..284dbe07a 100644 --- a/frame/include/bli_kernel_macro_defs.h +++ b/frame/include/bli_kernel_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_kernel_post_macro_defs.h b/frame/include/bli_kernel_post_macro_defs.h index e628204b7..45211431b 100644 --- a/frame/include/bli_kernel_post_macro_defs.h +++ b/frame/include/bli_kernel_post_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_kernel_pre_macro_defs.h b/frame/include/bli_kernel_pre_macro_defs.h index ad924d009..9f42af9ee 100644 --- a/frame/include/bli_kernel_pre_macro_defs.h +++ b/frame/include/bli_kernel_pre_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_kernel_prototypes.h b/frame/include/bli_kernel_prototypes.h index a28db4dbc..7607872e7 100644 --- a/frame/include/bli_kernel_prototypes.h +++ b/frame/include/bli_kernel_prototypes.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_kernel_type_defs.h b/frame/include/bli_kernel_type_defs.h index aff3de0a0..2fdf222cc 100644 --- a/frame/include/bli_kernel_type_defs.h +++ b/frame/include/bli_kernel_type_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_macro_defs.h b/frame/include/bli_macro_defs.h index cf9b28bf8..ddab4443b 100644 --- a/frame/include/bli_macro_defs.h +++ b/frame/include/bli_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_mem_macro_defs.h b/frame/include/bli_mem_macro_defs.h index 88a19dbcb..b603fdc63 100644 --- a/frame/include/bli_mem_macro_defs.h +++ b/frame/include/bli_mem_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_mem_pool_macro_defs.h b/frame/include/bli_mem_pool_macro_defs.h index 0af43db1e..fd71d5de1 100644 --- a/frame/include/bli_mem_pool_macro_defs.h +++ b/frame/include/bli_mem_pool_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_obj_macro_defs.h b/frame/include/bli_obj_macro_defs.h index b3294c41d..6cdbce3ad 100644 --- a/frame/include/bli_obj_macro_defs.h +++ b/frame/include/bli_obj_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_param_macro_defs.h b/frame/include/bli_param_macro_defs.h index f0ba952ee..cc63c8e0e 100644 --- a/frame/include/bli_param_macro_defs.h +++ b/frame/include/bli_param_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_pool_macro_defs.h b/frame/include/bli_pool_macro_defs.h index 2407b6553..c958595ae 100644 --- a/frame/include/bli_pool_macro_defs.h +++ b/frame/include/bli_pool_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_scalar_macro_defs.h b/frame/include/bli_scalar_macro_defs.h index 98605276a..c0fd58c53 100644 --- a/frame/include/bli_scalar_macro_defs.h +++ b/frame/include/bli_scalar_macro_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_system.h b/frame/include/bli_system.h index c473a404f..b2098d504 100644 --- a/frame/include/bli_system.h +++ b/frame/include/bli_system.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/bli_type_defs.h b/frame/include/bli_type_defs.h index 4c7122c90..208882a02 100644 --- a/frame/include/bli_type_defs.h +++ b/frame/include/bli_type_defs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/blis.h b/frame/include/blis.h index 6ce853114..e112b0be7 100644 --- a/frame/include/blis.h +++ b/frame/include/blis.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_absq2s.h b/frame/include/level0/bli_absq2s.h index 091c606ed..b6d7766df 100644 --- a/frame/include/level0/bli_absq2s.h +++ b/frame/include/level0/bli_absq2s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_abval2s.h b/frame/include/level0/bli_abval2s.h index 899422182..7e0556940 100644 --- a/frame/include/level0/bli_abval2s.h +++ b/frame/include/level0/bli_abval2s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_add3s.h b/frame/include/level0/bli_add3s.h index ad9472899..60443e925 100644 --- a/frame/include/level0/bli_add3s.h +++ b/frame/include/level0/bli_add3s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_addjs.h b/frame/include/level0/bli_addjs.h index ccfbe04cf..df4703c28 100644 --- a/frame/include/level0/bli_addjs.h +++ b/frame/include/level0/bli_addjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_adds.h b/frame/include/level0/bli_adds.h index 0a6315f89..13ce058e8 100644 --- a/frame/include/level0/bli_adds.h +++ b/frame/include/level0/bli_adds.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_adds_mxn.h b/frame/include/level0/bli_adds_mxn.h index a8676fcaf..7eae7916f 100644 --- a/frame/include/level0/bli_adds_mxn.h +++ b/frame/include/level0/bli_adds_mxn.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_adds_mxn_uplo.h b/frame/include/level0/bli_adds_mxn_uplo.h index cffc87286..9ba599d58 100644 --- a/frame/include/level0/bli_adds_mxn_uplo.h +++ b/frame/include/level0/bli_adds_mxn_uplo.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_axmys.h b/frame/include/level0/bli_axmys.h index 146f58e3a..77e6d986c 100644 --- a/frame/include/level0/bli_axmys.h +++ b/frame/include/level0/bli_axmys.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_axpyjs.h b/frame/include/level0/bli_axpyjs.h index 378ff7873..ebe9cb525 100644 --- a/frame/include/level0/bli_axpyjs.h +++ b/frame/include/level0/bli_axpyjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_axpys.h b/frame/include/level0/bli_axpys.h index f0b2ef465..a9f7692ab 100644 --- a/frame/include/level0/bli_axpys.h +++ b/frame/include/level0/bli_axpys.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_cast.h b/frame/include/level0/bli_cast.h index 8a90cef72..500aaf059 100644 --- a/frame/include/level0/bli_cast.h +++ b/frame/include/level0/bli_cast.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_conjs.h b/frame/include/level0/bli_conjs.h index ece0245c0..a267dd57a 100644 --- a/frame/include/level0/bli_conjs.h +++ b/frame/include/level0/bli_conjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_constants.h b/frame/include/level0/bli_constants.h index 840a5fb6d..9c38d96d1 100644 --- a/frame/include/level0/bli_constants.h +++ b/frame/include/level0/bli_constants.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_copycjs.h b/frame/include/level0/bli_copycjs.h index 699839ec6..d62c9a042 100644 --- a/frame/include/level0/bli_copycjs.h +++ b/frame/include/level0/bli_copycjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_copyjs.h b/frame/include/level0/bli_copyjs.h index 55f92d2da..4f97193b1 100644 --- a/frame/include/level0/bli_copyjs.h +++ b/frame/include/level0/bli_copyjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_copys.h b/frame/include/level0/bli_copys.h index 9cb6e0233..80154c2cb 100644 --- a/frame/include/level0/bli_copys.h +++ b/frame/include/level0/bli_copys.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_copys_mxn.h b/frame/include/level0/bli_copys_mxn.h index 388a06694..f2473ae4f 100644 --- a/frame/include/level0/bli_copys_mxn.h +++ b/frame/include/level0/bli_copys_mxn.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_dotjs.h b/frame/include/level0/bli_dotjs.h index b88b0f054..e5cacba8b 100644 --- a/frame/include/level0/bli_dotjs.h +++ b/frame/include/level0/bli_dotjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_dots.h b/frame/include/level0/bli_dots.h index 2aea2d784..d0e94510f 100644 --- a/frame/include/level0/bli_dots.h +++ b/frame/include/level0/bli_dots.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_eq.h b/frame/include/level0/bli_eq.h index b9ba13005..e470a65fa 100644 --- a/frame/include/level0/bli_eq.h +++ b/frame/include/level0/bli_eq.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_fprints.h b/frame/include/level0/bli_fprints.h index 4d9952f90..0cc28a003 100644 --- a/frame/include/level0/bli_fprints.h +++ b/frame/include/level0/bli_fprints.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_gets.h b/frame/include/level0/bli_gets.h index 4b8497e76..36e9af5c3 100644 --- a/frame/include/level0/bli_gets.h +++ b/frame/include/level0/bli_gets.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_inverts.h b/frame/include/level0/bli_inverts.h index d4e97dd22..f83fa6d90 100644 --- a/frame/include/level0/bli_inverts.h +++ b/frame/include/level0/bli_inverts.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_invscaljs.h b/frame/include/level0/bli_invscaljs.h index e859787c9..2871cbb24 100644 --- a/frame/include/level0/bli_invscaljs.h +++ b/frame/include/level0/bli_invscaljs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_invscals.h b/frame/include/level0/bli_invscals.h index b7a3b37fe..2165cf6df 100644 --- a/frame/include/level0/bli_invscals.h +++ b/frame/include/level0/bli_invscals.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_neg2s.h b/frame/include/level0/bli_neg2s.h index 95e4afac1..e1df8b0d6 100644 --- a/frame/include/level0/bli_neg2s.h +++ b/frame/include/level0/bli_neg2s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_rands.h b/frame/include/level0/bli_rands.h index 157fd421b..2626be60e 100644 --- a/frame/include/level0/bli_rands.h +++ b/frame/include/level0/bli_rands.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_scal2js.h b/frame/include/level0/bli_scal2js.h index f27e5742d..768dabe25 100644 --- a/frame/include/level0/bli_scal2js.h +++ b/frame/include/level0/bli_scal2js.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_scal2s.h b/frame/include/level0/bli_scal2s.h index 3d7292696..688af4e51 100644 --- a/frame/include/level0/bli_scal2s.h +++ b/frame/include/level0/bli_scal2s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_scalcjs.h b/frame/include/level0/bli_scalcjs.h index bddb7e859..d2a6ec488 100644 --- a/frame/include/level0/bli_scalcjs.h +++ b/frame/include/level0/bli_scalcjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_scaljs.h b/frame/include/level0/bli_scaljs.h index 5dfd8e6ec..6780e894a 100644 --- a/frame/include/level0/bli_scaljs.h +++ b/frame/include/level0/bli_scaljs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_scals.h b/frame/include/level0/bli_scals.h index eb78be531..c24aef73a 100644 --- a/frame/include/level0/bli_scals.h +++ b/frame/include/level0/bli_scals.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_set0s.h b/frame/include/level0/bli_set0s.h index 55bdba683..08ec6026c 100644 --- a/frame/include/level0/bli_set0s.h +++ b/frame/include/level0/bli_set0s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_set0s_mxn.h b/frame/include/level0/bli_set0s_mxn.h index 94887d571..a4a286630 100644 --- a/frame/include/level0/bli_set0s_mxn.h +++ b/frame/include/level0/bli_set0s_mxn.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_set1s.h b/frame/include/level0/bli_set1s.h index 3bf7377bf..5a2eb0390 100644 --- a/frame/include/level0/bli_set1s.h +++ b/frame/include/level0/bli_set1s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_seti0s.h b/frame/include/level0/bli_seti0s.h index a658547c7..50ff44ee4 100644 --- a/frame/include/level0/bli_seti0s.h +++ b/frame/include/level0/bli_seti0s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_setis.h b/frame/include/level0/bli_setis.h index c246dead5..d55f7c16a 100644 --- a/frame/include/level0/bli_setis.h +++ b/frame/include/level0/bli_setis.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_setrs.h b/frame/include/level0/bli_setrs.h index ed9be8adb..3cf2dcbd7 100644 --- a/frame/include/level0/bli_setrs.h +++ b/frame/include/level0/bli_setrs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_sets.h b/frame/include/level0/bli_sets.h index c836c5aca..551d03025 100644 --- a/frame/include/level0/bli_sets.h +++ b/frame/include/level0/bli_sets.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_sqrt2s.h b/frame/include/level0/bli_sqrt2s.h index 38b2fba48..c4ed8d85a 100644 --- a/frame/include/level0/bli_sqrt2s.h +++ b/frame/include/level0/bli_sqrt2s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_subjs.h b/frame/include/level0/bli_subjs.h index a70504b33..987086af2 100644 --- a/frame/include/level0/bli_subjs.h +++ b/frame/include/level0/bli_subjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_subs.h b/frame/include/level0/bli_subs.h index 255cc8454..625f71c85 100644 --- a/frame/include/level0/bli_subs.h +++ b/frame/include/level0/bli_subs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_swaps.h b/frame/include/level0/bli_swaps.h index 2301e99d7..2dfeb0aff 100644 --- a/frame/include/level0/bli_swaps.h +++ b/frame/include/level0/bli_swaps.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_xpbys.h b/frame/include/level0/bli_xpbys.h index e1d500c29..9108a9fc4 100644 --- a/frame/include/level0/bli_xpbys.h +++ b/frame/include/level0/bli_xpbys.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_xpbys_mxn.h b/frame/include/level0/bli_xpbys_mxn.h index 96def1070..9bcf137a5 100644 --- a/frame/include/level0/bli_xpbys_mxn.h +++ b/frame/include/level0/bli_xpbys_mxn.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/bli_xpbys_mxn_uplo.h b/frame/include/level0/bli_xpbys_mxn_uplo.h index 1f5d0fb02..9bd5954f0 100644 --- a/frame/include/level0/bli_xpbys_mxn_uplo.h +++ b/frame/include/level0/bli_xpbys_mxn_uplo.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/old/bli_castfrom.h b/frame/include/level0/old/bli_castfrom.h index ca466ece9..c393608c4 100644 --- a/frame/include/level0/old/bli_castfrom.h +++ b/frame/include/level0/old/bli_castfrom.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/old/bli_castto.h b/frame/include/level0/old/bli_castto.h index ca466ece9..c393608c4 100644 --- a/frame/include/level0/old/bli_castto.h +++ b/frame/include/level0/old/bli_castto.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/old/bli_copynzjs.h b/frame/include/level0/old/bli_copynzjs.h index 494ae1a74..ad5e1ef1e 100644 --- a/frame/include/level0/old/bli_copynzjs.h +++ b/frame/include/level0/old/bli_copynzjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/old/bli_copynzs.h b/frame/include/level0/old/bli_copynzs.h index 44547b74c..1a29ae3d1 100644 --- a/frame/include/level0/old/bli_copynzs.h +++ b/frame/include/level0/old/bli_copynzs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/old/bli_invscalcjs.h b/frame/include/level0/old/bli_invscalcjs.h index faa74c930..3195224ea 100644 --- a/frame/include/level0/old/bli_invscalcjs.h +++ b/frame/include/level0/old/bli_invscalcjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/old/bli_scalcjs.h b/frame/include/level0/old/bli_scalcjs.h index e2fde9ca5..6cd9f9873 100644 --- a/frame/include/level0/old/bli_scalcjs.h +++ b/frame/include/level0/old/bli_scalcjs.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/old/bli_set0ris_mxn.h b/frame/include/level0/old/bli_set0ris_mxn.h index 6f2a379a1..64e17bfc2 100644 --- a/frame/include/level0/old/bli_set0ris_mxn.h +++ b/frame/include/level0/old/bli_set0ris_mxn.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_absq2ris.h b/frame/include/level0/ri/bli_absq2ris.h index b7e441c3d..7560880a1 100644 --- a/frame/include/level0/ri/bli_absq2ris.h +++ b/frame/include/level0/ri/bli_absq2ris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_abval2ris.h b/frame/include/level0/ri/bli_abval2ris.h index 7007a04a5..2fc551e66 100644 --- a/frame/include/level0/ri/bli_abval2ris.h +++ b/frame/include/level0/ri/bli_abval2ris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_add3ris.h b/frame/include/level0/ri/bli_add3ris.h index 37cb84a93..8ecba2ffd 100644 --- a/frame/include/level0/ri/bli_add3ris.h +++ b/frame/include/level0/ri/bli_add3ris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_addjris.h b/frame/include/level0/ri/bli_addjris.h index f110146c2..309b106d9 100644 --- a/frame/include/level0/ri/bli_addjris.h +++ b/frame/include/level0/ri/bli_addjris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_addris.h b/frame/include/level0/ri/bli_addris.h index 7b4451b58..e92e4bec8 100644 --- a/frame/include/level0/ri/bli_addris.h +++ b/frame/include/level0/ri/bli_addris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_axmyris.h b/frame/include/level0/ri/bli_axmyris.h index 98940c9b2..3829c5291 100644 --- a/frame/include/level0/ri/bli_axmyris.h +++ b/frame/include/level0/ri/bli_axmyris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_axpbyris.h b/frame/include/level0/ri/bli_axpbyris.h index 6997f745f..2303db350 100644 --- a/frame/include/level0/ri/bli_axpbyris.h +++ b/frame/include/level0/ri/bli_axpbyris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_axpyjris.h b/frame/include/level0/ri/bli_axpyjris.h index 2b3ed42b7..0eb1ca799 100644 --- a/frame/include/level0/ri/bli_axpyjris.h +++ b/frame/include/level0/ri/bli_axpyjris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_axpyris.h b/frame/include/level0/ri/bli_axpyris.h index ebcf6666f..4542298a3 100644 --- a/frame/include/level0/ri/bli_axpyris.h +++ b/frame/include/level0/ri/bli_axpyris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_conjris.h b/frame/include/level0/ri/bli_conjris.h index 425b41534..4d9cf59ac 100644 --- a/frame/include/level0/ri/bli_conjris.h +++ b/frame/include/level0/ri/bli_conjris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_copycjris.h b/frame/include/level0/ri/bli_copycjris.h index 5176553ea..dede66560 100644 --- a/frame/include/level0/ri/bli_copycjris.h +++ b/frame/include/level0/ri/bli_copycjris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_copyjris.h b/frame/include/level0/ri/bli_copyjris.h index 2ba3a1920..7db9e713b 100644 --- a/frame/include/level0/ri/bli_copyjris.h +++ b/frame/include/level0/ri/bli_copyjris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_copyris.h b/frame/include/level0/ri/bli_copyris.h index 625d48a32..9f118ff0e 100644 --- a/frame/include/level0/ri/bli_copyris.h +++ b/frame/include/level0/ri/bli_copyris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_eqri.h b/frame/include/level0/ri/bli_eqri.h index f89c45b37..0f196de37 100644 --- a/frame/include/level0/ri/bli_eqri.h +++ b/frame/include/level0/ri/bli_eqri.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_invertris.h b/frame/include/level0/ri/bli_invertris.h index ced294e78..7a59bad4e 100644 --- a/frame/include/level0/ri/bli_invertris.h +++ b/frame/include/level0/ri/bli_invertris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_invscaljris.h b/frame/include/level0/ri/bli_invscaljris.h index f311d0209..54369ce12 100644 --- a/frame/include/level0/ri/bli_invscaljris.h +++ b/frame/include/level0/ri/bli_invscaljris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_invscalris.h b/frame/include/level0/ri/bli_invscalris.h index 1b2d7f3ba..ddfc99567 100644 --- a/frame/include/level0/ri/bli_invscalris.h +++ b/frame/include/level0/ri/bli_invscalris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_neg2ris.h b/frame/include/level0/ri/bli_neg2ris.h index 5fe771c90..0e438a114 100644 --- a/frame/include/level0/ri/bli_neg2ris.h +++ b/frame/include/level0/ri/bli_neg2ris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_scal2jris.h b/frame/include/level0/ri/bli_scal2jris.h index f289eb564..aeb0aa735 100644 --- a/frame/include/level0/ri/bli_scal2jris.h +++ b/frame/include/level0/ri/bli_scal2jris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_scal2ris.h b/frame/include/level0/ri/bli_scal2ris.h index f7df79f8f..d395f38d4 100644 --- a/frame/include/level0/ri/bli_scal2ris.h +++ b/frame/include/level0/ri/bli_scal2ris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_scalcjris.h b/frame/include/level0/ri/bli_scalcjris.h index 69f000e2d..0470639e8 100644 --- a/frame/include/level0/ri/bli_scalcjris.h +++ b/frame/include/level0/ri/bli_scalcjris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_scaljris.h b/frame/include/level0/ri/bli_scaljris.h index 0cd3dfe81..991572078 100644 --- a/frame/include/level0/ri/bli_scaljris.h +++ b/frame/include/level0/ri/bli_scaljris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_scalris.h b/frame/include/level0/ri/bli_scalris.h index 23a489cfb..f007b38b8 100644 --- a/frame/include/level0/ri/bli_scalris.h +++ b/frame/include/level0/ri/bli_scalris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_scalris_mxn_uplo.h b/frame/include/level0/ri/bli_scalris_mxn_uplo.h index 616511e97..40d36ba8b 100644 --- a/frame/include/level0/ri/bli_scalris_mxn_uplo.h +++ b/frame/include/level0/ri/bli_scalris_mxn_uplo.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_set0ris.h b/frame/include/level0/ri/bli_set0ris.h index 846ee6dc9..6f9f11c74 100644 --- a/frame/include/level0/ri/bli_set0ris.h +++ b/frame/include/level0/ri/bli_set0ris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_sqrt2ris.h b/frame/include/level0/ri/bli_sqrt2ris.h index c211fea0e..22a2ff9fd 100644 --- a/frame/include/level0/ri/bli_sqrt2ris.h +++ b/frame/include/level0/ri/bli_sqrt2ris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_subjris.h b/frame/include/level0/ri/bli_subjris.h index b688b9a15..7aaf7741c 100644 --- a/frame/include/level0/ri/bli_subjris.h +++ b/frame/include/level0/ri/bli_subjris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_subris.h b/frame/include/level0/ri/bli_subris.h index bc3a61d1a..a2280ebdd 100644 --- a/frame/include/level0/ri/bli_subris.h +++ b/frame/include/level0/ri/bli_subris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_swapris.h b/frame/include/level0/ri/bli_swapris.h index 96cd08597..c5818bd73 100644 --- a/frame/include/level0/ri/bli_swapris.h +++ b/frame/include/level0/ri/bli_swapris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri/bli_xpbyris.h b/frame/include/level0/ri/bli_xpbyris.h index 55b0ca68f..826cd7a5a 100644 --- a/frame/include/level0/ri/bli_xpbyris.h +++ b/frame/include/level0/ri/bli_xpbyris.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri3/bli_copyjri3s.h b/frame/include/level0/ri3/bli_copyjri3s.h index 9cb1a5171..72aa38138 100644 --- a/frame/include/level0/ri3/bli_copyjri3s.h +++ b/frame/include/level0/ri3/bli_copyjri3s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri3/bli_copyri3s.h b/frame/include/level0/ri3/bli_copyri3s.h index 408f813b2..b761980f2 100644 --- a/frame/include/level0/ri3/bli_copyri3s.h +++ b/frame/include/level0/ri3/bli_copyri3s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri3/bli_scal2jri3s.h b/frame/include/level0/ri3/bli_scal2jri3s.h index b69d5c350..b5c61e9bb 100644 --- a/frame/include/level0/ri3/bli_scal2jri3s.h +++ b/frame/include/level0/ri3/bli_scal2jri3s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/include/level0/ri3/bli_scal2ri3s.h b/frame/include/level0/ri3/bli_scal2ri3s.h index 33c44ccd4..51e9deae3 100644 --- a/frame/include/level0/ri3/bli_scal2ri3s.h +++ b/frame/include/level0/ri3/bli_scal2ri3s.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/amaxv/bli_amaxv.c b/frame/util/amaxv/bli_amaxv.c index c8a40c6c2..2879515ce 100644 --- a/frame/util/amaxv/bli_amaxv.c +++ b/frame/util/amaxv/bli_amaxv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/amaxv/bli_amaxv.h b/frame/util/amaxv/bli_amaxv.h index 11361e031..9f5b8ca8c 100644 --- a/frame/util/amaxv/bli_amaxv.h +++ b/frame/util/amaxv/bli_amaxv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/amaxv/bli_amaxv_check.c b/frame/util/amaxv/bli_amaxv_check.c index e10d576e1..5d8c6585c 100644 --- a/frame/util/amaxv/bli_amaxv_check.c +++ b/frame/util/amaxv/bli_amaxv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/amaxv/bli_amaxv_check.h b/frame/util/amaxv/bli_amaxv_check.h index 6fb2067a6..8d2321f7a 100644 --- a/frame/util/amaxv/bli_amaxv_check.h +++ b/frame/util/amaxv/bli_amaxv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/amaxv/bli_amaxv_unb_var1.c b/frame/util/amaxv/bli_amaxv_unb_var1.c index ab18259b0..41f672eb8 100644 --- a/frame/util/amaxv/bli_amaxv_unb_var1.c +++ b/frame/util/amaxv/bli_amaxv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/amaxv/bli_amaxv_unb_var1.h b/frame/util/amaxv/bli_amaxv_unb_var1.h index 880f0ff02..12cc7a6d5 100644 --- a/frame/util/amaxv/bli_amaxv_unb_var1.h +++ b/frame/util/amaxv/bli_amaxv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/asumv/bli_asumv.c b/frame/util/asumv/bli_asumv.c index 60ca13946..05d9fd8f2 100644 --- a/frame/util/asumv/bli_asumv.c +++ b/frame/util/asumv/bli_asumv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/asumv/bli_asumv.h b/frame/util/asumv/bli_asumv.h index 38473903f..490a6a260 100644 --- a/frame/util/asumv/bli_asumv.h +++ b/frame/util/asumv/bli_asumv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/asumv/bli_asumv_check.c b/frame/util/asumv/bli_asumv_check.c index c40344c97..23d1d9e04 100644 --- a/frame/util/asumv/bli_asumv_check.c +++ b/frame/util/asumv/bli_asumv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/asumv/bli_asumv_check.h b/frame/util/asumv/bli_asumv_check.h index f90e6ba55..20cda80a2 100644 --- a/frame/util/asumv/bli_asumv_check.h +++ b/frame/util/asumv/bli_asumv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/asumv/bli_asumv_unb_var1.c b/frame/util/asumv/bli_asumv_unb_var1.c index 47492e0e6..5845a8720 100644 --- a/frame/util/asumv/bli_asumv_unb_var1.c +++ b/frame/util/asumv/bli_asumv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/asumv/bli_asumv_unb_var1.h b/frame/util/asumv/bli_asumv_unb_var1.h index c0b2608b9..c92e4ce21 100644 --- a/frame/util/asumv/bli_asumv_unb_var1.h +++ b/frame/util/asumv/bli_asumv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mkherm/bli_mkherm.c b/frame/util/mkherm/bli_mkherm.c index 64ed3ffb4..39542f480 100644 --- a/frame/util/mkherm/bli_mkherm.c +++ b/frame/util/mkherm/bli_mkherm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mkherm/bli_mkherm.h b/frame/util/mkherm/bli_mkherm.h index 0b81fc17c..421a37cb3 100644 --- a/frame/util/mkherm/bli_mkherm.h +++ b/frame/util/mkherm/bli_mkherm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mkherm/bli_mkherm_check.c b/frame/util/mkherm/bli_mkherm_check.c index 382f9c7f1..dfe92f49b 100644 --- a/frame/util/mkherm/bli_mkherm_check.c +++ b/frame/util/mkherm/bli_mkherm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mkherm/bli_mkherm_check.h b/frame/util/mkherm/bli_mkherm_check.h index 0e0fdb065..fc4f591ba 100644 --- a/frame/util/mkherm/bli_mkherm_check.h +++ b/frame/util/mkherm/bli_mkherm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mkherm/bli_mkherm_unb_var1.c b/frame/util/mkherm/bli_mkherm_unb_var1.c index 667eea763..0df89a777 100644 --- a/frame/util/mkherm/bli_mkherm_unb_var1.c +++ b/frame/util/mkherm/bli_mkherm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mkherm/bli_mkherm_unb_var1.h b/frame/util/mkherm/bli_mkherm_unb_var1.h index 38971224e..319151cb1 100644 --- a/frame/util/mkherm/bli_mkherm_unb_var1.h +++ b/frame/util/mkherm/bli_mkherm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mksymm/bli_mksymm.c b/frame/util/mksymm/bli_mksymm.c index 03d96a1ee..a079fd3f2 100644 --- a/frame/util/mksymm/bli_mksymm.c +++ b/frame/util/mksymm/bli_mksymm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mksymm/bli_mksymm.h b/frame/util/mksymm/bli_mksymm.h index 86d7f36f3..1323280e2 100644 --- a/frame/util/mksymm/bli_mksymm.h +++ b/frame/util/mksymm/bli_mksymm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mksymm/bli_mksymm_check.c b/frame/util/mksymm/bli_mksymm_check.c index 1779e0c3b..ea1280448 100644 --- a/frame/util/mksymm/bli_mksymm_check.c +++ b/frame/util/mksymm/bli_mksymm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mksymm/bli_mksymm_check.h b/frame/util/mksymm/bli_mksymm_check.h index 792c29514..132155a5b 100644 --- a/frame/util/mksymm/bli_mksymm_check.h +++ b/frame/util/mksymm/bli_mksymm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mksymm/bli_mksymm_unb_var1.c b/frame/util/mksymm/bli_mksymm_unb_var1.c index df4ec426f..a7a96694c 100644 --- a/frame/util/mksymm/bli_mksymm_unb_var1.c +++ b/frame/util/mksymm/bli_mksymm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mksymm/bli_mksymm_unb_var1.h b/frame/util/mksymm/bli_mksymm_unb_var1.h index 8c5a61132..5d646a90a 100644 --- a/frame/util/mksymm/bli_mksymm_unb_var1.h +++ b/frame/util/mksymm/bli_mksymm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mktrim/bli_mktrim.c b/frame/util/mktrim/bli_mktrim.c index 7493d9e09..6e5915f78 100644 --- a/frame/util/mktrim/bli_mktrim.c +++ b/frame/util/mktrim/bli_mktrim.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mktrim/bli_mktrim.h b/frame/util/mktrim/bli_mktrim.h index 36e184a81..f9cec7ee4 100644 --- a/frame/util/mktrim/bli_mktrim.h +++ b/frame/util/mktrim/bli_mktrim.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mktrim/bli_mktrim_check.c b/frame/util/mktrim/bli_mktrim_check.c index 47f2a7418..3ea42848c 100644 --- a/frame/util/mktrim/bli_mktrim_check.c +++ b/frame/util/mktrim/bli_mktrim_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mktrim/bli_mktrim_check.h b/frame/util/mktrim/bli_mktrim_check.h index b55bdfc17..16c67a760 100644 --- a/frame/util/mktrim/bli_mktrim_check.h +++ b/frame/util/mktrim/bli_mktrim_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mktrim/bli_mktrim_unb_var1.c b/frame/util/mktrim/bli_mktrim_unb_var1.c index feb23fb92..ad39ce5cf 100644 --- a/frame/util/mktrim/bli_mktrim_unb_var1.c +++ b/frame/util/mktrim/bli_mktrim_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/mktrim/bli_mktrim_unb_var1.h b/frame/util/mktrim/bli_mktrim_unb_var1.h index 40be65670..62c5f190d 100644 --- a/frame/util/mktrim/bli_mktrim_unb_var1.h +++ b/frame/util/mktrim/bli_mktrim_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1m/bli_norm1m.c b/frame/util/norm1m/bli_norm1m.c index 8ad57eeba..54c989367 100644 --- a/frame/util/norm1m/bli_norm1m.c +++ b/frame/util/norm1m/bli_norm1m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1m/bli_norm1m.h b/frame/util/norm1m/bli_norm1m.h index 40c3e5cb0..438ac4273 100644 --- a/frame/util/norm1m/bli_norm1m.h +++ b/frame/util/norm1m/bli_norm1m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1m/bli_norm1m_check.c b/frame/util/norm1m/bli_norm1m_check.c index ae76b121e..62702297c 100644 --- a/frame/util/norm1m/bli_norm1m_check.c +++ b/frame/util/norm1m/bli_norm1m_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1m/bli_norm1m_check.h b/frame/util/norm1m/bli_norm1m_check.h index 38290728a..f6258836c 100644 --- a/frame/util/norm1m/bli_norm1m_check.h +++ b/frame/util/norm1m/bli_norm1m_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1m/bli_norm1m_unb_var1.c b/frame/util/norm1m/bli_norm1m_unb_var1.c index 639e7b7c6..976692e9f 100644 --- a/frame/util/norm1m/bli_norm1m_unb_var1.c +++ b/frame/util/norm1m/bli_norm1m_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1m/bli_norm1m_unb_var1.h b/frame/util/norm1m/bli_norm1m_unb_var1.h index eed5b1fa5..1ac6e1a58 100644 --- a/frame/util/norm1m/bli_norm1m_unb_var1.h +++ b/frame/util/norm1m/bli_norm1m_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1v/bli_norm1v.c b/frame/util/norm1v/bli_norm1v.c index 782bb6eb9..73ff4680d 100644 --- a/frame/util/norm1v/bli_norm1v.c +++ b/frame/util/norm1v/bli_norm1v.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1v/bli_norm1v.h b/frame/util/norm1v/bli_norm1v.h index 051a99ff4..abbf5c60e 100644 --- a/frame/util/norm1v/bli_norm1v.h +++ b/frame/util/norm1v/bli_norm1v.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1v/bli_norm1v_check.c b/frame/util/norm1v/bli_norm1v_check.c index 2f4489b23..1c5021403 100644 --- a/frame/util/norm1v/bli_norm1v_check.c +++ b/frame/util/norm1v/bli_norm1v_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1v/bli_norm1v_check.h b/frame/util/norm1v/bli_norm1v_check.h index 8098b54c8..8c39b13f6 100644 --- a/frame/util/norm1v/bli_norm1v_check.h +++ b/frame/util/norm1v/bli_norm1v_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1v/bli_norm1v_unb_var1.c b/frame/util/norm1v/bli_norm1v_unb_var1.c index 8d18ebdea..4c487f32c 100644 --- a/frame/util/norm1v/bli_norm1v_unb_var1.c +++ b/frame/util/norm1v/bli_norm1v_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/norm1v/bli_norm1v_unb_var1.h b/frame/util/norm1v/bli_norm1v_unb_var1.h index 1631e551a..fd2fb555f 100644 --- a/frame/util/norm1v/bli_norm1v_unb_var1.h +++ b/frame/util/norm1v/bli_norm1v_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfm/bli_normfm.c b/frame/util/normfm/bli_normfm.c index 90f832bd6..4342a7022 100644 --- a/frame/util/normfm/bli_normfm.c +++ b/frame/util/normfm/bli_normfm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfm/bli_normfm.h b/frame/util/normfm/bli_normfm.h index 2d95fe0ef..028ce1345 100644 --- a/frame/util/normfm/bli_normfm.h +++ b/frame/util/normfm/bli_normfm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfm/bli_normfm_check.c b/frame/util/normfm/bli_normfm_check.c index 2c6f654a7..9f7ab239f 100644 --- a/frame/util/normfm/bli_normfm_check.c +++ b/frame/util/normfm/bli_normfm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfm/bli_normfm_check.h b/frame/util/normfm/bli_normfm_check.h index 91070a091..98922f14b 100644 --- a/frame/util/normfm/bli_normfm_check.h +++ b/frame/util/normfm/bli_normfm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfm/bli_normfm_unb_var1.c b/frame/util/normfm/bli_normfm_unb_var1.c index 72df52cb1..78ffbb1ec 100644 --- a/frame/util/normfm/bli_normfm_unb_var1.c +++ b/frame/util/normfm/bli_normfm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfm/bli_normfm_unb_var1.h b/frame/util/normfm/bli_normfm_unb_var1.h index 72a882290..2dc97f6c9 100644 --- a/frame/util/normfm/bli_normfm_unb_var1.h +++ b/frame/util/normfm/bli_normfm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfv/bli_normfv.c b/frame/util/normfv/bli_normfv.c index b70527206..6bedc7dcd 100644 --- a/frame/util/normfv/bli_normfv.c +++ b/frame/util/normfv/bli_normfv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfv/bli_normfv.h b/frame/util/normfv/bli_normfv.h index 0698e0c1e..32686fce3 100644 --- a/frame/util/normfv/bli_normfv.h +++ b/frame/util/normfv/bli_normfv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfv/bli_normfv_check.c b/frame/util/normfv/bli_normfv_check.c index f50953cf5..c2d745f64 100644 --- a/frame/util/normfv/bli_normfv_check.c +++ b/frame/util/normfv/bli_normfv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfv/bli_normfv_check.h b/frame/util/normfv/bli_normfv_check.h index 57fdc83af..d396650f5 100644 --- a/frame/util/normfv/bli_normfv_check.h +++ b/frame/util/normfv/bli_normfv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfv/bli_normfv_unb_var1.c b/frame/util/normfv/bli_normfv_unb_var1.c index c3f812213..391d60ddd 100644 --- a/frame/util/normfv/bli_normfv_unb_var1.c +++ b/frame/util/normfv/bli_normfv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normfv/bli_normfv_unb_var1.h b/frame/util/normfv/bli_normfv_unb_var1.h index 3f57a3e15..ab20d2d2a 100644 --- a/frame/util/normfv/bli_normfv_unb_var1.h +++ b/frame/util/normfv/bli_normfv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normim/bli_normim.c b/frame/util/normim/bli_normim.c index 5be66b0fc..30a3d6abb 100644 --- a/frame/util/normim/bli_normim.c +++ b/frame/util/normim/bli_normim.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normim/bli_normim.h b/frame/util/normim/bli_normim.h index ec64b068d..949e3e310 100644 --- a/frame/util/normim/bli_normim.h +++ b/frame/util/normim/bli_normim.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normim/bli_normim_check.c b/frame/util/normim/bli_normim_check.c index d29df8b57..80d5f412f 100644 --- a/frame/util/normim/bli_normim_check.c +++ b/frame/util/normim/bli_normim_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normim/bli_normim_check.h b/frame/util/normim/bli_normim_check.h index 7b0bb2529..1d6b90b2f 100644 --- a/frame/util/normim/bli_normim_check.h +++ b/frame/util/normim/bli_normim_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normim/bli_normim_unb_var1.c b/frame/util/normim/bli_normim_unb_var1.c index fb65d8bcd..78a320ba8 100644 --- a/frame/util/normim/bli_normim_unb_var1.c +++ b/frame/util/normim/bli_normim_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normim/bli_normim_unb_var1.h b/frame/util/normim/bli_normim_unb_var1.h index e2d63ad8a..fc8ae6ca8 100644 --- a/frame/util/normim/bli_normim_unb_var1.h +++ b/frame/util/normim/bli_normim_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normiv/bli_normiv.c b/frame/util/normiv/bli_normiv.c index 00c9461a8..b2a770563 100644 --- a/frame/util/normiv/bli_normiv.c +++ b/frame/util/normiv/bli_normiv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normiv/bli_normiv.h b/frame/util/normiv/bli_normiv.h index 1f40ec145..638ba9597 100644 --- a/frame/util/normiv/bli_normiv.h +++ b/frame/util/normiv/bli_normiv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normiv/bli_normiv_check.c b/frame/util/normiv/bli_normiv_check.c index b10c0089c..7b9a0a39f 100644 --- a/frame/util/normiv/bli_normiv_check.c +++ b/frame/util/normiv/bli_normiv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normiv/bli_normiv_check.h b/frame/util/normiv/bli_normiv_check.h index d2e7c9dde..8a16a7e63 100644 --- a/frame/util/normiv/bli_normiv_check.h +++ b/frame/util/normiv/bli_normiv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normiv/bli_normiv_unb_var1.c b/frame/util/normiv/bli_normiv_unb_var1.c index 238f1cf35..eaa381a10 100644 --- a/frame/util/normiv/bli_normiv_unb_var1.c +++ b/frame/util/normiv/bli_normiv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/normiv/bli_normiv_unb_var1.h b/frame/util/normiv/bli_normiv_unb_var1.h index a9b68a034..d1772cba4 100644 --- a/frame/util/normiv/bli_normiv_unb_var1.h +++ b/frame/util/normiv/bli_normiv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printm/bli_fprintm.c b/frame/util/printm/bli_fprintm.c index 1f3e9fbaa..3ef90651b 100644 --- a/frame/util/printm/bli_fprintm.c +++ b/frame/util/printm/bli_fprintm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printm/bli_fprintm.h b/frame/util/printm/bli_fprintm.h index a329b5f07..7c7d95233 100644 --- a/frame/util/printm/bli_fprintm.h +++ b/frame/util/printm/bli_fprintm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printm/bli_fprintm_check.c b/frame/util/printm/bli_fprintm_check.c index 3d562c8c6..2ee9036fd 100644 --- a/frame/util/printm/bli_fprintm_check.c +++ b/frame/util/printm/bli_fprintm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printm/bli_fprintm_check.h b/frame/util/printm/bli_fprintm_check.h index 6a6770b81..128884e88 100644 --- a/frame/util/printm/bli_fprintm_check.h +++ b/frame/util/printm/bli_fprintm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printm/bli_printm.c b/frame/util/printm/bli_printm.c index e70539050..f81c5786d 100644 --- a/frame/util/printm/bli_printm.c +++ b/frame/util/printm/bli_printm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printm/bli_printm.h b/frame/util/printm/bli_printm.h index bbdd06aa0..542c51d07 100644 --- a/frame/util/printm/bli_printm.h +++ b/frame/util/printm/bli_printm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printv/bli_fprintv.c b/frame/util/printv/bli_fprintv.c index 80ed2afeb..cc214cccf 100644 --- a/frame/util/printv/bli_fprintv.c +++ b/frame/util/printv/bli_fprintv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printv/bli_fprintv.h b/frame/util/printv/bli_fprintv.h index a97a4d3a8..0cceef257 100644 --- a/frame/util/printv/bli_fprintv.h +++ b/frame/util/printv/bli_fprintv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printv/bli_fprintv_check.c b/frame/util/printv/bli_fprintv_check.c index 9e6ddb83d..ff2e3acfa 100644 --- a/frame/util/printv/bli_fprintv_check.c +++ b/frame/util/printv/bli_fprintv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printv/bli_fprintv_check.h b/frame/util/printv/bli_fprintv_check.h index 7c20a62b2..3bbec639d 100644 --- a/frame/util/printv/bli_fprintv_check.h +++ b/frame/util/printv/bli_fprintv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printv/bli_printv.c b/frame/util/printv/bli_printv.c index 26b7433d5..62a85576c 100644 --- a/frame/util/printv/bli_printv.c +++ b/frame/util/printv/bli_printv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/printv/bli_printv.h b/frame/util/printv/bli_printv.h index 95675a894..3255366a0 100644 --- a/frame/util/printv/bli_printv.h +++ b/frame/util/printv/bli_printv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randm/bli_randm.c b/frame/util/randm/bli_randm.c index 16a8147db..51cb24786 100644 --- a/frame/util/randm/bli_randm.c +++ b/frame/util/randm/bli_randm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randm/bli_randm.h b/frame/util/randm/bli_randm.h index 650c7d5a0..224d42d40 100644 --- a/frame/util/randm/bli_randm.h +++ b/frame/util/randm/bli_randm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randm/bli_randm_check.c b/frame/util/randm/bli_randm_check.c index 86b919a23..c3ed62289 100644 --- a/frame/util/randm/bli_randm_check.c +++ b/frame/util/randm/bli_randm_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randm/bli_randm_check.h b/frame/util/randm/bli_randm_check.h index 1fcaf8914..4949c5d19 100644 --- a/frame/util/randm/bli_randm_check.h +++ b/frame/util/randm/bli_randm_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randm/bli_randm_unb_var1.c b/frame/util/randm/bli_randm_unb_var1.c index d5a70e89e..3576cefaf 100644 --- a/frame/util/randm/bli_randm_unb_var1.c +++ b/frame/util/randm/bli_randm_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randm/bli_randm_unb_var1.h b/frame/util/randm/bli_randm_unb_var1.h index 688088f10..33b8af3a6 100644 --- a/frame/util/randm/bli_randm_unb_var1.h +++ b/frame/util/randm/bli_randm_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randv/bli_randv.c b/frame/util/randv/bli_randv.c index 25d25b38f..db5ff8078 100644 --- a/frame/util/randv/bli_randv.c +++ b/frame/util/randv/bli_randv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randv/bli_randv.h b/frame/util/randv/bli_randv.h index 73ced3a08..e467816d2 100644 --- a/frame/util/randv/bli_randv.h +++ b/frame/util/randv/bli_randv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randv/bli_randv_check.c b/frame/util/randv/bli_randv_check.c index 561a93c20..2e12424ad 100644 --- a/frame/util/randv/bli_randv_check.c +++ b/frame/util/randv/bli_randv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randv/bli_randv_check.h b/frame/util/randv/bli_randv_check.h index c15f849dc..4d157dbfa 100644 --- a/frame/util/randv/bli_randv_check.h +++ b/frame/util/randv/bli_randv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randv/bli_randv_unb_var1.c b/frame/util/randv/bli_randv_unb_var1.c index eda36be89..9625d5d0a 100644 --- a/frame/util/randv/bli_randv_unb_var1.c +++ b/frame/util/randv/bli_randv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/randv/bli_randv_unb_var1.h b/frame/util/randv/bli_randv_unb_var1.h index af7946dc1..e3f345d28 100644 --- a/frame/util/randv/bli_randv_unb_var1.h +++ b/frame/util/randv/bli_randv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/sumsqv/bli_sumsqv.c b/frame/util/sumsqv/bli_sumsqv.c index 37e634c7d..7a4edeb27 100644 --- a/frame/util/sumsqv/bli_sumsqv.c +++ b/frame/util/sumsqv/bli_sumsqv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/sumsqv/bli_sumsqv.h b/frame/util/sumsqv/bli_sumsqv.h index 6230c2de4..ec601877c 100644 --- a/frame/util/sumsqv/bli_sumsqv.h +++ b/frame/util/sumsqv/bli_sumsqv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/sumsqv/bli_sumsqv_check.c b/frame/util/sumsqv/bli_sumsqv_check.c index e08f50d27..b71f21c34 100644 --- a/frame/util/sumsqv/bli_sumsqv_check.c +++ b/frame/util/sumsqv/bli_sumsqv_check.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/sumsqv/bli_sumsqv_check.h b/frame/util/sumsqv/bli_sumsqv_check.h index 913f19b95..162f85ad3 100644 --- a/frame/util/sumsqv/bli_sumsqv_check.h +++ b/frame/util/sumsqv/bli_sumsqv_check.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/sumsqv/bli_sumsqv_unb_var1.c b/frame/util/sumsqv/bli_sumsqv_unb_var1.c index 4b457cab3..b3c3708bb 100644 --- a/frame/util/sumsqv/bli_sumsqv_unb_var1.c +++ b/frame/util/sumsqv/bli_sumsqv_unb_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/frame/util/sumsqv/bli_sumsqv_unb_var1.h b/frame/util/sumsqv/bli_sumsqv_unb_var1.h index 41678042e..6c7beb4f4 100644 --- a/frame/util/sumsqv/bli_sumsqv_unb_var1.h +++ b/frame/util/sumsqv/bli_sumsqv_unb_var1.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/arm/neon/3/bli_gemm_opt_4x4.c b/kernels/arm/neon/3/bli_gemm_opt_4x4.c index 8dc2b1776..e5ae17281 100644 --- a/kernels/arm/neon/3/bli_gemm_opt_4x4.c +++ b/kernels/arm/neon/3/bli_gemm_opt_4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/armv7a/3/bli_gemm_opt_4x4.c b/kernels/armv7a/3/bli_gemm_opt_4x4.c index 2bc34c311..4884eea5d 100644 --- a/kernels/armv7a/3/bli_gemm_opt_4x4.c +++ b/kernels/armv7a/3/bli_gemm_opt_4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/bgq/1/bli_axpyv_opt_var1.c b/kernels/bgq/1/bli_axpyv_opt_var1.c index b80232267..9cfd5a4eb 100644 --- a/kernels/bgq/1/bli_axpyv_opt_var1.c +++ b/kernels/bgq/1/bli_axpyv_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/bgq/1/bli_dotv_opt_var1.c b/kernels/bgq/1/bli_dotv_opt_var1.c index 9b8a15b7a..edec60096 100644 --- a/kernels/bgq/1/bli_dotv_opt_var1.c +++ b/kernels/bgq/1/bli_dotv_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/bgq/1f/bli_axpyf_opt_var1.c b/kernels/bgq/1f/bli_axpyf_opt_var1.c index 8907bc13d..16b8dacbd 100644 --- a/kernels/bgq/1f/bli_axpyf_opt_var1.c +++ b/kernels/bgq/1f/bli_axpyf_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/bgq/3/bli_gemm_8x8.c b/kernels/bgq/3/bli_gemm_8x8.c index 0eb1e7b1e..7e7c9b9e7 100644 --- a/kernels/bgq/3/bli_gemm_8x8.c +++ b/kernels/bgq/3/bli_gemm_8x8.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/bgq/3/bli_gemm_8x8.h b/kernels/bgq/3/bli_gemm_8x8.h index 390d224dd..ea96fe876 100644 --- a/kernels/bgq/3/bli_gemm_8x8.h +++ b/kernels/bgq/3/bli_gemm_8x8.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/c99/3/bli_gemm_ref_4x4.c b/kernels/c99/3/bli_gemm_ref_4x4.c index e478bb1b1..72d74e941 100644 --- a/kernels/c99/3/bli_gemm_ref_4x4.c +++ b/kernels/c99/3/bli_gemm_ref_4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c b/kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c index c2042b7a8..2b2f6377a 100644 --- a/kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c +++ b/kernels/c99/3/bli_gemmtrsm_l_ref_4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c b/kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c index 9f0e5e88a..b4dde2940 100644 --- a/kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c +++ b/kernels/c99/3/bli_gemmtrsm_u_ref_4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/c99/3/bli_trsm_l_ref_4x4.c b/kernels/c99/3/bli_trsm_l_ref_4x4.c index cfb13b7a3..9e270a450 100644 --- a/kernels/c99/3/bli_trsm_l_ref_4x4.c +++ b/kernels/c99/3/bli_trsm_l_ref_4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/c99/3/bli_trsm_u_ref_4x4.c b/kernels/c99/3/bli_trsm_u_ref_4x4.c index 121e0a961..97fa1a4a4 100644 --- a/kernels/c99/3/bli_trsm_u_ref_4x4.c +++ b/kernels/c99/3/bli_trsm_u_ref_4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/loongson3a/3/bli_gemm_opt_d4x4.c b/kernels/loongson3a/3/bli_gemm_opt_d4x4.c index c5fdd5760..a7e4a825a 100644 --- a/kernels/loongson3a/3/bli_gemm_opt_d4x4.c +++ b/kernels/loongson3a/3/bli_gemm_opt_d4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/mic/3/bli_dgemm_opt_30x8.c b/kernels/mic/3/bli_dgemm_opt_30x8.c index 4b2c484b5..aa6f7d339 100644 --- a/kernels/mic/3/bli_dgemm_opt_30x8.c +++ b/kernels/mic/3/bli_dgemm_opt_30x8.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/mic/3/bli_sgemm_opt_30x16.c b/kernels/mic/3/bli_sgemm_opt_30x16.c index 26725c9b8..2f2f09419 100644 --- a/kernels/mic/3/bli_sgemm_opt_30x16.c +++ b/kernels/mic/3/bli_sgemm_opt_30x16.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/nacl/pnacl/1/bli_axpyv_opt.c b/kernels/nacl/pnacl/1/bli_axpyv_opt.c index 24f24b415..1cefe041d 100644 --- a/kernels/nacl/pnacl/1/bli_axpyv_opt.c +++ b/kernels/nacl/pnacl/1/bli_axpyv_opt.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/nacl/pnacl/1/bli_dotv_opt.c b/kernels/nacl/pnacl/1/bli_dotv_opt.c index 55ae1af8e..d6c7d3f51 100644 --- a/kernels/nacl/pnacl/1/bli_dotv_opt.c +++ b/kernels/nacl/pnacl/1/bli_dotv_opt.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/nacl/pnacl/3/bli_gemm_opt.c b/kernels/nacl/pnacl/3/bli_gemm_opt.c index beb199cfe..23459d6ad 100644 --- a/kernels/nacl/pnacl/3/bli_gemm_opt.c +++ b/kernels/nacl/pnacl/3/bli_gemm_opt.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/power7/3/bli_gemm_opt_8x4.c b/kernels/power7/3/bli_gemm_opt_8x4.c index ccfffcef1..5b16f78b6 100644 --- a/kernels/power7/3/bli_gemm_opt_8x4.c +++ b/kernels/power7/3/bli_gemm_opt_8x4.c @@ -10,9 +10,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/power7/3/bli_gemm_opt_8x4.h b/kernels/power7/3/bli_gemm_opt_8x4.h index fddd790bb..b9fdb3648 100644 --- a/kernels/power7/3/bli_gemm_opt_8x4.h +++ b/kernels/power7/3/bli_gemm_opt_8x4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/power7/3/test/bli_gemm_opt_8x4.c b/kernels/power7/3/test/bli_gemm_opt_8x4.c deleted file mode 120000 index 74bc86160..000000000 --- a/kernels/power7/3/test/bli_gemm_opt_8x4.c +++ /dev/null @@ -1 +0,0 @@ -../bli_gemm_opt_8x4.c \ No newline at end of file diff --git a/kernels/power7/3/test/bli_gemm_opt_8x4.c b/kernels/power7/3/test/bli_gemm_opt_8x4.c new file mode 100755 index 000000000..cd8ac3be0 --- /dev/null +++ b/kernels/power7/3/test/bli_gemm_opt_8x4.c @@ -0,0 +1,550 @@ +/* + + (C) Copyright IBM Corporation 2013 + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +#ifdef UTEST +#include "blis_utest.h" +#else +#include "blis.h" +#endif +#include + +#define COLMAJ_INDEX(row,col,ld) ((col*ld)+row) +#define ROWMAJ_INDEX(row,col,ld) ((row*ld)+col) +#define BLIS_INDEX(row,col,rs,cs) ((row*rs)+(col*cs)) + +/* + * Perform + * c = beta * c + alpha * a * b + * where + * alpha & beta are scalars + * c is mr x nr in blis-format, (col-stride & row-stride) + * a is mr x k in packed col-maj format (leading dim is mr) + * b is k x nr in packed row-maj format (leading dim is nr) + */ +void bli_sgemm_opt_8x4( + dim_t k, + float* restrict alpha, + float* restrict a, + float* restrict b, + float* restrict beta, + float* restrict c, inc_t rs_c, inc_t cs_c, + auxinfo_t* data + ) +{ +#if 0 || defined(UTEST) + const long MR = BLIS_DEFAULT_MR_S, NR = BLIS_DEFAULT_NR_S; + const long LDA = MR, LDB = NR; + long i, j, kk; + float c00; + + for (i=0; i < MR; i++) { + for (j=0; j < NR; j++) { + c00 = c[BLIS_INDEX(i,j,rs_c,cs_c)] * *beta; + for (kk=0; kk < k; kk++) + c00 += *alpha * (a[COLMAJ_INDEX(i,kk,LDA)] * b[ROWMAJ_INDEX(kk,j,LDB)]); + c[BLIS_INDEX(i,j,rs_c,cs_c)] = c00; + } + } +#else + BLIS_SGEMM_UKERNEL_REF(k, alpha, a, b, beta, c, rs_c, cs_c, data); +#endif +} + +/* + * Perform + * c = beta * c + alpha * a * b + * where + * alpha & beta are scalars + * c is mr x nr in blis-format, (col-stride & row-stride) + * a is mr x k in packed col-maj format (leading dim is mr) + * b is k x nr in packed row-maj format (leading dim is nr) + */ +void bli_dgemm_opt_8x4( + dim_t k, + double* restrict alpha, + double* restrict a, + double* restrict b, + double* restrict beta, + double* restrict c, inc_t rs_c, inc_t cs_c, + auxinfo_t* data + ) +{ +#if 1 + if (rs_c == 1) { + // Optimized code for case where C columns are contiguous (column-major C) + vector double vzero = vec_splats( 0.0 ); + + vector double vc00_10 = vzero; + vector double vc20_30 = vzero; + vector double vc40_50 = vzero; + vector double vc60_70 = vzero; + vector double vc01_11 = vzero; + vector double vc21_31 = vzero; + vector double vc41_51 = vzero; + vector double vc61_71 = vzero; + vector double vc02_12 = vzero; + vector double vc22_32 = vzero; + vector double vc42_52 = vzero; + vector double vc62_72 = vzero; + vector double vc03_13 = vzero; + vector double vc23_33 = vzero; + vector double vc43_53 = vzero; + vector double vc63_73 = vzero; + + unsigned long long pa = (unsigned long long)a; + unsigned long long pb = (unsigned long long)b; + +#if 0 + unsigned long long d1 = 1*sizeof(double); + unsigned long long d2 = 2*sizeof(double); + unsigned long long d3 = 3*sizeof(double); + unsigned long long d4 = 4*sizeof(double); + unsigned long long d6 = 6*sizeof(double); +#else + // ppc64 linux abi: r14-r31 Nonvolatile registers used for local variables + register unsigned long long d1 __asm ("r21") = 1*sizeof(double); + register unsigned long long d2 __asm ("r22") = 2*sizeof(double); + register unsigned long long d3 __asm ("r23") = 3*sizeof(double); + register unsigned long long d4 __asm ("r24") = 4*sizeof(double); + register unsigned long long d6 __asm ("r26") = 6*sizeof(double); + + __asm__ volatile (";" : "=r" (d1) : "r" (d1) ); + __asm__ volatile (";" : "=r" (d2) : "r" (d2) ); + __asm__ volatile (";" : "=r" (d3) : "r" (d3) ); + __asm__ volatile (";" : "=r" (d4) : "r" (d4) ); + __asm__ volatile (";" : "=r" (d6) : "r" (d6) ); +#endif + + int kk; + for (kk=k; kk > 1; kk-=2) { + + vector double va00_10 = *(vector double *)( pa+0 ); + vector double va20_30 = *(vector double *)( pa+d2 ); + vector double va40_50 = *(vector double *)( pa+d4 ); + vector double va60_70 = *(vector double *)( pa+d6 ); + pa += 8*sizeof(double); + + vector double vb00 = vec_splats( *(double *)( pb+0 ) ); + vector double vb01 = vec_splats( *(double *)( pb+d1 ) ); + vector double vb02 = vec_splats( *(double *)( pb+d2 ) ); + vector double vb03 = vec_splats( *(double *)( pb+d3 ) ); + pb += 4*sizeof(double); + + vc00_10 = vec_madd(va00_10, vb00, vc00_10); + vc20_30 = vec_madd(va20_30, vb00, vc20_30); + vc40_50 = vec_madd(va40_50, vb00, vc40_50); + vc60_70 = vec_madd(va60_70, vb00, vc60_70); + vc01_11 = vec_madd(va00_10, vb01, vc01_11); + vc21_31 = vec_madd(va20_30, vb01, vc21_31); + vc41_51 = vec_madd(va40_50, vb01, vc41_51); + vc61_71 = vec_madd(va60_70, vb01, vc61_71); + vc02_12 = vec_madd(va00_10, vb02, vc02_12); + vc22_32 = vec_madd(va20_30, vb02, vc22_32); + vc42_52 = vec_madd(va40_50, vb02, vc42_52); + vc62_72 = vec_madd(va60_70, vb02, vc62_72); + vc03_13 = vec_madd(va00_10, vb03, vc03_13); + vc23_33 = vec_madd(va20_30, vb03, vc23_33); + vc43_53 = vec_madd(va40_50, vb03, vc43_53); + vc63_73 = vec_madd(va60_70, vb03, vc63_73); + + va00_10 = *(vector double *)( pa+0 ); + va20_30 = *(vector double *)( pa+d2 ); + va40_50 = *(vector double *)( pa+d4 ); + va60_70 = *(vector double *)( pa+d6 ); + pa += 8*sizeof(double); + + vb00 = vec_splats( *(double *)( pb+0 ) ); + vb01 = vec_splats( *(double *)( pb+d1 ) ); + vb02 = vec_splats( *(double *)( pb+d2 ) ); + vb03 = vec_splats( *(double *)( pb+d3 ) ); + pb += 4*sizeof(double); + + vc00_10 = vec_madd(va00_10, vb00, vc00_10); + vc20_30 = vec_madd(va20_30, vb00, vc20_30); + vc40_50 = vec_madd(va40_50, vb00, vc40_50); + vc60_70 = vec_madd(va60_70, vb00, vc60_70); + vc01_11 = vec_madd(va00_10, vb01, vc01_11); + vc21_31 = vec_madd(va20_30, vb01, vc21_31); + vc41_51 = vec_madd(va40_50, vb01, vc41_51); + vc61_71 = vec_madd(va60_70, vb01, vc61_71); + vc02_12 = vec_madd(va00_10, vb02, vc02_12); + vc22_32 = vec_madd(va20_30, vb02, vc22_32); + vc42_52 = vec_madd(va40_50, vb02, vc42_52); + vc62_72 = vec_madd(va60_70, vb02, vc62_72); + vc03_13 = vec_madd(va00_10, vb03, vc03_13); + vc23_33 = vec_madd(va20_30, vb03, vc23_33); + vc43_53 = vec_madd(va40_50, vb03, vc43_53); + vc63_73 = vec_madd(va60_70, vb03, vc63_73); + } + + for (kk=kk; kk > 0; kk--) { + + vector double va00_10 = *(vector double *)( pa+0 ); + vector double va20_30 = *(vector double *)( pa+d2 ); + vector double va40_50 = *(vector double *)( pa+d4 ); + vector double va60_70 = *(vector double *)( pa+d6 ); + pa += 8*sizeof(double); + + vector double vb00 = vec_splats( *(double *)( pb+0 ) ); + vector double vb01 = vec_splats( *(double *)( pb+d1 ) ); + vector double vb02 = vec_splats( *(double *)( pb+d2 ) ); + vector double vb03 = vec_splats( *(double *)( pb+d3 ) ); + pb += 4*sizeof(double); + + vc00_10 = vec_madd(va00_10, vb00, vc00_10); + vc20_30 = vec_madd(va20_30, vb00, vc20_30); + vc40_50 = vec_madd(va40_50, vb00, vc40_50); + vc60_70 = vec_madd(va60_70, vb00, vc60_70); + vc01_11 = vec_madd(va00_10, vb01, vc01_11); + vc21_31 = vec_madd(va20_30, vb01, vc21_31); + vc41_51 = vec_madd(va40_50, vb01, vc41_51); + vc61_71 = vec_madd(va60_70, vb01, vc61_71); + vc02_12 = vec_madd(va00_10, vb02, vc02_12); + vc22_32 = vec_madd(va20_30, vb02, vc22_32); + vc42_52 = vec_madd(va40_50, vb02, vc42_52); + vc62_72 = vec_madd(va60_70, vb02, vc62_72); + vc03_13 = vec_madd(va00_10, vb03, vc03_13); + vc23_33 = vec_madd(va20_30, vb03, vc23_33); + vc43_53 = vec_madd(va40_50, vb03, vc43_53); + vc63_73 = vec_madd(va60_70, vb03, vc63_73); + } + + // The following code is dependent on rs_c == 1 + + vector double valpha = vec_splats( *alpha ); + vector double vbeta = (vector double) { *beta, *beta }; + + vector double *pc = (vector double *)c; + + vc00_10 = vec_mul(valpha, vc00_10); + vc20_30 = vec_mul(valpha, vc20_30); + vc40_50 = vec_mul(valpha, vc40_50); + vc60_70 = vec_mul(valpha, vc60_70); + + pc[0] = vec_madd( pc[0], vbeta, vc00_10); + pc[1] = vec_madd( pc[1], vbeta, vc20_30); + pc[2] = vec_madd( pc[2], vbeta, vc40_50); + pc[3] = vec_madd( pc[3], vbeta, vc60_70); + pc += cs_c/2; + + vc01_11 = vec_mul(valpha, vc01_11); + vc21_31 = vec_mul(valpha, vc21_31); + vc41_51 = vec_mul(valpha, vc41_51); + vc61_71 = vec_mul(valpha, vc61_71); + + pc[0] = vec_madd( pc[0], vbeta, vc01_11); + pc[1] = vec_madd( pc[1], vbeta, vc21_31); + pc[2] = vec_madd( pc[2], vbeta, vc41_51); + pc[3] = vec_madd( pc[3], vbeta, vc61_71); + pc += cs_c/2; + + vc02_12 = vec_mul(valpha, vc02_12); + vc22_32 = vec_mul(valpha, vc22_32); + vc42_52 = vec_mul(valpha, vc42_52); + vc62_72 = vec_mul(valpha, vc62_72); + + pc[0] = vec_madd( pc[0], vbeta, vc02_12); + pc[1] = vec_madd( pc[1], vbeta, vc22_32); + pc[2] = vec_madd( pc[2], vbeta, vc42_52); + pc[3] = vec_madd( pc[3], vbeta, vc62_72); + pc += cs_c/2; + + vc03_13 = vec_mul(valpha, vc03_13); + vc23_33 = vec_mul(valpha, vc23_33); + vc43_53 = vec_mul(valpha, vc43_53); + vc63_73 = vec_mul(valpha, vc63_73); + + pc[0] = vec_madd( pc[0], vbeta, vc03_13); + pc[1] = vec_madd( pc[1], vbeta, vc23_33); + pc[2] = vec_madd( pc[2], vbeta, vc43_53); + pc[3] = vec_madd( pc[3], vbeta, vc63_73); + } + else +#endif +#if 1 + if ( cs_c == 1 ) { + // Optimized code for case where C rows are contiguous (i.e. C is row-major) + + vector double vzero = vec_splats( 0.0 ); + + vector double vc00_01 = vzero; + vector double vc02_03 = vzero; + vector double vc10_11 = vzero; + vector double vc12_13 = vzero; + vector double vc20_21 = vzero; + vector double vc22_23 = vzero; + vector double vc30_31 = vzero; + vector double vc32_33 = vzero; + vector double vc40_41 = vzero; + vector double vc42_43 = vzero; + vector double vc50_51 = vzero; + vector double vc52_53 = vzero; + vector double vc60_61 = vzero; + vector double vc62_63 = vzero; + vector double vc70_71 = vzero; + vector double vc72_73 = vzero; + + unsigned long long pa = (unsigned long long)a; + unsigned long long pb = (unsigned long long)b; + +#if 0 + unsigned long long d1 = 1*sizeof(double); + unsigned long long d2 = 2*sizeof(double); + unsigned long long d3 = 3*sizeof(double); + unsigned long long d4 = 4*sizeof(double); + unsigned long long d6 = 6*sizeof(double); +#else + // ppc64 linux abi: r14-r31 Nonvolatile registers used for local variables + register unsigned long long d1 __asm ("r21") = 1*sizeof(double); + register unsigned long long d2 __asm ("r22") = 2*sizeof(double); + register unsigned long long d3 __asm ("r23") = 3*sizeof(double); + register unsigned long long d4 __asm ("r24") = 4*sizeof(double); + register unsigned long long d5 __asm ("r25") = 5*sizeof(double); + register unsigned long long d6 __asm ("r26") = 6*sizeof(double); + register unsigned long long d7 __asm ("r27") = 7*sizeof(double); + + __asm__ volatile (";" : "=r" (d1) : "r" (d1) ); + __asm__ volatile (";" : "=r" (d2) : "r" (d2) ); + __asm__ volatile (";" : "=r" (d3) : "r" (d3) ); + __asm__ volatile (";" : "=r" (d4) : "r" (d4) ); + __asm__ volatile (";" : "=r" (d5) : "r" (d5) ); + __asm__ volatile (";" : "=r" (d6) : "r" (d6) ); + __asm__ volatile (";" : "=r" (d7) : "r" (d7) ); +#endif + + int kk; + for (kk=k; kk > 0; kk--) { + vector double va00 = vec_splats( *(double *)( pa+0 ) ); + vector double va10 = vec_splats( *(double *)( pa+d1 ) ); + vector double va20 = vec_splats( *(double *)( pa+d2 ) ); + vector double va30 = vec_splats( *(double *)( pa+d3 ) ); + vector double va40 = vec_splats( *(double *)( pa+d4 ) ); + vector double va50 = vec_splats( *(double *)( pa+d5 ) ); + vector double va60 = vec_splats( *(double *)( pa+d6 ) ); + vector double va70 = vec_splats( *(double *)( pa+d7 ) ); + pa += 8*sizeof(double); + + vector double vb00_01 = *(vector double *)( pb+0 ); + vector double vb02_03 = *(vector double *)( pb+d2 ); + pb += 4*sizeof(double); + + vc00_01 = vec_madd(va00, vb00_01, vc00_01); + vc02_03 = vec_madd(va00, vb02_03, vc02_03); + vc10_11 = vec_madd(va10, vb00_01, vc10_11); + vc12_13 = vec_madd(va10, vb02_03, vc12_13); + vc20_21 = vec_madd(va20, vb00_01, vc20_21); + vc22_23 = vec_madd(va20, vb02_03, vc22_23); + vc30_31 = vec_madd(va30, vb00_01, vc30_31); + vc32_33 = vec_madd(va30, vb02_03, vc32_33); + vc40_41 = vec_madd(va40, vb00_01, vc40_41); + vc42_43 = vec_madd(va40, vb02_03, vc42_43); + vc50_51 = vec_madd(va50, vb00_01, vc50_51); + vc52_53 = vec_madd(va50, vb02_03, vc52_53); + vc60_61 = vec_madd(va60, vb00_01, vc60_61); + vc62_63 = vec_madd(va60, vb02_03, vc62_63); + vc70_71 = vec_madd(va70, vb00_01, vc70_71); + vc72_73 = vec_madd(va70, vb02_03, vc72_73); + } + + vector double valpha = vec_splats( *alpha ); + vector double vbeta = (vector double) { *beta, *beta }; + + vector double *pc = (vector double *)c; + + vc00_01 = vec_mul(valpha, vc00_01); + vc02_03 = vec_mul(valpha, vc02_03); + pc[0] = vec_madd( pc[0], vbeta, vc00_01); + pc[1] = vec_madd( pc[1], vbeta, vc02_03); + pc += rs_c/2; + + vc10_11 = vec_mul(valpha, vc10_11); + vc12_13 = vec_mul(valpha, vc12_13); + pc[0] = vec_madd( pc[0], vbeta, vc10_11); + pc[1] = vec_madd( pc[1], vbeta, vc12_13); + pc += rs_c/2; + + vc20_21 = vec_mul(valpha, vc20_21); + vc22_23 = vec_mul(valpha, vc22_23); + pc[0] = vec_madd( pc[0], vbeta, vc20_21); + pc[1] = vec_madd( pc[1], vbeta, vc22_23); + pc += rs_c/2; + + vc30_31 = vec_mul(valpha, vc30_31); + vc32_33 = vec_mul(valpha, vc32_33); + pc[0] = vec_madd( pc[0], vbeta, vc30_31); + pc[1] = vec_madd( pc[1], vbeta, vc32_33); + pc += rs_c/2; + + vc40_41 = vec_mul(valpha, vc40_41); + vc42_43 = vec_mul(valpha, vc42_43); + pc[0] = vec_madd( pc[0], vbeta, vc40_41); + pc[1] = vec_madd( pc[1], vbeta, vc42_43); + pc += rs_c/2; + + vc50_51 = vec_mul(valpha, vc50_51); + vc52_53 = vec_mul(valpha, vc52_53); + pc[0] = vec_madd( pc[0], vbeta, vc50_51); + pc[1] = vec_madd( pc[1], vbeta, vc52_53); + pc += rs_c/2; + + vc60_61 = vec_mul(valpha, vc60_61); + vc62_63 = vec_mul(valpha, vc62_63); + pc[0] = vec_madd( pc[0], vbeta, vc60_61); + pc[1] = vec_madd( pc[1], vbeta, vc62_63); + pc += rs_c/2; + + vc70_71 = vec_mul(valpha, vc70_71); + vc72_73 = vec_mul(valpha, vc72_73); + pc[0] = vec_madd( pc[0], vbeta, vc70_71); + pc[1] = vec_madd( pc[1], vbeta, vc72_73); + pc += rs_c/2; + + } + else +#endif + { /* General case. Just do it right. */ +#if 0 || defined(UTEST) + const long MR = BLIS_DEFAULT_MR_D, NR = BLIS_DEFAULT_NR_D; + const long LDA = MR, LDB = NR; + int i, j, kk; + double c00; + + for (i=0; i < MR; i++) { + for (j=0; j < NR; j++) { + c00 = c[BLIS_INDEX(i,j,rs_c,cs_c)] * *beta; + for (kk=0; kk < k; kk++) + c00 += *alpha * (a[COLMAJ_INDEX(i,kk,LDA)] * b[ROWMAJ_INDEX(kk,j,LDB)]); + c[BLIS_INDEX(i,j,rs_c,cs_c)] = c00; + } + } +#else + BLIS_DGEMM_UKERNEL_REF(k, alpha, a, b, beta, c, rs_c, cs_c, data); +#endif + } +} + +/* + * Perform + * c = beta * c + alpha * a * b + * where + * alpha & beta are scalars + * c is mr x nr in blis-format, (col-stride & row-stride) + * a is mr x k in packed col-maj format (leading dim is mr) + * b is k x nr in packed row-maj format (leading dim is nr) + */ +void bli_cgemm_opt_8x4( + dim_t k, + scomplex* restrict alpha, + scomplex* restrict a, + scomplex* restrict b, + scomplex* restrict beta, + scomplex* restrict c, inc_t rs_c, inc_t cs_c, + auxinfo_t* data + ) +{ +#if 0 || defined(UTEST) + const long MR = BLIS_DEFAULT_MR_C, NR = BLIS_DEFAULT_NR_C; + const long LDA = MR, LDB = NR; + int i, j, kk; + scomplex c00; + + for (i=0; i < MR; i++) { + for (j=0; j < NR; j++) { + scomplex tmpc, tmpa, tmpb, tmp; + //c00 = c[BLIS_INDEX(i,j,rs_c,cs_c)] * *beta; + tmpc = c[BLIS_INDEX(i,j,rs_c,cs_c)]; + c00.real = tmpc.real * (*beta).real - tmpc.imag * (*beta).imag; + c00.imag = tmpc.real * (*beta).imag + tmpc.imag * (*beta).real; + for (kk=0; kk < k; kk++) { + //c00 += *alpha * (a[COLMAJ_INDEX(i,kk,LDA)] * b[ROWMAJ_INDEX(kk,j,LDB)]); + tmpa = a[COLMAJ_INDEX(i,kk,LDA)]; + tmpb = b[ROWMAJ_INDEX(kk,j,LDB)]; + tmp.real = tmpa.real * tmpb.real - tmpa.imag * tmpb.imag; + tmp.imag = tmpa.real * tmpb.imag + tmpa.imag * tmpb.real; + c00.real += (*alpha).real * tmp.real - (*alpha).imag * tmp.imag; + c00.imag += (*alpha).real * tmp.imag + (*alpha).imag * tmp.real; + } + c[BLIS_INDEX(i,j,rs_c,cs_c)] = c00; + } + } +#else + BLIS_CGEMM_UKERNEL_REF(k, alpha, a, b, beta, c, rs_c, cs_c, data); +#endif +} + +/* + * Perform + * c = beta * c + alpha * a * b + * where + * alpha & beta are scalars + * c is mr x nr in blis-format, (col-stride & row-stride) + * a is mr x k in packed col-maj format (leading dim is mr) + * b is k x nr in packed row-maj format (leading dim is nr) + */ +void bli_zgemm_opt_8x4( + dim_t k, + dcomplex* restrict alpha, + dcomplex* restrict a, + dcomplex* restrict b, + dcomplex* restrict beta, + dcomplex* restrict c, inc_t rs_c, inc_t cs_c, + auxinfo_t* data + ) +{ +#if 0 || defined(UTEST) + const long MR = BLIS_DEFAULT_MR_Z, NR = BLIS_DEFAULT_NR_Z; + const long LDA = MR, LDB = NR; + int i, j, kk; + dcomplex c00; + + for (i=0; i < MR; i++) { + for (j=0; j < NR; j++) { + dcomplex tmpc, tmpa, tmpb, tmp; + //c00 = c[BLIS_INDEX(i,j,rs_c,cs_c)] * *beta; + tmpc = c[BLIS_INDEX(i,j,rs_c,cs_c)]; + c00.real = tmpc.real * (*beta).real - tmpc.imag * (*beta).imag; + c00.imag = tmpc.real * (*beta).imag + tmpc.imag * (*beta).real; + for (kk=0; kk < k; kk++) { + //c00 += *alpha * (a[COLMAJ_INDEX(i,kk,LDA)] * b[ROWMAJ_INDEX(kk,j,LDB)]); + tmpa = a[COLMAJ_INDEX(i,kk,LDA)]; + tmpb = b[ROWMAJ_INDEX(kk,j,LDB)]; + tmp.real = tmpa.real * tmpb.real - tmpa.imag * tmpb.imag; + tmp.imag = tmpa.real * tmpb.imag + tmpa.imag * tmpb.real; + c00.real += (*alpha).real * tmp.real - (*alpha).imag * tmp.imag; + c00.imag += (*alpha).real * tmp.imag + (*alpha).imag * tmp.real; + } + c[BLIS_INDEX(i,j,rs_c,cs_c)] = c00; + } + } +#else + BLIS_ZGEMM_UKERNEL_REF(k, alpha, a, b, beta, c, rs_c, cs_c, data); +#endif +} + diff --git a/kernels/power7/3/test/bli_gemm_opt_8x4.h b/kernels/power7/3/test/bli_gemm_opt_8x4.h deleted file mode 120000 index d45432d95..000000000 --- a/kernels/power7/3/test/bli_gemm_opt_8x4.h +++ /dev/null @@ -1 +0,0 @@ -../bli_gemm_opt_8x4.h \ No newline at end of file diff --git a/kernels/power7/3/test/bli_gemm_opt_8x4.h b/kernels/power7/3/test/bli_gemm_opt_8x4.h new file mode 100755 index 000000000..81d8f3c74 --- /dev/null +++ b/kernels/power7/3/test/bli_gemm_opt_8x4.h @@ -0,0 +1,84 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas at Austin + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +#ifndef _BLI_GEMM_OPT_8X4_H_ +#define _BLI_GEMM_OPT_8X4_H_ + +#ifdef UTEST +#include "blis_utest.h" +#else +#include "blis.h" +#endif + +void bli_sgemm_opt_8x4( + dim_t k, + float* restrict alpha, + float* restrict a, + float* restrict b, + float* restrict beta, + float* restrict c, inc_t rs_c, inc_t cs_c, + auxinfo_t* data + ); + +void bli_dgemm_opt_8x4( + dim_t k, + double* restrict alpha, + double* restrict a, + double* restrict b, + double* restrict beta, + double* restrict c, inc_t rs_c, inc_t cs_c, + auxinfo_t* data + ); + +void bli_cgemm_opt_8x4( + dim_t k, + scomplex* restrict alpha, + scomplex* restrict a, + scomplex* restrict b, + scomplex* restrict beta, + scomplex* restrict c, inc_t rs_c, inc_t cs_c, + auxinfo_t* data + ); + +void bli_zgemm_opt_8x4( + dim_t k, + dcomplex* restrict alpha, + dcomplex* restrict a, + dcomplex* restrict b, + dcomplex* restrict beta, + dcomplex* restrict c, inc_t rs_c, inc_t cs_c, + auxinfo_t* data + ); + +#endif diff --git a/kernels/x86/1m/bli_packm_2xk.c b/kernels/x86/1m/bli_packm_2xk.c index a69ad5096..8fcd8d85e 100644 --- a/kernels/x86/1m/bli_packm_2xk.c +++ b/kernels/x86/1m/bli_packm_2xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/1m/bli_packm_2xk.h b/kernels/x86/1m/bli_packm_2xk.h index 3f02f37e1..f593177c3 100644 --- a/kernels/x86/1m/bli_packm_2xk.h +++ b/kernels/x86/1m/bli_packm_2xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/1m/bli_packm_4xk.c b/kernels/x86/1m/bli_packm_4xk.c index 815e82833..c6f78ec0a 100644 --- a/kernels/x86/1m/bli_packm_4xk.c +++ b/kernels/x86/1m/bli_packm_4xk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/1m/bli_packm_4xk.h b/kernels/x86/1m/bli_packm_4xk.h index cf3a384fe..1ec5051aa 100644 --- a/kernels/x86/1m/bli_packm_4xk.h +++ b/kernels/x86/1m/bli_packm_4xk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_gemm_opt_d2x4.c b/kernels/x86/3/bli_gemm_opt_d2x4.c index 9e4f892e3..f2d9bf06d 100644 --- a/kernels/x86/3/bli_gemm_opt_d2x4.c +++ b/kernels/x86/3/bli_gemm_opt_d2x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_gemm_opt_d2x4.h b/kernels/x86/3/bli_gemm_opt_d2x4.h index 5fff6c747..ffdf8567a 100644 --- a/kernels/x86/3/bli_gemm_opt_d2x4.h +++ b/kernels/x86/3/bli_gemm_opt_d2x4.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_gemm_opt_d4x2.c b/kernels/x86/3/bli_gemm_opt_d4x2.c index 696bbc53a..abded72a6 100644 --- a/kernels/x86/3/bli_gemm_opt_d4x2.c +++ b/kernels/x86/3/bli_gemm_opt_d4x2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_gemm_opt_d4x2.h b/kernels/x86/3/bli_gemm_opt_d4x2.h index 85e67e46d..f826e5492 100644 --- a/kernels/x86/3/bli_gemm_opt_d4x2.h +++ b/kernels/x86/3/bli_gemm_opt_d4x2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c b/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c index e89b935ea..d52c293a1 100644 --- a/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c +++ b/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h b/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h index e4c3b30cc..516f1ac18 100644 --- a/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h +++ b/kernels/x86/3/bli_gemmtrsm_l_opt_d4x2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c b/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c index bc72441d7..1242986a3 100644 --- a/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c +++ b/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h b/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h index 9b3fa2567..820361c4a 100644 --- a/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h +++ b/kernels/x86/3/bli_gemmtrsm_u_opt_d4x2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_trsm_l_opt_d4x2.c b/kernels/x86/3/bli_trsm_l_opt_d4x2.c index d5e6d210f..cec606bb1 100644 --- a/kernels/x86/3/bli_trsm_l_opt_d4x2.c +++ b/kernels/x86/3/bli_trsm_l_opt_d4x2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86/3/bli_trsm_l_opt_d4x2.h b/kernels/x86/3/bli_trsm_l_opt_d4x2.h index d41788b10..3ff690a44 100644 --- a/kernels/x86/3/bli_trsm_l_opt_d4x2.h +++ b/kernels/x86/3/bli_trsm_l_opt_d4x2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/avx/3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c b/kernels/x86_64/avx/3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c index 9627a0e51..9a26f0e07 100644 --- a/kernels/x86_64/avx/3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c +++ b/kernels/x86_64/avx/3/bli_gemm_opt_8x4_ref_u4_nodupl_avx1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/1/bli_axpyv_opt_var1.c b/kernels/x86_64/core2-sse3/1/bli_axpyv_opt_var1.c index 8d5a5c124..f1d3b39fd 100644 --- a/kernels/x86_64/core2-sse3/1/bli_axpyv_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1/bli_axpyv_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/1/bli_dotv_opt_var1.c b/kernels/x86_64/core2-sse3/1/bli_dotv_opt_var1.c index df1fa1ac4..e3d4d05e9 100644 --- a/kernels/x86_64/core2-sse3/1/bli_dotv_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1/bli_dotv_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/1f/bli_axpy2v_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_axpy2v_opt_var1.c index 1fd6511ce..650f55dd8 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_axpy2v_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_axpy2v_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c index 1433ec1b7..631c572a8 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c.alt b/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c.alt index ba06b3eb4..51841d64f 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c.alt +++ b/kernels/x86_64/core2-sse3/1f/bli_axpyf_opt_var1.c.alt @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/1f/bli_dotaxpyv_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_dotaxpyv_opt_var1.c index 6dd59123b..0cb390dea 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_dotaxpyv_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_dotaxpyv_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/1f/bli_dotxaxpyf_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_dotxaxpyf_opt_var1.c index 2fcc37307..57bef435c 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_dotxaxpyf_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_dotxaxpyf_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c b/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c index 8b1a714ff..5835beef5 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c +++ b/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c.alt b/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c.alt index d512f8f7f..cf2946d3b 100644 --- a/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c.alt +++ b/kernels/x86_64/core2-sse3/1f/bli_dotxf_opt_var1.c.alt @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c index 2a873b805..8b2c3974f 100644 --- a/kernels/x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_gemm_opt_d4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c index e7182e01c..74e5cca70 100644 --- a/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_l_opt_d4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c index 9c9a3f7a8..f73b6da0a 100644 --- a/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_gemmtrsm_u_opt_d4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c index d06e80191..16b67541e 100644 --- a/kernels/x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_trsm_l_opt_d4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c b/kernels/x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c index c436030da..0587241f9 100644 --- a/kernels/x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c +++ b/kernels/x86_64/core2-sse3/3/bli_trsm_u_opt_d4x4.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/kernels/x86_64/piledriver/3/bli_gemm_4x6.c b/kernels/x86_64/piledriver/3/bli_gemm_4x6.c index 01080d47a..1e9e11a54 100644 --- a/kernels/x86_64/piledriver/3/bli_gemm_4x6.c +++ b/kernels/x86_64/piledriver/3/bli_gemm_4x6.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/mpi_test/Makefile b/mpi_test/Makefile index b556b38e8..1bb965b4a 100644 --- a/mpi_test/Makefile +++ b/mpi_test/Makefile @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/mpi_test/test_gemm.c b/mpi_test/test_gemm.c index d45cfdf3c..5b50b1176 100644 --- a/mpi_test/test_gemm.c +++ b/mpi_test/test_gemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/mpi_test/test_hemm.c b/mpi_test/test_hemm.c index fcebfb720..13fec0264 100644 --- a/mpi_test/test_hemm.c +++ b/mpi_test/test_hemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/mpi_test/test_her2k.c b/mpi_test/test_her2k.c index 37a5cee7f..67f338db6 100644 --- a/mpi_test/test_her2k.c +++ b/mpi_test/test_her2k.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/mpi_test/test_herk.c b/mpi_test/test_herk.c index a0529cc45..847386ee2 100644 --- a/mpi_test/test_herk.c +++ b/mpi_test/test_herk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/mpi_test/test_trmm.c b/mpi_test/test_trmm.c index 9eb922cdd..ac090d355 100644 --- a/mpi_test/test_trmm.c +++ b/mpi_test/test_trmm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/mpi_test/test_trsm.c b/mpi_test/test_trsm.c index e155e0340..8df1747e1 100644 --- a/mpi_test/test_trsm.c +++ b/mpi_test/test_trsm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/Makefile b/test/Makefile index d2e417726..cc69d7b0d 100644 --- a/test/Makefile +++ b/test/Makefile @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/exec_sizes/Makefile b/test/exec_sizes/Makefile index b4e59d50d..684ba9ba8 100644 --- a/test/exec_sizes/Makefile +++ b/test/exec_sizes/Makefile @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/exec_sizes/grab_top_outputs.sh b/test/exec_sizes/grab_top_outputs.sh index 14094b9c5..123d4720e 100755 --- a/test/exec_sizes/grab_top_outputs.sh +++ b/test/exec_sizes/grab_top_outputs.sh @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/exec_sizes/test_size.c b/test/exec_sizes/test_size.c index b6d25a3a6..45fad3167 100644 --- a/test/exec_sizes/test_size.c +++ b/test/exec_sizes/test_size.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/old/Makefile.prev b/test/old/Makefile.prev index 1f82f4a29..3398f483c 100644 --- a/test/old/Makefile.prev +++ b/test/old/Makefile.prev @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_gemm.c b/test/test_gemm.c index 663de5be6..951d4642b 100644 --- a/test/test_gemm.c +++ b/test/test_gemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_gemv.c b/test/test_gemv.c index 54ccfb1ae..14aa3b87b 100644 --- a/test/test_gemv.c +++ b/test/test_gemv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_ger.c b/test/test_ger.c index a77dbe1c6..a56da98d1 100644 --- a/test/test_ger.c +++ b/test/test_ger.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_hemm.c b/test/test_hemm.c index df81d2db3..073df17dc 100644 --- a/test/test_hemm.c +++ b/test/test_hemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_hemv.c b/test/test_hemv.c index 37bcff6f7..81593e9f0 100644 --- a/test/test_hemv.c +++ b/test/test_hemv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_her.c b/test/test_her.c index 83acf6e9b..a3df5faa1 100644 --- a/test/test_her.c +++ b/test/test_her.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_her2.c b/test/test_her2.c index edf89128c..1ee954c07 100644 --- a/test/test_her2.c +++ b/test/test_her2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_her2k.c b/test/test_her2k.c index e2e928904..c1a5a5204 100644 --- a/test/test_her2k.c +++ b/test/test_her2k.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_herk.c b/test/test_herk.c index 4d05f7269..858467cc8 100644 --- a/test/test_herk.c +++ b/test/test_herk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_trmm.c b/test/test_trmm.c index 3ef5496be..be3ec7742 100644 --- a/test/test_trmm.c +++ b/test/test_trmm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_trmv.c b/test/test_trmv.c index 16b0b70f7..2fdb49fdc 100644 --- a/test/test_trmv.c +++ b/test/test_trmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_trsm.c b/test/test_trsm.c index f347c37cb..5ec1f9460 100644 --- a/test/test_trsm.c +++ b/test/test_trsm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/test/test_trsv.c b/test/test_trsv.c index d23b66eda..1a8777aca 100644 --- a/test/test_trsv.c +++ b/test/test_trsv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/Makefile b/testsuite/Makefile index 79ff6a89c..24ad84425 100644 --- a/testsuite/Makefile +++ b/testsuite/Makefile @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_addm.c b/testsuite/src/test_addm.c index c754368ed..da27a3a61 100644 --- a/testsuite/src/test_addm.c +++ b/testsuite/src/test_addm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_addm.h b/testsuite/src/test_addm.h index d3259cbc2..e8884b557 100644 --- a/testsuite/src/test_addm.h +++ b/testsuite/src/test_addm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_addv.c b/testsuite/src/test_addv.c index b26d9e1d1..b8909944a 100644 --- a/testsuite/src/test_addv.c +++ b/testsuite/src/test_addv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_addv.h b/testsuite/src/test_addv.h index 7f1586b5c..e58a0b0b2 100644 --- a/testsuite/src/test_addv.h +++ b/testsuite/src/test_addv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_axpy2v.c b/testsuite/src/test_axpy2v.c index cae04006a..a622a1b6e 100644 --- a/testsuite/src/test_axpy2v.c +++ b/testsuite/src/test_axpy2v.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_axpy2v.h b/testsuite/src/test_axpy2v.h index 157a3dd17..15aa6a046 100644 --- a/testsuite/src/test_axpy2v.h +++ b/testsuite/src/test_axpy2v.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_axpyf.c b/testsuite/src/test_axpyf.c index 021d030d7..e85defc53 100644 --- a/testsuite/src/test_axpyf.c +++ b/testsuite/src/test_axpyf.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_axpyf.h b/testsuite/src/test_axpyf.h index ff4453a28..c41a45941 100644 --- a/testsuite/src/test_axpyf.h +++ b/testsuite/src/test_axpyf.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_axpym.c b/testsuite/src/test_axpym.c index 6f9574b11..da5124bde 100644 --- a/testsuite/src/test_axpym.c +++ b/testsuite/src/test_axpym.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_axpym.h b/testsuite/src/test_axpym.h index e532b6183..ae5da9031 100644 --- a/testsuite/src/test_axpym.h +++ b/testsuite/src/test_axpym.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_axpyv.c b/testsuite/src/test_axpyv.c index 48f505afc..2543ccb1c 100644 --- a/testsuite/src/test_axpyv.c +++ b/testsuite/src/test_axpyv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_axpyv.h b/testsuite/src/test_axpyv.h index d74b3f03f..803fa1c94 100644 --- a/testsuite/src/test_axpyv.h +++ b/testsuite/src/test_axpyv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_copym.c b/testsuite/src/test_copym.c index 375f9a4af..66a7bbd96 100644 --- a/testsuite/src/test_copym.c +++ b/testsuite/src/test_copym.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_copym.h b/testsuite/src/test_copym.h index 82081e8fd..14be66d4c 100644 --- a/testsuite/src/test_copym.h +++ b/testsuite/src/test_copym.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_copyv.c b/testsuite/src/test_copyv.c index 772116535..5f97eb078 100644 --- a/testsuite/src/test_copyv.c +++ b/testsuite/src/test_copyv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_copyv.h b/testsuite/src/test_copyv.h index 69b2401bd..39ab8a916 100644 --- a/testsuite/src/test_copyv.h +++ b/testsuite/src/test_copyv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotaxpyv.c b/testsuite/src/test_dotaxpyv.c index bc55fc168..4fa0fbba9 100644 --- a/testsuite/src/test_dotaxpyv.c +++ b/testsuite/src/test_dotaxpyv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotaxpyv.h b/testsuite/src/test_dotaxpyv.h index 93c7edca0..140dd5c3e 100644 --- a/testsuite/src/test_dotaxpyv.h +++ b/testsuite/src/test_dotaxpyv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotv.c b/testsuite/src/test_dotv.c index 40ecf4fb8..4bcd30b16 100644 --- a/testsuite/src/test_dotv.c +++ b/testsuite/src/test_dotv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotv.h b/testsuite/src/test_dotv.h index f6faf3483..e52a5871e 100644 --- a/testsuite/src/test_dotv.h +++ b/testsuite/src/test_dotv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotxaxpyf.c b/testsuite/src/test_dotxaxpyf.c index 63b51b3b0..b4361470a 100644 --- a/testsuite/src/test_dotxaxpyf.c +++ b/testsuite/src/test_dotxaxpyf.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotxaxpyf.h b/testsuite/src/test_dotxaxpyf.h index 3d526f36d..1d07c571b 100644 --- a/testsuite/src/test_dotxaxpyf.h +++ b/testsuite/src/test_dotxaxpyf.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotxf.c b/testsuite/src/test_dotxf.c index 1e8cae5bc..d9a21c463 100644 --- a/testsuite/src/test_dotxf.c +++ b/testsuite/src/test_dotxf.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotxf.h b/testsuite/src/test_dotxf.h index d633d2d55..dcfbd1fee 100644 --- a/testsuite/src/test_dotxf.h +++ b/testsuite/src/test_dotxf.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotxv.c b/testsuite/src/test_dotxv.c index ea6d73012..435b9384a 100644 --- a/testsuite/src/test_dotxv.c +++ b/testsuite/src/test_dotxv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_dotxv.h b/testsuite/src/test_dotxv.h index cfdd2873d..6c3aa00b7 100644 --- a/testsuite/src/test_dotxv.h +++ b/testsuite/src/test_dotxv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_gemm.c b/testsuite/src/test_gemm.c index f62b16a83..0d5732f52 100644 --- a/testsuite/src/test_gemm.c +++ b/testsuite/src/test_gemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_gemm.h b/testsuite/src/test_gemm.h index aa265f4a0..18f55ee1d 100644 --- a/testsuite/src/test_gemm.h +++ b/testsuite/src/test_gemm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_gemm_ukr.c b/testsuite/src/test_gemm_ukr.c index edeb39b82..df8136ed6 100644 --- a/testsuite/src/test_gemm_ukr.c +++ b/testsuite/src/test_gemm_ukr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_gemm_ukr.h b/testsuite/src/test_gemm_ukr.h index e75d1ff29..a464df86c 100644 --- a/testsuite/src/test_gemm_ukr.h +++ b/testsuite/src/test_gemm_ukr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_gemmtrsm_ukr.c b/testsuite/src/test_gemmtrsm_ukr.c index 958e8efe4..472de3738 100644 --- a/testsuite/src/test_gemmtrsm_ukr.c +++ b/testsuite/src/test_gemmtrsm_ukr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_gemmtrsm_ukr.h b/testsuite/src/test_gemmtrsm_ukr.h index 5c41e1f43..06c9545e5 100644 --- a/testsuite/src/test_gemmtrsm_ukr.h +++ b/testsuite/src/test_gemmtrsm_ukr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_gemv.c b/testsuite/src/test_gemv.c index 7f665021e..b866a5ed6 100644 --- a/testsuite/src/test_gemv.c +++ b/testsuite/src/test_gemv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_gemv.h b/testsuite/src/test_gemv.h index 85f611908..1450d3a5e 100644 --- a/testsuite/src/test_gemv.h +++ b/testsuite/src/test_gemv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_ger.c b/testsuite/src/test_ger.c index 9cf8e5074..6e6e9ef1c 100644 --- a/testsuite/src/test_ger.c +++ b/testsuite/src/test_ger.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_ger.h b/testsuite/src/test_ger.h index be26d04a2..457821899 100644 --- a/testsuite/src/test_ger.h +++ b/testsuite/src/test_ger.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_hemm.c b/testsuite/src/test_hemm.c index 79b824565..614de7f77 100644 --- a/testsuite/src/test_hemm.c +++ b/testsuite/src/test_hemm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_hemm.h b/testsuite/src/test_hemm.h index 358807d3c..4da5d1096 100644 --- a/testsuite/src/test_hemm.h +++ b/testsuite/src/test_hemm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_hemv.c b/testsuite/src/test_hemv.c index b9410b6bd..9db3b9398 100644 --- a/testsuite/src/test_hemv.c +++ b/testsuite/src/test_hemv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_hemv.h b/testsuite/src/test_hemv.h index 92b8621a1..501cdb3c8 100644 --- a/testsuite/src/test_hemv.h +++ b/testsuite/src/test_hemv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_her.c b/testsuite/src/test_her.c index d0a166776..b7d431158 100644 --- a/testsuite/src/test_her.c +++ b/testsuite/src/test_her.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_her.h b/testsuite/src/test_her.h index dc947cf02..977d2c5b7 100644 --- a/testsuite/src/test_her.h +++ b/testsuite/src/test_her.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_her2.c b/testsuite/src/test_her2.c index 6a582730c..5b05c9b2a 100644 --- a/testsuite/src/test_her2.c +++ b/testsuite/src/test_her2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_her2.h b/testsuite/src/test_her2.h index 687230a8c..da7a475b8 100644 --- a/testsuite/src/test_her2.h +++ b/testsuite/src/test_her2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_her2k.c b/testsuite/src/test_her2k.c index 3ab177e37..bc5b56efc 100644 --- a/testsuite/src/test_her2k.c +++ b/testsuite/src/test_her2k.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_her2k.h b/testsuite/src/test_her2k.h index fd4d273a9..602740098 100644 --- a/testsuite/src/test_her2k.h +++ b/testsuite/src/test_her2k.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_herk.c b/testsuite/src/test_herk.c index c182b8cf3..1ff461786 100644 --- a/testsuite/src/test_herk.c +++ b/testsuite/src/test_herk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_herk.h b/testsuite/src/test_herk.h index 1bcbf13d9..8139ac2a2 100644 --- a/testsuite/src/test_herk.h +++ b/testsuite/src/test_herk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_libblis.c b/testsuite/src/test_libblis.c index 13527a7c2..9bfc3a573 100644 --- a/testsuite/src/test_libblis.c +++ b/testsuite/src/test_libblis.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_libblis.h b/testsuite/src/test_libblis.h index eecfbdece..1609b0c66 100644 --- a/testsuite/src/test_libblis.h +++ b/testsuite/src/test_libblis.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_normfm.c b/testsuite/src/test_normfm.c index 24129bbea..487735c2c 100644 --- a/testsuite/src/test_normfm.c +++ b/testsuite/src/test_normfm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_normfm.h b/testsuite/src/test_normfm.h index 8949bf63a..7c87a15cf 100644 --- a/testsuite/src/test_normfm.h +++ b/testsuite/src/test_normfm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_normfv.c b/testsuite/src/test_normfv.c index 06ab1b9f9..c732a6589 100644 --- a/testsuite/src/test_normfv.c +++ b/testsuite/src/test_normfv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_normfv.h b/testsuite/src/test_normfv.h index 10944dabf..febae1fde 100644 --- a/testsuite/src/test_normfv.h +++ b/testsuite/src/test_normfv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_randm.c b/testsuite/src/test_randm.c index 8b962ee00..cef126d4c 100644 --- a/testsuite/src/test_randm.c +++ b/testsuite/src/test_randm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_randm.h b/testsuite/src/test_randm.h index 3e73ac573..6810e14cc 100644 --- a/testsuite/src/test_randm.h +++ b/testsuite/src/test_randm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_randv.c b/testsuite/src/test_randv.c index f910507bb..b74100f8f 100644 --- a/testsuite/src/test_randv.c +++ b/testsuite/src/test_randv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_randv.h b/testsuite/src/test_randv.h index a31e1f67b..4b9bc9f3f 100644 --- a/testsuite/src/test_randv.h +++ b/testsuite/src/test_randv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_scal2m.c b/testsuite/src/test_scal2m.c index 8f3210a76..2816c8a08 100644 --- a/testsuite/src/test_scal2m.c +++ b/testsuite/src/test_scal2m.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_scal2m.h b/testsuite/src/test_scal2m.h index ccd925206..e32a4df74 100644 --- a/testsuite/src/test_scal2m.h +++ b/testsuite/src/test_scal2m.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_scal2v.c b/testsuite/src/test_scal2v.c index 0c42be768..184b50067 100644 --- a/testsuite/src/test_scal2v.c +++ b/testsuite/src/test_scal2v.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_scal2v.h b/testsuite/src/test_scal2v.h index cab1f835a..28714aefe 100644 --- a/testsuite/src/test_scal2v.h +++ b/testsuite/src/test_scal2v.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_scalm.c b/testsuite/src/test_scalm.c index dbf46bcef..1c08b879c 100644 --- a/testsuite/src/test_scalm.c +++ b/testsuite/src/test_scalm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_scalm.h b/testsuite/src/test_scalm.h index 20bec6c79..505c51acb 100644 --- a/testsuite/src/test_scalm.h +++ b/testsuite/src/test_scalm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_scalv.c b/testsuite/src/test_scalv.c index 15b12a456..3aa8b6a2d 100644 --- a/testsuite/src/test_scalv.c +++ b/testsuite/src/test_scalv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_scalv.h b/testsuite/src/test_scalv.h index 19ce107e3..b9fbff9ea 100644 --- a/testsuite/src/test_scalv.h +++ b/testsuite/src/test_scalv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_setm.c b/testsuite/src/test_setm.c index e38b78320..316e8edad 100644 --- a/testsuite/src/test_setm.c +++ b/testsuite/src/test_setm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_setm.h b/testsuite/src/test_setm.h index 0ce00cb29..e31aa97b6 100644 --- a/testsuite/src/test_setm.h +++ b/testsuite/src/test_setm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_setv.c b/testsuite/src/test_setv.c index 10eb60b73..dbf7023e0 100644 --- a/testsuite/src/test_setv.c +++ b/testsuite/src/test_setv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_setv.h b/testsuite/src/test_setv.h index 76bdcd205..6b99afb32 100644 --- a/testsuite/src/test_setv.h +++ b/testsuite/src/test_setv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_subm.c b/testsuite/src/test_subm.c index 9d0f12f2b..eca95e0f4 100644 --- a/testsuite/src/test_subm.c +++ b/testsuite/src/test_subm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_subm.h b/testsuite/src/test_subm.h index 9f7f7eb89..d83457013 100644 --- a/testsuite/src/test_subm.h +++ b/testsuite/src/test_subm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_subv.c b/testsuite/src/test_subv.c index 459bb83dd..2b7f8c3ce 100644 --- a/testsuite/src/test_subv.c +++ b/testsuite/src/test_subv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_subv.h b/testsuite/src/test_subv.h index 6b121f093..8701cdb76 100644 --- a/testsuite/src/test_subv.h +++ b/testsuite/src/test_subv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_symm.c b/testsuite/src/test_symm.c index 639ef9adb..ad4d6f1a1 100644 --- a/testsuite/src/test_symm.c +++ b/testsuite/src/test_symm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_symm.h b/testsuite/src/test_symm.h index c11cb4d3a..eba15c5da 100644 --- a/testsuite/src/test_symm.h +++ b/testsuite/src/test_symm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_symv.c b/testsuite/src/test_symv.c index bbe06f202..e628f2f16 100644 --- a/testsuite/src/test_symv.c +++ b/testsuite/src/test_symv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_symv.h b/testsuite/src/test_symv.h index 6924c37c0..842f239ba 100644 --- a/testsuite/src/test_symv.h +++ b/testsuite/src/test_symv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_syr.c b/testsuite/src/test_syr.c index c83db7e11..731fc994e 100644 --- a/testsuite/src/test_syr.c +++ b/testsuite/src/test_syr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_syr.h b/testsuite/src/test_syr.h index 9f9cf2cb6..471af176c 100644 --- a/testsuite/src/test_syr.h +++ b/testsuite/src/test_syr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_syr2.c b/testsuite/src/test_syr2.c index 5a1016736..480329f77 100644 --- a/testsuite/src/test_syr2.c +++ b/testsuite/src/test_syr2.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_syr2.h b/testsuite/src/test_syr2.h index 3cf0158cd..345fc3480 100644 --- a/testsuite/src/test_syr2.h +++ b/testsuite/src/test_syr2.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_syr2k.c b/testsuite/src/test_syr2k.c index 5bb218af2..3629e4237 100644 --- a/testsuite/src/test_syr2k.c +++ b/testsuite/src/test_syr2k.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_syr2k.h b/testsuite/src/test_syr2k.h index d878bd164..799131867 100644 --- a/testsuite/src/test_syr2k.h +++ b/testsuite/src/test_syr2k.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_syrk.c b/testsuite/src/test_syrk.c index 892d30b6a..932dbc721 100644 --- a/testsuite/src/test_syrk.c +++ b/testsuite/src/test_syrk.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_syrk.h b/testsuite/src/test_syrk.h index 31aaf9960..c631d6358 100644 --- a/testsuite/src/test_syrk.h +++ b/testsuite/src/test_syrk.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trmm.c b/testsuite/src/test_trmm.c index c427194de..8ffd1c739 100644 --- a/testsuite/src/test_trmm.c +++ b/testsuite/src/test_trmm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trmm.h b/testsuite/src/test_trmm.h index db1e72dd5..04b810d72 100644 --- a/testsuite/src/test_trmm.h +++ b/testsuite/src/test_trmm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trmm3.c b/testsuite/src/test_trmm3.c index d90d01b3c..a36069b54 100644 --- a/testsuite/src/test_trmm3.c +++ b/testsuite/src/test_trmm3.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trmm3.h b/testsuite/src/test_trmm3.h index 7df146889..f7b849737 100644 --- a/testsuite/src/test_trmm3.h +++ b/testsuite/src/test_trmm3.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trmv.c b/testsuite/src/test_trmv.c index cf8d39115..d122f1465 100644 --- a/testsuite/src/test_trmv.c +++ b/testsuite/src/test_trmv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trmv.h b/testsuite/src/test_trmv.h index 21eda6571..9b8089842 100644 --- a/testsuite/src/test_trmv.h +++ b/testsuite/src/test_trmv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trsm.c b/testsuite/src/test_trsm.c index db137b6e1..103ab81bf 100644 --- a/testsuite/src/test_trsm.c +++ b/testsuite/src/test_trsm.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trsm.h b/testsuite/src/test_trsm.h index 2643999b5..f16fe8fc1 100644 --- a/testsuite/src/test_trsm.h +++ b/testsuite/src/test_trsm.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trsm_ukr.c b/testsuite/src/test_trsm_ukr.c index 8072f1d86..4e8c8bedb 100644 --- a/testsuite/src/test_trsm_ukr.c +++ b/testsuite/src/test_trsm_ukr.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trsm_ukr.h b/testsuite/src/test_trsm_ukr.h index cb3627827..b95883138 100644 --- a/testsuite/src/test_trsm_ukr.h +++ b/testsuite/src/test_trsm_ukr.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trsv.c b/testsuite/src/test_trsv.c index 9289d5abd..d6bbd1574 100644 --- a/testsuite/src/test_trsv.c +++ b/testsuite/src/test_trsv.c @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/testsuite/src/test_trsv.h b/testsuite/src/test_trsv.h index 2e5bb2e45..1cda2950f 100644 --- a/testsuite/src/test_trsv.h +++ b/testsuite/src/test_trsv.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/build/bli_config.h b/windows/build/bli_config.h index 5e3fc1c8e..47dd0c983 100644 --- a/windows/build/bli_config.h +++ b/windows/build/bli_config.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/build/bli_kernel.h b/windows/build/bli_kernel.h index 388443d1e..1b5bd8225 100644 --- a/windows/build/bli_kernel.h +++ b/windows/build/bli_kernel.h @@ -14,9 +14,9 @@ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/build/config.mk.in b/windows/build/config.mk.in index 400359bd1..525eee039 100644 --- a/windows/build/config.mk.in +++ b/windows/build/config.mk.in @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/build/defs.mk b/windows/build/defs.mk index 673276269..2c7775b21 100644 --- a/windows/build/defs.mk +++ b/windows/build/defs.mk @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/build/gather-src-for-windows.py b/windows/build/gather-src-for-windows.py index 98e4e8019..1b53dbfcb 100644 --- a/windows/build/gather-src-for-windows.py +++ b/windows/build/gather-src-for-windows.py @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/build/gen-check-rev-file.py b/windows/build/gen-check-rev-file.py index 5b715330b..9ea7b847b 100644 --- a/windows/build/gen-check-rev-file.py +++ b/windows/build/gen-check-rev-file.py @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/build/gen-config-file.py b/windows/build/gen-config-file.py index 446f848a3..630191bea 100644 --- a/windows/build/gen-config-file.py +++ b/windows/build/gen-config-file.py @@ -14,9 +14,9 @@ # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. -# - Neither the name of The University of Texas nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/build/nmake-help.cmd b/windows/build/nmake-help.cmd index a9f928110..7ea6f83ab 100644 --- a/windows/build/nmake-help.cmd +++ b/windows/build/nmake-help.cmd @@ -14,9 +14,9 @@ :: - Redistributions in binary form must reproduce the above copyright :: notice, this list of conditions and the following disclaimer in the :: documentation and/or other materials provided with the distribution. -:: - Neither the name of The University of Texas nor the names of its -:: contributors may be used to endorse or promote products derived -:: from this software without specific prior written permission. +:: - Neither the name of The University of Texas at Austin nor the names +:: of its contributors may be used to endorse or promote products +:: derived from this software without specific prior written permission. :: :: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS :: "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/configure.cmd b/windows/configure.cmd index b70c2d503..98115790e 100644 --- a/windows/configure.cmd +++ b/windows/configure.cmd @@ -14,9 +14,9 @@ :: - Redistributions in binary form must reproduce the above copyright :: notice, this list of conditions and the following disclaimer in the :: documentation and/or other materials provided with the distribution. -:: - Neither the name of The University of Texas nor the names of its -:: contributors may be used to endorse or promote products derived -:: from this software without specific prior written permission. +:: - Neither the name of The University of Texas at Austin nor the names +:: of its contributors may be used to endorse or promote products +:: derived from this software without specific prior written permission. :: :: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS :: "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT From 2a09d24463d358be6243b24f112fad057c2aefe0 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Mon, 14 Jul 2014 16:17:09 -0500 Subject: [PATCH 13/19] Reverted power7 symlinks destroyed by sed script. Details: - Reverted two symlinks, in kernels/power7/3/test, back to being symlinks after recursive-sed.sh mistakenly replaced them with copies of the actual files to which they referred. Meant to include this in previous commit. --- kernels/power7/3/test/bli_gemm_opt_8x4.c | 551 +---------------------- kernels/power7/3/test/bli_gemm_opt_8x4.h | 85 +--- 2 files changed, 2 insertions(+), 634 deletions(-) mode change 100755 => 120000 kernels/power7/3/test/bli_gemm_opt_8x4.c mode change 100755 => 120000 kernels/power7/3/test/bli_gemm_opt_8x4.h diff --git a/kernels/power7/3/test/bli_gemm_opt_8x4.c b/kernels/power7/3/test/bli_gemm_opt_8x4.c deleted file mode 100755 index cd8ac3be0..000000000 --- a/kernels/power7/3/test/bli_gemm_opt_8x4.c +++ /dev/null @@ -1,550 +0,0 @@ -/* - - (C) Copyright IBM Corporation 2013 - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas at Austin nor the names - of its contributors may be used to endorse or promote products - derived derived derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -*/ - -#ifdef UTEST -#include "blis_utest.h" -#else -#include "blis.h" -#endif -#include - -#define COLMAJ_INDEX(row,col,ld) ((col*ld)+row) -#define ROWMAJ_INDEX(row,col,ld) ((row*ld)+col) -#define BLIS_INDEX(row,col,rs,cs) ((row*rs)+(col*cs)) - -/* - * Perform - * c = beta * c + alpha * a * b - * where - * alpha & beta are scalars - * c is mr x nr in blis-format, (col-stride & row-stride) - * a is mr x k in packed col-maj format (leading dim is mr) - * b is k x nr in packed row-maj format (leading dim is nr) - */ -void bli_sgemm_opt_8x4( - dim_t k, - float* restrict alpha, - float* restrict a, - float* restrict b, - float* restrict beta, - float* restrict c, inc_t rs_c, inc_t cs_c, - auxinfo_t* data - ) -{ -#if 0 || defined(UTEST) - const long MR = BLIS_DEFAULT_MR_S, NR = BLIS_DEFAULT_NR_S; - const long LDA = MR, LDB = NR; - long i, j, kk; - float c00; - - for (i=0; i < MR; i++) { - for (j=0; j < NR; j++) { - c00 = c[BLIS_INDEX(i,j,rs_c,cs_c)] * *beta; - for (kk=0; kk < k; kk++) - c00 += *alpha * (a[COLMAJ_INDEX(i,kk,LDA)] * b[ROWMAJ_INDEX(kk,j,LDB)]); - c[BLIS_INDEX(i,j,rs_c,cs_c)] = c00; - } - } -#else - BLIS_SGEMM_UKERNEL_REF(k, alpha, a, b, beta, c, rs_c, cs_c, data); -#endif -} - -/* - * Perform - * c = beta * c + alpha * a * b - * where - * alpha & beta are scalars - * c is mr x nr in blis-format, (col-stride & row-stride) - * a is mr x k in packed col-maj format (leading dim is mr) - * b is k x nr in packed row-maj format (leading dim is nr) - */ -void bli_dgemm_opt_8x4( - dim_t k, - double* restrict alpha, - double* restrict a, - double* restrict b, - double* restrict beta, - double* restrict c, inc_t rs_c, inc_t cs_c, - auxinfo_t* data - ) -{ -#if 1 - if (rs_c == 1) { - // Optimized code for case where C columns are contiguous (column-major C) - vector double vzero = vec_splats( 0.0 ); - - vector double vc00_10 = vzero; - vector double vc20_30 = vzero; - vector double vc40_50 = vzero; - vector double vc60_70 = vzero; - vector double vc01_11 = vzero; - vector double vc21_31 = vzero; - vector double vc41_51 = vzero; - vector double vc61_71 = vzero; - vector double vc02_12 = vzero; - vector double vc22_32 = vzero; - vector double vc42_52 = vzero; - vector double vc62_72 = vzero; - vector double vc03_13 = vzero; - vector double vc23_33 = vzero; - vector double vc43_53 = vzero; - vector double vc63_73 = vzero; - - unsigned long long pa = (unsigned long long)a; - unsigned long long pb = (unsigned long long)b; - -#if 0 - unsigned long long d1 = 1*sizeof(double); - unsigned long long d2 = 2*sizeof(double); - unsigned long long d3 = 3*sizeof(double); - unsigned long long d4 = 4*sizeof(double); - unsigned long long d6 = 6*sizeof(double); -#else - // ppc64 linux abi: r14-r31 Nonvolatile registers used for local variables - register unsigned long long d1 __asm ("r21") = 1*sizeof(double); - register unsigned long long d2 __asm ("r22") = 2*sizeof(double); - register unsigned long long d3 __asm ("r23") = 3*sizeof(double); - register unsigned long long d4 __asm ("r24") = 4*sizeof(double); - register unsigned long long d6 __asm ("r26") = 6*sizeof(double); - - __asm__ volatile (";" : "=r" (d1) : "r" (d1) ); - __asm__ volatile (";" : "=r" (d2) : "r" (d2) ); - __asm__ volatile (";" : "=r" (d3) : "r" (d3) ); - __asm__ volatile (";" : "=r" (d4) : "r" (d4) ); - __asm__ volatile (";" : "=r" (d6) : "r" (d6) ); -#endif - - int kk; - for (kk=k; kk > 1; kk-=2) { - - vector double va00_10 = *(vector double *)( pa+0 ); - vector double va20_30 = *(vector double *)( pa+d2 ); - vector double va40_50 = *(vector double *)( pa+d4 ); - vector double va60_70 = *(vector double *)( pa+d6 ); - pa += 8*sizeof(double); - - vector double vb00 = vec_splats( *(double *)( pb+0 ) ); - vector double vb01 = vec_splats( *(double *)( pb+d1 ) ); - vector double vb02 = vec_splats( *(double *)( pb+d2 ) ); - vector double vb03 = vec_splats( *(double *)( pb+d3 ) ); - pb += 4*sizeof(double); - - vc00_10 = vec_madd(va00_10, vb00, vc00_10); - vc20_30 = vec_madd(va20_30, vb00, vc20_30); - vc40_50 = vec_madd(va40_50, vb00, vc40_50); - vc60_70 = vec_madd(va60_70, vb00, vc60_70); - vc01_11 = vec_madd(va00_10, vb01, vc01_11); - vc21_31 = vec_madd(va20_30, vb01, vc21_31); - vc41_51 = vec_madd(va40_50, vb01, vc41_51); - vc61_71 = vec_madd(va60_70, vb01, vc61_71); - vc02_12 = vec_madd(va00_10, vb02, vc02_12); - vc22_32 = vec_madd(va20_30, vb02, vc22_32); - vc42_52 = vec_madd(va40_50, vb02, vc42_52); - vc62_72 = vec_madd(va60_70, vb02, vc62_72); - vc03_13 = vec_madd(va00_10, vb03, vc03_13); - vc23_33 = vec_madd(va20_30, vb03, vc23_33); - vc43_53 = vec_madd(va40_50, vb03, vc43_53); - vc63_73 = vec_madd(va60_70, vb03, vc63_73); - - va00_10 = *(vector double *)( pa+0 ); - va20_30 = *(vector double *)( pa+d2 ); - va40_50 = *(vector double *)( pa+d4 ); - va60_70 = *(vector double *)( pa+d6 ); - pa += 8*sizeof(double); - - vb00 = vec_splats( *(double *)( pb+0 ) ); - vb01 = vec_splats( *(double *)( pb+d1 ) ); - vb02 = vec_splats( *(double *)( pb+d2 ) ); - vb03 = vec_splats( *(double *)( pb+d3 ) ); - pb += 4*sizeof(double); - - vc00_10 = vec_madd(va00_10, vb00, vc00_10); - vc20_30 = vec_madd(va20_30, vb00, vc20_30); - vc40_50 = vec_madd(va40_50, vb00, vc40_50); - vc60_70 = vec_madd(va60_70, vb00, vc60_70); - vc01_11 = vec_madd(va00_10, vb01, vc01_11); - vc21_31 = vec_madd(va20_30, vb01, vc21_31); - vc41_51 = vec_madd(va40_50, vb01, vc41_51); - vc61_71 = vec_madd(va60_70, vb01, vc61_71); - vc02_12 = vec_madd(va00_10, vb02, vc02_12); - vc22_32 = vec_madd(va20_30, vb02, vc22_32); - vc42_52 = vec_madd(va40_50, vb02, vc42_52); - vc62_72 = vec_madd(va60_70, vb02, vc62_72); - vc03_13 = vec_madd(va00_10, vb03, vc03_13); - vc23_33 = vec_madd(va20_30, vb03, vc23_33); - vc43_53 = vec_madd(va40_50, vb03, vc43_53); - vc63_73 = vec_madd(va60_70, vb03, vc63_73); - } - - for (kk=kk; kk > 0; kk--) { - - vector double va00_10 = *(vector double *)( pa+0 ); - vector double va20_30 = *(vector double *)( pa+d2 ); - vector double va40_50 = *(vector double *)( pa+d4 ); - vector double va60_70 = *(vector double *)( pa+d6 ); - pa += 8*sizeof(double); - - vector double vb00 = vec_splats( *(double *)( pb+0 ) ); - vector double vb01 = vec_splats( *(double *)( pb+d1 ) ); - vector double vb02 = vec_splats( *(double *)( pb+d2 ) ); - vector double vb03 = vec_splats( *(double *)( pb+d3 ) ); - pb += 4*sizeof(double); - - vc00_10 = vec_madd(va00_10, vb00, vc00_10); - vc20_30 = vec_madd(va20_30, vb00, vc20_30); - vc40_50 = vec_madd(va40_50, vb00, vc40_50); - vc60_70 = vec_madd(va60_70, vb00, vc60_70); - vc01_11 = vec_madd(va00_10, vb01, vc01_11); - vc21_31 = vec_madd(va20_30, vb01, vc21_31); - vc41_51 = vec_madd(va40_50, vb01, vc41_51); - vc61_71 = vec_madd(va60_70, vb01, vc61_71); - vc02_12 = vec_madd(va00_10, vb02, vc02_12); - vc22_32 = vec_madd(va20_30, vb02, vc22_32); - vc42_52 = vec_madd(va40_50, vb02, vc42_52); - vc62_72 = vec_madd(va60_70, vb02, vc62_72); - vc03_13 = vec_madd(va00_10, vb03, vc03_13); - vc23_33 = vec_madd(va20_30, vb03, vc23_33); - vc43_53 = vec_madd(va40_50, vb03, vc43_53); - vc63_73 = vec_madd(va60_70, vb03, vc63_73); - } - - // The following code is dependent on rs_c == 1 - - vector double valpha = vec_splats( *alpha ); - vector double vbeta = (vector double) { *beta, *beta }; - - vector double *pc = (vector double *)c; - - vc00_10 = vec_mul(valpha, vc00_10); - vc20_30 = vec_mul(valpha, vc20_30); - vc40_50 = vec_mul(valpha, vc40_50); - vc60_70 = vec_mul(valpha, vc60_70); - - pc[0] = vec_madd( pc[0], vbeta, vc00_10); - pc[1] = vec_madd( pc[1], vbeta, vc20_30); - pc[2] = vec_madd( pc[2], vbeta, vc40_50); - pc[3] = vec_madd( pc[3], vbeta, vc60_70); - pc += cs_c/2; - - vc01_11 = vec_mul(valpha, vc01_11); - vc21_31 = vec_mul(valpha, vc21_31); - vc41_51 = vec_mul(valpha, vc41_51); - vc61_71 = vec_mul(valpha, vc61_71); - - pc[0] = vec_madd( pc[0], vbeta, vc01_11); - pc[1] = vec_madd( pc[1], vbeta, vc21_31); - pc[2] = vec_madd( pc[2], vbeta, vc41_51); - pc[3] = vec_madd( pc[3], vbeta, vc61_71); - pc += cs_c/2; - - vc02_12 = vec_mul(valpha, vc02_12); - vc22_32 = vec_mul(valpha, vc22_32); - vc42_52 = vec_mul(valpha, vc42_52); - vc62_72 = vec_mul(valpha, vc62_72); - - pc[0] = vec_madd( pc[0], vbeta, vc02_12); - pc[1] = vec_madd( pc[1], vbeta, vc22_32); - pc[2] = vec_madd( pc[2], vbeta, vc42_52); - pc[3] = vec_madd( pc[3], vbeta, vc62_72); - pc += cs_c/2; - - vc03_13 = vec_mul(valpha, vc03_13); - vc23_33 = vec_mul(valpha, vc23_33); - vc43_53 = vec_mul(valpha, vc43_53); - vc63_73 = vec_mul(valpha, vc63_73); - - pc[0] = vec_madd( pc[0], vbeta, vc03_13); - pc[1] = vec_madd( pc[1], vbeta, vc23_33); - pc[2] = vec_madd( pc[2], vbeta, vc43_53); - pc[3] = vec_madd( pc[3], vbeta, vc63_73); - } - else -#endif -#if 1 - if ( cs_c == 1 ) { - // Optimized code for case where C rows are contiguous (i.e. C is row-major) - - vector double vzero = vec_splats( 0.0 ); - - vector double vc00_01 = vzero; - vector double vc02_03 = vzero; - vector double vc10_11 = vzero; - vector double vc12_13 = vzero; - vector double vc20_21 = vzero; - vector double vc22_23 = vzero; - vector double vc30_31 = vzero; - vector double vc32_33 = vzero; - vector double vc40_41 = vzero; - vector double vc42_43 = vzero; - vector double vc50_51 = vzero; - vector double vc52_53 = vzero; - vector double vc60_61 = vzero; - vector double vc62_63 = vzero; - vector double vc70_71 = vzero; - vector double vc72_73 = vzero; - - unsigned long long pa = (unsigned long long)a; - unsigned long long pb = (unsigned long long)b; - -#if 0 - unsigned long long d1 = 1*sizeof(double); - unsigned long long d2 = 2*sizeof(double); - unsigned long long d3 = 3*sizeof(double); - unsigned long long d4 = 4*sizeof(double); - unsigned long long d6 = 6*sizeof(double); -#else - // ppc64 linux abi: r14-r31 Nonvolatile registers used for local variables - register unsigned long long d1 __asm ("r21") = 1*sizeof(double); - register unsigned long long d2 __asm ("r22") = 2*sizeof(double); - register unsigned long long d3 __asm ("r23") = 3*sizeof(double); - register unsigned long long d4 __asm ("r24") = 4*sizeof(double); - register unsigned long long d5 __asm ("r25") = 5*sizeof(double); - register unsigned long long d6 __asm ("r26") = 6*sizeof(double); - register unsigned long long d7 __asm ("r27") = 7*sizeof(double); - - __asm__ volatile (";" : "=r" (d1) : "r" (d1) ); - __asm__ volatile (";" : "=r" (d2) : "r" (d2) ); - __asm__ volatile (";" : "=r" (d3) : "r" (d3) ); - __asm__ volatile (";" : "=r" (d4) : "r" (d4) ); - __asm__ volatile (";" : "=r" (d5) : "r" (d5) ); - __asm__ volatile (";" : "=r" (d6) : "r" (d6) ); - __asm__ volatile (";" : "=r" (d7) : "r" (d7) ); -#endif - - int kk; - for (kk=k; kk > 0; kk--) { - vector double va00 = vec_splats( *(double *)( pa+0 ) ); - vector double va10 = vec_splats( *(double *)( pa+d1 ) ); - vector double va20 = vec_splats( *(double *)( pa+d2 ) ); - vector double va30 = vec_splats( *(double *)( pa+d3 ) ); - vector double va40 = vec_splats( *(double *)( pa+d4 ) ); - vector double va50 = vec_splats( *(double *)( pa+d5 ) ); - vector double va60 = vec_splats( *(double *)( pa+d6 ) ); - vector double va70 = vec_splats( *(double *)( pa+d7 ) ); - pa += 8*sizeof(double); - - vector double vb00_01 = *(vector double *)( pb+0 ); - vector double vb02_03 = *(vector double *)( pb+d2 ); - pb += 4*sizeof(double); - - vc00_01 = vec_madd(va00, vb00_01, vc00_01); - vc02_03 = vec_madd(va00, vb02_03, vc02_03); - vc10_11 = vec_madd(va10, vb00_01, vc10_11); - vc12_13 = vec_madd(va10, vb02_03, vc12_13); - vc20_21 = vec_madd(va20, vb00_01, vc20_21); - vc22_23 = vec_madd(va20, vb02_03, vc22_23); - vc30_31 = vec_madd(va30, vb00_01, vc30_31); - vc32_33 = vec_madd(va30, vb02_03, vc32_33); - vc40_41 = vec_madd(va40, vb00_01, vc40_41); - vc42_43 = vec_madd(va40, vb02_03, vc42_43); - vc50_51 = vec_madd(va50, vb00_01, vc50_51); - vc52_53 = vec_madd(va50, vb02_03, vc52_53); - vc60_61 = vec_madd(va60, vb00_01, vc60_61); - vc62_63 = vec_madd(va60, vb02_03, vc62_63); - vc70_71 = vec_madd(va70, vb00_01, vc70_71); - vc72_73 = vec_madd(va70, vb02_03, vc72_73); - } - - vector double valpha = vec_splats( *alpha ); - vector double vbeta = (vector double) { *beta, *beta }; - - vector double *pc = (vector double *)c; - - vc00_01 = vec_mul(valpha, vc00_01); - vc02_03 = vec_mul(valpha, vc02_03); - pc[0] = vec_madd( pc[0], vbeta, vc00_01); - pc[1] = vec_madd( pc[1], vbeta, vc02_03); - pc += rs_c/2; - - vc10_11 = vec_mul(valpha, vc10_11); - vc12_13 = vec_mul(valpha, vc12_13); - pc[0] = vec_madd( pc[0], vbeta, vc10_11); - pc[1] = vec_madd( pc[1], vbeta, vc12_13); - pc += rs_c/2; - - vc20_21 = vec_mul(valpha, vc20_21); - vc22_23 = vec_mul(valpha, vc22_23); - pc[0] = vec_madd( pc[0], vbeta, vc20_21); - pc[1] = vec_madd( pc[1], vbeta, vc22_23); - pc += rs_c/2; - - vc30_31 = vec_mul(valpha, vc30_31); - vc32_33 = vec_mul(valpha, vc32_33); - pc[0] = vec_madd( pc[0], vbeta, vc30_31); - pc[1] = vec_madd( pc[1], vbeta, vc32_33); - pc += rs_c/2; - - vc40_41 = vec_mul(valpha, vc40_41); - vc42_43 = vec_mul(valpha, vc42_43); - pc[0] = vec_madd( pc[0], vbeta, vc40_41); - pc[1] = vec_madd( pc[1], vbeta, vc42_43); - pc += rs_c/2; - - vc50_51 = vec_mul(valpha, vc50_51); - vc52_53 = vec_mul(valpha, vc52_53); - pc[0] = vec_madd( pc[0], vbeta, vc50_51); - pc[1] = vec_madd( pc[1], vbeta, vc52_53); - pc += rs_c/2; - - vc60_61 = vec_mul(valpha, vc60_61); - vc62_63 = vec_mul(valpha, vc62_63); - pc[0] = vec_madd( pc[0], vbeta, vc60_61); - pc[1] = vec_madd( pc[1], vbeta, vc62_63); - pc += rs_c/2; - - vc70_71 = vec_mul(valpha, vc70_71); - vc72_73 = vec_mul(valpha, vc72_73); - pc[0] = vec_madd( pc[0], vbeta, vc70_71); - pc[1] = vec_madd( pc[1], vbeta, vc72_73); - pc += rs_c/2; - - } - else -#endif - { /* General case. Just do it right. */ -#if 0 || defined(UTEST) - const long MR = BLIS_DEFAULT_MR_D, NR = BLIS_DEFAULT_NR_D; - const long LDA = MR, LDB = NR; - int i, j, kk; - double c00; - - for (i=0; i < MR; i++) { - for (j=0; j < NR; j++) { - c00 = c[BLIS_INDEX(i,j,rs_c,cs_c)] * *beta; - for (kk=0; kk < k; kk++) - c00 += *alpha * (a[COLMAJ_INDEX(i,kk,LDA)] * b[ROWMAJ_INDEX(kk,j,LDB)]); - c[BLIS_INDEX(i,j,rs_c,cs_c)] = c00; - } - } -#else - BLIS_DGEMM_UKERNEL_REF(k, alpha, a, b, beta, c, rs_c, cs_c, data); -#endif - } -} - -/* - * Perform - * c = beta * c + alpha * a * b - * where - * alpha & beta are scalars - * c is mr x nr in blis-format, (col-stride & row-stride) - * a is mr x k in packed col-maj format (leading dim is mr) - * b is k x nr in packed row-maj format (leading dim is nr) - */ -void bli_cgemm_opt_8x4( - dim_t k, - scomplex* restrict alpha, - scomplex* restrict a, - scomplex* restrict b, - scomplex* restrict beta, - scomplex* restrict c, inc_t rs_c, inc_t cs_c, - auxinfo_t* data - ) -{ -#if 0 || defined(UTEST) - const long MR = BLIS_DEFAULT_MR_C, NR = BLIS_DEFAULT_NR_C; - const long LDA = MR, LDB = NR; - int i, j, kk; - scomplex c00; - - for (i=0; i < MR; i++) { - for (j=0; j < NR; j++) { - scomplex tmpc, tmpa, tmpb, tmp; - //c00 = c[BLIS_INDEX(i,j,rs_c,cs_c)] * *beta; - tmpc = c[BLIS_INDEX(i,j,rs_c,cs_c)]; - c00.real = tmpc.real * (*beta).real - tmpc.imag * (*beta).imag; - c00.imag = tmpc.real * (*beta).imag + tmpc.imag * (*beta).real; - for (kk=0; kk < k; kk++) { - //c00 += *alpha * (a[COLMAJ_INDEX(i,kk,LDA)] * b[ROWMAJ_INDEX(kk,j,LDB)]); - tmpa = a[COLMAJ_INDEX(i,kk,LDA)]; - tmpb = b[ROWMAJ_INDEX(kk,j,LDB)]; - tmp.real = tmpa.real * tmpb.real - tmpa.imag * tmpb.imag; - tmp.imag = tmpa.real * tmpb.imag + tmpa.imag * tmpb.real; - c00.real += (*alpha).real * tmp.real - (*alpha).imag * tmp.imag; - c00.imag += (*alpha).real * tmp.imag + (*alpha).imag * tmp.real; - } - c[BLIS_INDEX(i,j,rs_c,cs_c)] = c00; - } - } -#else - BLIS_CGEMM_UKERNEL_REF(k, alpha, a, b, beta, c, rs_c, cs_c, data); -#endif -} - -/* - * Perform - * c = beta * c + alpha * a * b - * where - * alpha & beta are scalars - * c is mr x nr in blis-format, (col-stride & row-stride) - * a is mr x k in packed col-maj format (leading dim is mr) - * b is k x nr in packed row-maj format (leading dim is nr) - */ -void bli_zgemm_opt_8x4( - dim_t k, - dcomplex* restrict alpha, - dcomplex* restrict a, - dcomplex* restrict b, - dcomplex* restrict beta, - dcomplex* restrict c, inc_t rs_c, inc_t cs_c, - auxinfo_t* data - ) -{ -#if 0 || defined(UTEST) - const long MR = BLIS_DEFAULT_MR_Z, NR = BLIS_DEFAULT_NR_Z; - const long LDA = MR, LDB = NR; - int i, j, kk; - dcomplex c00; - - for (i=0; i < MR; i++) { - for (j=0; j < NR; j++) { - dcomplex tmpc, tmpa, tmpb, tmp; - //c00 = c[BLIS_INDEX(i,j,rs_c,cs_c)] * *beta; - tmpc = c[BLIS_INDEX(i,j,rs_c,cs_c)]; - c00.real = tmpc.real * (*beta).real - tmpc.imag * (*beta).imag; - c00.imag = tmpc.real * (*beta).imag + tmpc.imag * (*beta).real; - for (kk=0; kk < k; kk++) { - //c00 += *alpha * (a[COLMAJ_INDEX(i,kk,LDA)] * b[ROWMAJ_INDEX(kk,j,LDB)]); - tmpa = a[COLMAJ_INDEX(i,kk,LDA)]; - tmpb = b[ROWMAJ_INDEX(kk,j,LDB)]; - tmp.real = tmpa.real * tmpb.real - tmpa.imag * tmpb.imag; - tmp.imag = tmpa.real * tmpb.imag + tmpa.imag * tmpb.real; - c00.real += (*alpha).real * tmp.real - (*alpha).imag * tmp.imag; - c00.imag += (*alpha).real * tmp.imag + (*alpha).imag * tmp.real; - } - c[BLIS_INDEX(i,j,rs_c,cs_c)] = c00; - } - } -#else - BLIS_ZGEMM_UKERNEL_REF(k, alpha, a, b, beta, c, rs_c, cs_c, data); -#endif -} - diff --git a/kernels/power7/3/test/bli_gemm_opt_8x4.c b/kernels/power7/3/test/bli_gemm_opt_8x4.c new file mode 120000 index 000000000..74bc86160 --- /dev/null +++ b/kernels/power7/3/test/bli_gemm_opt_8x4.c @@ -0,0 +1 @@ +../bli_gemm_opt_8x4.c \ No newline at end of file diff --git a/kernels/power7/3/test/bli_gemm_opt_8x4.h b/kernels/power7/3/test/bli_gemm_opt_8x4.h deleted file mode 100755 index 81d8f3c74..000000000 --- a/kernels/power7/3/test/bli_gemm_opt_8x4.h +++ /dev/null @@ -1,84 +0,0 @@ -/* - - BLIS - An object-based framework for developing high-performance BLAS-like - libraries. - - Copyright (C) 2014, The University of Texas at Austin - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas at Austin nor the names - of its contributors may be used to endorse or promote products - derived derived derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -*/ - -#ifndef _BLI_GEMM_OPT_8X4_H_ -#define _BLI_GEMM_OPT_8X4_H_ - -#ifdef UTEST -#include "blis_utest.h" -#else -#include "blis.h" -#endif - -void bli_sgemm_opt_8x4( - dim_t k, - float* restrict alpha, - float* restrict a, - float* restrict b, - float* restrict beta, - float* restrict c, inc_t rs_c, inc_t cs_c, - auxinfo_t* data - ); - -void bli_dgemm_opt_8x4( - dim_t k, - double* restrict alpha, - double* restrict a, - double* restrict b, - double* restrict beta, - double* restrict c, inc_t rs_c, inc_t cs_c, - auxinfo_t* data - ); - -void bli_cgemm_opt_8x4( - dim_t k, - scomplex* restrict alpha, - scomplex* restrict a, - scomplex* restrict b, - scomplex* restrict beta, - scomplex* restrict c, inc_t rs_c, inc_t cs_c, - auxinfo_t* data - ); - -void bli_zgemm_opt_8x4( - dim_t k, - dcomplex* restrict alpha, - dcomplex* restrict a, - dcomplex* restrict b, - dcomplex* restrict beta, - dcomplex* restrict c, inc_t rs_c, inc_t cs_c, - auxinfo_t* data - ); - -#endif diff --git a/kernels/power7/3/test/bli_gemm_opt_8x4.h b/kernels/power7/3/test/bli_gemm_opt_8x4.h new file mode 120000 index 000000000..d45432d95 --- /dev/null +++ b/kernels/power7/3/test/bli_gemm_opt_8x4.h @@ -0,0 +1 @@ +../bli_gemm_opt_8x4.h \ No newline at end of file From c73261f17edf589e76bdbe297702a1fbbd69275f Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Mon, 14 Jul 2014 16:23:51 -0500 Subject: [PATCH 14/19] More minor cleanups post-copyright update. --- kernels/power7/3/bli_gemm_opt_8x4.c | 2 +- windows/Makefile | 50 +++++++++++++++-------------- 2 files changed, 27 insertions(+), 25 deletions(-) diff --git a/kernels/power7/3/bli_gemm_opt_8x4.c b/kernels/power7/3/bli_gemm_opt_8x4.c index 5b16f78b6..56e7c82f1 100644 --- a/kernels/power7/3/bli_gemm_opt_8x4.c +++ b/kernels/power7/3/bli_gemm_opt_8x4.c @@ -12,7 +12,7 @@ documentation and/or other materials provided with the distribution. - Neither the name of The University of Texas at Austin nor the names of its contributors may be used to endorse or promote products - derived derived from this software without specific prior written permission. + derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/windows/Makefile b/windows/Makefile index 5bb5a7988..b5c211c99 100644 --- a/windows/Makefile +++ b/windows/Makefile @@ -1,33 +1,35 @@ # -# libblis -# An object-based infrastructure for developing high-performance -# dense linear algebra libraries. +# +# BLIS +# An object-based framework for developing high-performance BLAS-like +# libraries. # # Copyright (C) 2014, The University of Texas at Austin # -# libblis is free software; you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as -# published by the Free Software Foundation; either version 2.1 of -# the License, or (at your option) any later version. +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# - Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# - Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# - Neither the name of The University of Texas at Austin nor the names +# of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. # -# libblis is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# You should have received a copy of the GNU Lesser General Public -# License along with libblis; if you did not receive a copy, see -# http://www.gnu.org/licenses/. -# -# For more information, please contact us at flame@cs.utexas.edu or -# send mail to: -# -# Field G. Van Zee and/or -# Robert A. van de Geijn -# The University of Texas at Austin -# Department of Computer Sciences -# 1 University Station C0500 -# Austin TX 78712 # From 36358948ea75074bda32a9f8c008f835b87d21db Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Thu, 17 Jul 2014 10:58:10 -0500 Subject: [PATCH 15/19] Retired frame/3/gemm/other directory. Details: - Removed frame/3/gemm/other directory, which contained some outdated and/or experimental variants. --- frame/3/gemm/other/bli_gemm_blk_var4.c | 180 ------------ frame/3/gemm/other/bli_gemm_blk_var4.h | 39 --- frame/3/gemm/other/bli_gemm_ker_var2.c | 361 ------------------------- 3 files changed, 580 deletions(-) delete mode 100644 frame/3/gemm/other/bli_gemm_blk_var4.c delete mode 100644 frame/3/gemm/other/bli_gemm_blk_var4.h delete mode 100644 frame/3/gemm/other/bli_gemm_ker_var2.c diff --git a/frame/3/gemm/other/bli_gemm_blk_var4.c b/frame/3/gemm/other/bli_gemm_blk_var4.c deleted file mode 100644 index d8aee80ef..000000000 --- a/frame/3/gemm/other/bli_gemm_blk_var4.c +++ /dev/null @@ -1,180 +0,0 @@ -/* - - BLIS - An object-based framework for developing high-performance BLAS-like - libraries. - - Copyright (C) 2014, The University of Texas at Austin - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas at Austin nor the names - of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -*/ - -#include "blis.h" - -void bli_gemm_blk_var4( obj_t* a, - obj_t* b, - obj_t* c, - gemm_t* cntl ) -{ - obj_t a1, a1_pack; - obj_t b_pack; - obj_t c1, c1_pack; - - dim_t i; - dim_t bm_alg; - dim_t m_trans; - - // Initialize all pack objects that are passed into packm_init(). - bli_obj_init_pack( &a1_pack ); - bli_obj_init_pack( &b_pack ); - bli_obj_init_pack( &c1_pack ); - - // Query dimension in partitioning direction. - m_trans = bli_obj_length_after_trans( *a ); - - // Scale C by beta (if instructed). - bli_scalm_int( &BLIS_ONE, - c, - cntl_sub_scalm( cntl ) ); - - // Initialize object for packing B. - bli_packm_init( b, &b_pack, - cntl_sub_packm_b( cntl ) ); - - // Fuse the first iteration with incremental packing and computation. - { - obj_t b_inc, b_pack_inc; - obj_t c1_pack_inc; - - dim_t j; - dim_t bn_inc; - dim_t n_trans; - - // Query dimension in partitioning direction. - n_trans = bli_obj_width( b_pack ); - - // Determine the current algorithmic blocksize. - bm_alg = bli_determine_blocksize_f( 0, m_trans, a, - cntl_blocksize( cntl ) ); - - // Acquire partitions for A1 and C1. - bli_acquire_mpart_t2b( BLIS_SUBPART1, - 0, bm_alg, a, &a1 ); - bli_acquire_mpart_t2b( BLIS_SUBPART1, - 0, bm_alg, c, &c1 ); - - // Initialize objects for packing A1 and C1. - bli_packm_init( &a1, &a1_pack, cntl_sub_packm_a( cntl ) ); - bli_packm_init( &c1, &c1_pack, cntl_sub_packm_c( cntl ) ); - - // Pack A1 (if instructed). - bli_packm_int( &a1, &a1_pack, cntl_sub_packm_a( cntl ) ); - - // Pack C1 (if instructed). - bli_packm_int( &c1, &c1_pack, cntl_sub_packm_c( cntl ) ); - - // Partition along the n dimension. - for ( j = 0; j < n_trans; j += bn_inc ) - { - // Determine the current incremental packing blocksize. - bn_inc = bli_determine_blocksize_f( j, n_trans, b, - cntl_blocksize_aux( cntl ) ); - - // Acquire partitions. - bli_acquire_mpart_l2r( BLIS_SUBPART1, - j, bn_inc, b, &b_inc ); - bli_acquire_mpart_l2r( BLIS_SUBPART1, - j, bn_inc, &b_pack, &b_pack_inc ); - bli_acquire_mpart_l2r( BLIS_SUBPART1, - j, bn_inc, &c1_pack, &c1_pack_inc ); - - // Pack B1 (if instructed). - bli_packm_int( &b_inc, &b_pack_inc, cntl_sub_packm_b( cntl ) ); - - // Perform gemm subproblem. - bli_gemm_int( &BLIS_ONE, - &a1_pack, - &b_pack_inc, - &BLIS_ONE, - &c1_pack_inc, - cntl_sub_gemm( cntl ) ); - } - - // Unpack C1 (if C1 was packed). - bli_unpackm_int( &c1_pack, &c1, cntl_sub_unpackm_c( cntl ) ); - } - - - // Partition along the remaining portion of the m dimension. - for ( i = bm_alg; i < m_trans; i += bm_alg ) - { - // Determine the current algorithmic blocksize. - // NOTE: Use of a (for execution datatype) is intentional! - // This causes the right blocksize to be used if c and a are - // complex and b is real. - bm_alg = bli_determine_blocksize_f( i, m_trans, a, - cntl_blocksize( cntl ) ); - - // Acquire partitions for A1 and C1. - bli_acquire_mpart_t2b( BLIS_SUBPART1, - i, bm_alg, a, &a1 ); - bli_acquire_mpart_t2b( BLIS_SUBPART1, - i, bm_alg, c, &c1 ); - - // Initialize objects for packing A1 and C1. - bli_packm_init( &a1, &a1_pack, - cntl_sub_packm_a( cntl ) ); - bli_packm_init( &c1, &c1_pack, - cntl_sub_packm_c( cntl ) ); - - // Pack A1 (if instructed). - bli_packm_int( &a1, &a1_pack, - cntl_sub_packm_a( cntl ) ); - - // Pack C1 (if instructed). - bli_packm_int( &c1, &c1_pack, - cntl_sub_packm_c( cntl ) ); - - // Perform gemm subproblem. - bli_gemm_int( &BLIS_ONE, - &a1_pack, - &b_pack, - &BLIS_ONE, - &c1_pack, - cntl_sub_gemm( cntl ) ); - - // Unpack C1 (if C1 was packed). - bli_unpackm_int( &c1_pack, &c1, - cntl_sub_unpackm_c( cntl ) ); - } - - // If any packing buffers were acquired within packm, release them back - // to the memory manager. - bli_obj_release_pack( &a1_pack ); - bli_obj_release_pack( &b_pack ); - bli_obj_release_pack( &c1_pack ); -} - diff --git a/frame/3/gemm/other/bli_gemm_blk_var4.h b/frame/3/gemm/other/bli_gemm_blk_var4.h deleted file mode 100644 index 2f6f6ec24..000000000 --- a/frame/3/gemm/other/bli_gemm_blk_var4.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - - BLIS - An object-based framework for developing high-performance BLAS-like - libraries. - - Copyright (C) 2014, The University of Texas at Austin - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas at Austin nor the names - of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -*/ - -void bli_gemm_blk_var4( obj_t* a, - obj_t* b, - obj_t* c, - gemm_t* cntl ); - diff --git a/frame/3/gemm/other/bli_gemm_ker_var2.c b/frame/3/gemm/other/bli_gemm_ker_var2.c deleted file mode 100644 index f9c1fe2ab..000000000 --- a/frame/3/gemm/other/bli_gemm_ker_var2.c +++ /dev/null @@ -1,361 +0,0 @@ -/* - - BLIS - An object-based framework for developing high-performance BLAS-like - libraries. - - Copyright (C) 2014, The University of Texas at Austin - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of The University of Texas at Austin nor the names - of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -*/ - -#include "blis.h" -#include - -#define FUNCPTR_T gemm_fp - -typedef void (*FUNCPTR_T)( - dim_t m, - dim_t n, - dim_t k, - void* alpha, - void* a, inc_t cs_a, inc_t pd_a, inc_t ps_a, - void* b, inc_t rs_b, inc_t pd_b, inc_t ps_b, - void* beta, - void* c, inc_t rs_c, inc_t cs_c - void* gemm_ukr - ); - -static FUNCPTR_T GENARRAY(ftypes,gemm_ker_var2); - - -void bli_gemm_ker_var2( obj_t* a, - obj_t* b, - obj_t* c, - gemm_t* cntl ) -{ - num_t dt_exec = bli_obj_execution_datatype( *c ); - - dim_t m = bli_obj_length( *c ); - dim_t n = bli_obj_width( *c ); - dim_t k = bli_obj_width( *a ); - - void* buf_a = bli_obj_buffer_at_off( *a ); - inc_t pd_a = bli_obj_panel_dim( *a ); - inc_t cs_a = bli_obj_col_stride( *a ); - inc_t ps_a = bli_obj_panel_stride( *a ); - - void* buf_b = bli_obj_buffer_at_off( *b ); - inc_t rs_b = bli_obj_row_stride( *b ); - inc_t pd_b = bli_obj_panel_dim( *b ); - inc_t ps_b = bli_obj_panel_stride( *b ); - - void* buf_c = bli_obj_buffer_at_off( *c ); - inc_t rs_c = bli_obj_row_stride( *c ); - inc_t cs_c = bli_obj_col_stride( *c ); - - obj_t scalar_a; - obj_t scalar_b; - - void* buf_alpha; - void* buf_beta; - - FUNCPTR_T f; - - func_t* gemm_ukrs; - void* gemm_ukr; - - - // Detach and multiply the scalars attached to A and B. - bli_obj_scalar_detach( a, &scalar_a ); - bli_obj_scalar_detach( b, &scalar_b ); - bli_mulsc( &scalar_a, &scalar_b ); - - // Grab the addresses of the internal scalar buffers for the scalar - // merged above and the scalar attached to C. - buf_alpha = bli_obj_internal_scalar_buffer( scalar_b ); - buf_beta = bli_obj_internal_scalar_buffer( *c ); - - // Index into the type combination array to extract the correct - // function pointer. - f = ftypes[dt_exec]; - - // Extract from the control tree node the func_t object containing - // the gemm micro-kernel function addresses, and then query the - // function address corresponding to the current datatype. - gemm_ukrs = ( func_t* )cntl_sub_gemm( cntl ); - gemm_ukr = bli_func_obj_query( dt_exec, gemm_ukrs ); - - // Invoke the function. - f( m, - n, - k, - buf_alpha, - buf_a, cs_a, pd_a, ps_a, - buf_b, rs_b, pd_b, ps_b, - buf_beta, - buf_c, rs_c, cs_c, - gemm_ukr ); -} - - -#undef GENTFUNC -#define GENTFUNC( ctype, ch, varname, ukrname ) \ -\ -void PASTEMAC(ch,varname)( \ - dim_t m, \ - dim_t n, \ - dim_t k, \ - void* alpha, \ - void* a, inc_t cs_a, inc_t pd_a, inc_t ps_a, \ - void* b, inc_t rs_b, inc_t pd_b, inc_t ps_b, \ - void* beta, \ - void* c, inc_t rs_c, inc_t cs_c, \ - void* gemm_ukr \ - ) \ -{ \ - /* Cast the micro-kernel address to its function pointer type. */ \ - PASTECH(ch,ukrtype) gemm_ukr_cast = gemm_ukr; \ -\ - /* If any dimension is zero, return immediately. */ \ - if ( bli_zero_dim3( m, n, k ) ) return; \ -\ - _Pragma( "omp parallel" ) \ - { \ -\ - guint_t t_id = omp_get_thread_num(); \ - guint_t n_threads = omp_get_num_threads(); \ -\ - /* Temporary C buffer for edge cases. */ \ - ctype ct[ PASTEMAC(ch,maxmr) * \ - PASTEMAC(ch,maxnr) ] \ - __attribute__((aligned(BLIS_STACK_BUF_ALIGN_SIZE))); \ - const inc_t rs_ct = 1; \ - const inc_t cs_ct = PASTEMAC(ch,maxmr); \ -\ - /* Alias some constants to simpler names. */ \ - const dim_t MR = pd_a; \ - const dim_t NR = pd_b; \ -\ - ctype* restrict zero = PASTEMAC(ch,0); \ - ctype* restrict a_cast = a; \ - ctype* restrict b_cast = b; \ - ctype* restrict c_cast = c; \ - ctype* restrict alpha_cast = alpha; \ - ctype* restrict beta_cast = beta; \ - ctype* restrict a1; \ - ctype* restrict b1; \ - ctype* restrict c1; \ - ctype* restrict c11; \ - ctype* restrict a2; \ - ctype* restrict b2; \ -\ - dim_t m_iter, m_left; \ - dim_t n_iter, n_left; \ - dim_t i, j; \ - inc_t rstep_a; \ - inc_t cstep_b; \ - inc_t rstep_c, cstep_c; \ -\ - /* - Assumptions/assertions: - rs_a == 1 - cs_a == PACKMR - pd_a == MR - ps_a == stride to next micro-panel of A - rs_b == PACKNR - cs_b == 1 - pd_b == NR - ps_b == stride to next micro-panel of B - rs_c == (no assumptions) - cs_c == (no assumptions) - */ \ -\ - /* Clear the temporary C buffer in case it has any infs or NaNs. */ \ - PASTEMAC(ch,set0s_mxn)( MR, NR, \ - ct, rs_ct, cs_ct ); \ -\ - /* Compute number of primary and leftover components of the m and n - dimensions. */ \ - n_iter = n / NR; \ - n_left = n % NR; \ -\ - m_iter = m / MR; \ - m_left = m % MR; \ -\ - /* Determine some increments used to step through A, B, and C. */ \ - rstep_a = ps_a; \ -\ - cstep_b = ps_b; \ -\ - rstep_c = rs_c * MR; \ - cstep_c = cs_c * NR; \ -\ - b1 = b_cast; \ - c1 = c_cast; \ -\ - /* Loop over the n dimension (NR columns at a time). */ \ - for ( j = t_id; j < n_iter; j += n_threads ) \ - { \ - b1 = b_cast + cstep_b * j; \ - c1 = c_cast + cstep_c * j; \ -\ - a1 = a_cast; \ - c11 = c1; \ -\ - /* Initialize our next panel of B to be the current panel of B. */ \ - b2 = b1; \ -\ - /* Interior loop over the m dimension (MR rows at a time). */ \ - for ( i = 0; i < m_iter; ++i ) \ - { \ - /* Compute the addresses of the next panels of A and B. */ \ - a2 = a1 + rstep_a; \ - if ( i == m_iter - 1 && m_left == 0 ) \ - { \ - a2 = a_cast; \ - b2 = b1 + cstep_b * n_threads; \ - if ( j + n_threads > n_iter - 1 ) \ - b2 = b_cast; \ - } \ -\ - /* Invoke the gemm micro-kernel. */ \ - gemm_ukr_cast( k, \ - alpha_cast, \ - a1, \ - b1, \ - beta_cast, \ - c11, rs_c, cs_c, \ - a2, b2 ); \ -\ - a1 += rstep_a; \ - c11 += rstep_c; \ - } \ -\ - /* Bottom edge handling. */ \ - if ( m_left ) \ - { \ - /* Compute the addresses of the next panels of A and B. */ \ - a2 = a_cast; \ - b2 = b1 + cstep_b * n_threads; \ - if ( j + n_threads > n_iter - 1 ) \ - b2 = b_cast; \ -\ -\ - /* Invoke the gemm micro-kernel. */ \ - gemm_ukr_cast( k, \ - alpha_cast, \ - a1, \ - b1, \ - zero, \ - ct, rs_ct, cs_ct, \ - a2, b2 ); \ -\ - /* Scale the bottom edge of C and add the result from above. */ \ - PASTEMAC(ch,xpbys_mxn)( m_left, NR, \ - ct, rs_ct, cs_ct, \ - beta_cast, \ - c11, rs_c, cs_c ); \ - } \ -\ - b1 += cstep_b; \ - c1 += cstep_c; \ - } \ -\ - if ( n_left && !t_id ) \ - { \ - b1 = b_cast + cstep_b * n_iter; \ - c1 = c_cast + cstep_c * n_iter; \ -\ - a1 = a_cast; \ - c11 = c1; \ -\ - /* Initialize our next panel of B to be the current panel of B. */ \ - b2 = b1; \ -\ - /* Right edge loop over the m dimension (MR rows at a time). */ \ - for ( i = 0; i < m_iter; ++i ) \ - { \ - /* Compute the addresses of the next panels of A and B. */ \ - a2 = a1 + rstep_a; \ - if ( i == m_iter - 1 && m_left == 0 ) \ - { \ - a2 = a_cast; \ - b2 = b_cast; \ - } \ -\ - /* Invoke the gemm micro-kernel. */ \ - gemm_ukr_cast( k, \ - alpha_cast, \ - a1, \ - b1, \ - zero, \ - ct, rs_ct, cs_ct, \ - a2, b2 ); \ -\ - /* Scale the right edge of C and add the result from above. */ \ - PASTEMAC(ch,xpbys_mxn)( MR, n_left, \ - ct, rs_ct, cs_ct, \ - beta_cast, \ - c11, rs_c, cs_c ); \ -\ - a1 += rstep_a; \ - c11 += rstep_c; \ - } \ -\ - /* Bottom-right corner handling. */ \ - if ( m_left ) \ - { \ - /* Compute the address of the next panel of A. */ \ - a2 = a_cast; \ - b2 = b_cast; \ -\ - /* Invoke the gemm micro-kernel. */ \ - gemm_ukr_cast( k, \ - alpha_cast, \ - a1, \ - b1, \ - zero, \ - ct, rs_ct, cs_ct, \ - a2, b2 ); \ -\ - /* Scale the bottom-right corner of C and add the result from above. */ \ - PASTEMAC(ch,xpbys_mxn)( m_left, n_left, \ - ct, rs_ct, cs_ct, \ - beta_cast, \ - c11, rs_c, cs_c ); \ - } \ - } \ -\ - } /* end omp parallel */ \ -\ -/*PASTEMAC(ch,fprintm)( stdout, "gemm_ker_var2: b1", k, NR, b1, NR, 1, "%4.1f", "" ); \ -PASTEMAC(ch,fprintm)( stdout, "gemm_ker_var2: b1", k, NR, bp, NR, 1, "%4.1f", "" );*/ \ -/*PASTEMAC(ch,fprintm)( stdout, "gemm_ker_var2: a1", MR, k, a1, 1, MR, "%4.1f", "" );*/ \ -} - -INSERT_GENTFUNC_BASIC( gemm_ker_var2, gemm_ukr_t ) - From a41e68e09e73b999fab0bb430a43dccfc63aab45 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Thu, 17 Jul 2014 13:25:56 -0500 Subject: [PATCH 16/19] Reimplemented BLIS initialization/finalization. Details: - Rewrote bli_init() and bli_finalize() with OpenMP critical sections for thread-safety. Also added lots of explanatory comments. - Renamed bli_init_safe() and bli_finalize_safe() with the _auto() suffix, and reimplemented for simplicity. Updated all invocations in BLAS compatibility layer to use _auto() suffix. --- frame/base/bli_init.c | 146 +++++++++++++++++++++++++++++++-------- frame/base/bli_init.h | 12 ++-- frame/compat/bla_amax.c | 4 +- frame/compat/bla_asum.c | 4 +- frame/compat/bla_axpy.c | 4 +- frame/compat/bla_copy.c | 4 +- frame/compat/bla_dot.c | 4 +- frame/compat/bla_gemm.c | 4 +- frame/compat/bla_gemv.c | 6 +- frame/compat/bla_ger.c | 4 +- frame/compat/bla_hemm.c | 4 +- frame/compat/bla_hemv.c | 4 +- frame/compat/bla_her.c | 4 +- frame/compat/bla_her2.c | 4 +- frame/compat/bla_her2k.c | 4 +- frame/compat/bla_herk.c | 4 +- frame/compat/bla_nrm2.c | 4 +- frame/compat/bla_scal.c | 4 +- frame/compat/bla_swap.c | 4 +- frame/compat/bla_symm.c | 4 +- frame/compat/bla_symv.c | 4 +- frame/compat/bla_syr.c | 4 +- frame/compat/bla_syr2.c | 4 +- frame/compat/bla_syr2k.c | 4 +- frame/compat/bla_syrk.c | 4 +- frame/compat/bla_trmm.c | 4 +- frame/compat/bla_trmv.c | 4 +- frame/compat/bla_trsm.c | 4 +- frame/compat/bla_trsv.c | 4 +- 29 files changed, 177 insertions(+), 91 deletions(-) diff --git a/frame/base/bli_init.c b/frame/base/bli_init.c index a718f9f79..fb46e4ae1 100644 --- a/frame/base/bli_init.c +++ b/frame/base/bli_init.c @@ -51,35 +51,125 @@ gemm_thrinfo_t BLIS_GEMM_SINGLE_THREADED; herk_thrinfo_t BLIS_HERK_SINGLE_THREADED; thread_comm_t BLIS_SINGLE_COMM; -void bli_init( void ) +err_t bli_init( void ) { - bli_initialized = TRUE; + err_t r_val = BLIS_FAILURE; - bli_init_const(); + // If bli_initialized is TRUE, then we know without a doubt that + // BLIS is presently initialized, and thus we can return early. + if ( bli_initialized == TRUE ) return r_val; - bli_cntl_init(); + // NOTE: if bli_initialized is FALSE, we cannot be certain that BLIS + // is ready to be initialized; it may be the case that a thread is + // inside the critical section below and is already in the process + // of initializing BLIS, but has not yet finished and updated + // bli_initialized accordingly. This boolean asymmetry is important! - bli_error_msgs_init(); + // We enclose the bodies of bli_init() and bli_finalize() in a + // critical section (both with the same name) so that they can be + // safely called from multiple external (application) threads. + // Note that while the conditional test for early return may reside + // outside the critical section (as it should, for efficiency + // reasons), the conditional test below MUST be within the critical + // section to prevent a race condition of the type described above. - bli_mem_init(); + // BEGIN CRITICAL SECTION +#ifdef BLIS_ENABLE_OPENMP + _Pragma( "omp critical (init)" ) +#endif + { + + // Proceed with initialization only if BLIS is presently uninitialized. + // Since we bli_init() and bli_finalize() use the same named critical + // section, we can be sure that no other thread is either (a) updating + // bli_initialized, or (b) testing bli_initialized within the critical + // section (for the purposes of deciding whether to perform the + // necessary initialization subtasks). + if ( bli_initialized == FALSE ) + { + bli_init_const(); + + bli_cntl_init(); + + bli_error_msgs_init(); + + bli_mem_init(); - bli_setup_communicator( &BLIS_SINGLE_COMM, 1 ); - bli_setup_packm_single_threaded_info( &BLIS_PACKM_SINGLE_THREADED ); - bli_setup_gemm_single_threaded_info( &BLIS_GEMM_SINGLE_THREADED ); - bli_setup_herk_single_threaded_info( &BLIS_HERK_SINGLE_THREADED ); + bli_setup_communicator( &BLIS_SINGLE_COMM, 1 ); + bli_setup_packm_single_threaded_info( &BLIS_PACKM_SINGLE_THREADED ); + bli_setup_gemm_single_threaded_info( &BLIS_GEMM_SINGLE_THREADED ); + bli_setup_herk_single_threaded_info( &BLIS_HERK_SINGLE_THREADED ); + + // After initialization is complete, mark BLIS as initialized. + bli_initialized = TRUE; + + // Only the thread that actually performs the initialization will + // return "success". + r_val = BLIS_SUCCESS; + } + + // END CRITICAL SECTION + } + + return r_val; } -void bli_finalize( void ) +err_t bli_finalize( void ) { - bli_initialized = FALSE; + err_t r_val = BLIS_FAILURE; - bli_finalize_const(); + // If bli_initialized is FALSE, then we know without a doubt that + // BLIS is presently uninitialized, and thus we can return early. + if ( bli_initialized == FALSE ) return r_val; - bli_cntl_finalize(); + // NOTE: if bli_initialized is TRUE, we cannot be certain that BLIS + // is ready to be finalized; it may be the case that a thread is + // inside the critical section below and is already in the process + // of finalizing BLIS, but has not yet finished and updated + // bli_initialized accordingly. This boolean asymmetry is important! - // Don't need to do anything to finalize error messages. + // We enclose the bodies of bli_init() and bli_finalize() in a + // critical section (both with the same name) so that they can be + // safely called from multiple external (application) threads. + // Note that while the conditional test for early return may reside + // outside the critical section (as it should, for efficiency + // reasons), the conditional test below MUST be within the critical + // section to prevent a race condition of the type described above. - bli_mem_finalize(); + // BEGIN CRITICAL SECTION +#ifdef BLIS_ENABLE_OPENMP + _Pragma( "omp critical (init)" ) +#endif + { + + // Proceed with finalization only if BLIS is presently initialized. + // Since we bli_init() and bli_finalize() use the same named critical + // section, we can be sure that no other thread is either (a) updating + // bli_initialized, or (b) testing bli_initialized within the critical + // section (for the purposes of deciding whether to perform the + // necessary finalization subtasks). + if ( bli_initialized == TRUE ) + { + bli_finalize_const(); + + bli_cntl_finalize(); + + // Don't need to do anything to finalize error messages. + + bli_mem_finalize(); + + // After finalization is complete, mark BLIS as uninitialized. + bli_initialized = FALSE; + + // Only the thread that actually performs the finalization will + // return "success". + r_val = BLIS_SUCCESS; + } + + // END CRITICAL SECTION + } + + return r_val; } void bli_init_const( void ) @@ -104,20 +194,12 @@ void bli_finalize_const( void ) bli_obj_free( &BLIS_MINUS_TWO ); } -void bli_init_safe( err_t* init_result ) +void bli_init_auto( err_t* init_result ) { - if ( bli_initialized ) - { - *init_result = BLIS_FAILURE; - } - else - { - bli_init(); - *init_result = BLIS_SUCCESS; - } + *init_result = bli_init(); } -void bli_finalize_safe( err_t init_result ) +void bli_finalize_auto( err_t init_result ) { #ifdef BLIS_ENABLE_STAY_AUTO_INITIALIZED @@ -127,11 +209,15 @@ void bli_finalize_safe( err_t init_result ) // calls bli_finalize(). #else - // Only finalize if the corresponding bli_init_safe() actually - // resulted in BLIS being initialized; if it did nothing, we - // similarly do nothing here. + + // If BLIS was NOT configured to stay initialized after being automatically + // initialized, we call bli_finalize() only if the corresponding call to + // bli_init_auto() actually resulted in BLIS being initialized (indicated + // by it returning BLIS_SUCCESS); if it did nothing, we similarly do + // nothing here. if ( init_result == BLIS_SUCCESS ) bli_finalize(); + #endif } diff --git a/frame/base/bli_init.h b/frame/base/bli_init.h index 040325eac..670d776c8 100644 --- a/frame/base/bli_init.h +++ b/frame/base/bli_init.h @@ -32,11 +32,11 @@ */ -void bli_init( void ); -void bli_finalize( void ); +err_t bli_init( void ); +err_t bli_finalize( void ); -void bli_init_const( void ); -void bli_finalize_const( void ); +void bli_init_const( void ); +void bli_finalize_const( void ); -void bli_init_safe( err_t* init_result ); -void bli_finalize_safe( err_t init_result ); +void bli_init_auto( err_t* init_result ); +void bli_finalize_auto( err_t init_result ); diff --git a/frame/compat/bla_amax.c b/frame/compat/bla_amax.c index 086a2ef14..9e32e2177 100644 --- a/frame/compat/bla_amax.c +++ b/frame/compat/bla_amax.c @@ -60,7 +60,7 @@ f77_int PASTEF772(i,chx,blasname)( \ if ( *n < 1 || *incx <= 0 ) return 0; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Convert/typecast negative values of n to zero. */ \ bli_convert_blas_dim1( *n, n0 ); \ @@ -79,7 +79,7 @@ f77_int PASTEF772(i,chx,blasname)( \ f77_index = bli_index + 1; \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ \ return f77_index; \ } diff --git a/frame/compat/bla_asum.c b/frame/compat/bla_asum.c index 2e7cc8322..33e6ad31b 100644 --- a/frame/compat/bla_asum.c +++ b/frame/compat/bla_asum.c @@ -53,7 +53,7 @@ ftype_r PASTEF772(chr,chx,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Convert/typecast negative values of n to zero. */ \ bli_convert_blas_dim1( *n, n0 ); \ @@ -68,7 +68,7 @@ ftype_r PASTEF772(chr,chx,blasname)( \ &asum ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ \ return asum; \ } diff --git a/frame/compat/bla_axpy.c b/frame/compat/bla_axpy.c index 46937f57b..a4f75d026 100644 --- a/frame/compat/bla_axpy.c +++ b/frame/compat/bla_axpy.c @@ -56,7 +56,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Convert/typecast negative values of n to zero. */ \ bli_convert_blas_dim1( *n, n0 ); \ @@ -74,7 +74,7 @@ void PASTEF77(ch,blasname)( \ y0, incy0 ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_copy.c b/frame/compat/bla_copy.c index 52d709bec..79140a2ce 100644 --- a/frame/compat/bla_copy.c +++ b/frame/compat/bla_copy.c @@ -55,7 +55,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Convert/typecast negative values of n to zero. */ \ bli_convert_blas_dim1( *n, n0 ); \ @@ -72,7 +72,7 @@ void PASTEF77(ch,blasname)( \ y0, incy0 ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_dot.c b/frame/compat/bla_dot.c index d725ae0e7..a9df2114e 100644 --- a/frame/compat/bla_dot.c +++ b/frame/compat/bla_dot.c @@ -56,7 +56,7 @@ ftype PASTEF772(chxy,blasname,chc)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Convert/typecast negative values of n to zero. */ \ bli_convert_blas_dim1( *n, n0 ); \ @@ -75,7 +75,7 @@ ftype PASTEF772(chxy,blasname,chc)( \ &rho ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ \ return rho; \ } diff --git a/frame/compat/bla_gemm.c b/frame/compat/bla_gemm.c index 7f6da67c5..c50a58f3c 100644 --- a/frame/compat/bla_gemm.c +++ b/frame/compat/bla_gemm.c @@ -63,7 +63,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -107,7 +107,7 @@ void PASTEF77(ch,blasname)( \ c, rs_c, cs_c ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_gemv.c b/frame/compat/bla_gemv.c index b0e64d618..a77d23dc2 100644 --- a/frame/compat/bla_gemv.c +++ b/frame/compat/bla_gemv.c @@ -63,7 +63,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -99,7 +99,7 @@ void PASTEF77(ch,blasname)( \ if ( m_y > 0 && n_x == 0 ) \ { \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ \ return; \ } \ @@ -125,7 +125,7 @@ void PASTEF77(ch,blasname)( \ y0, incy0 ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_ger.c b/frame/compat/bla_ger.c index d5724367b..a575841ad 100644 --- a/frame/compat/bla_ger.c +++ b/frame/compat/bla_ger.c @@ -59,7 +59,7 @@ void PASTEF772(chxy,blasname,chc)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -94,7 +94,7 @@ void PASTEF772(chxy,blasname,chc)( \ a, rs_a, cs_a ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_hemm.c b/frame/compat/bla_hemm.c index b78f24441..ff2730887 100644 --- a/frame/compat/bla_hemm.c +++ b/frame/compat/bla_hemm.c @@ -62,7 +62,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -105,7 +105,7 @@ void PASTEF77(ch,blasname)( \ c, rs_c, cs_c ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_hemv.c b/frame/compat/bla_hemv.c index d68f07712..978c85de3 100644 --- a/frame/compat/bla_hemv.c +++ b/frame/compat/bla_hemv.c @@ -61,7 +61,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -99,7 +99,7 @@ void PASTEF77(ch,blasname)( \ y0, incy0 ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_her.c b/frame/compat/bla_her.c index 85a282877..9efe297ed 100644 --- a/frame/compat/bla_her.c +++ b/frame/compat/bla_her.c @@ -57,7 +57,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -90,7 +90,7 @@ void PASTEF77(ch,blasname)( \ a, rs_a, cs_a ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_her2.c b/frame/compat/bla_her2.c index 82b92bf6f..130b5f33c 100644 --- a/frame/compat/bla_her2.c +++ b/frame/compat/bla_her2.c @@ -60,7 +60,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -97,7 +97,7 @@ void PASTEF77(ch,blasname)( \ a, rs_a, cs_a ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_her2k.c b/frame/compat/bla_her2k.c index 43279e682..2c6289d21 100644 --- a/frame/compat/bla_her2k.c +++ b/frame/compat/bla_her2k.c @@ -62,7 +62,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -104,7 +104,7 @@ void PASTEF77(ch,blasname)( \ c, rs_c, cs_c ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_herk.c b/frame/compat/bla_herk.c index c3b6de5c5..d0c0accf1 100644 --- a/frame/compat/bla_herk.c +++ b/frame/compat/bla_herk.c @@ -60,7 +60,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -97,7 +97,7 @@ void PASTEF77(ch,blasname)( \ c, rs_c, cs_c ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_nrm2.c b/frame/compat/bla_nrm2.c index 7b1e544d8..0021b1a68 100644 --- a/frame/compat/bla_nrm2.c +++ b/frame/compat/bla_nrm2.c @@ -53,7 +53,7 @@ ftype_r PASTEF772(chr,chx,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Convert/typecast negative values of n to zero. */ \ bli_convert_blas_dim1( *n, n0 ); \ @@ -68,7 +68,7 @@ ftype_r PASTEF772(chr,chx,blasname)( \ &norm ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ \ return norm; \ } diff --git a/frame/compat/bla_scal.c b/frame/compat/bla_scal.c index a1058f4af..b108e9692 100644 --- a/frame/compat/bla_scal.c +++ b/frame/compat/bla_scal.c @@ -54,7 +54,7 @@ void PASTEF772(chx,cha,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Convert/typecast negative values of n to zero. */ \ bli_convert_blas_dim1( *n, n0 ); \ @@ -78,7 +78,7 @@ void PASTEF772(chx,cha,blasname)( \ x0, incx0 ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_swap.c b/frame/compat/bla_swap.c index 1e06afb83..af350f2c6 100644 --- a/frame/compat/bla_swap.c +++ b/frame/compat/bla_swap.c @@ -55,7 +55,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Convert/typecast negative values of n to zero. */ \ bli_convert_blas_dim1( *n, n0 ); \ @@ -71,7 +71,7 @@ void PASTEF77(ch,blasname)( \ y0, incy0 ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_symm.c b/frame/compat/bla_symm.c index b5ac8a935..3fd5f81d7 100644 --- a/frame/compat/bla_symm.c +++ b/frame/compat/bla_symm.c @@ -62,7 +62,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -105,7 +105,7 @@ void PASTEF77(ch,blasname)( \ c, rs_c, cs_c ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_symv.c b/frame/compat/bla_symv.c index 2ebd784c7..38b61658f 100644 --- a/frame/compat/bla_symv.c +++ b/frame/compat/bla_symv.c @@ -61,7 +61,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -99,7 +99,7 @@ void PASTEF77(ch,blasname)( \ y0, incy0 ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_syr.c b/frame/compat/bla_syr.c index 5a86e456d..676d8d319 100644 --- a/frame/compat/bla_syr.c +++ b/frame/compat/bla_syr.c @@ -57,7 +57,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -90,7 +90,7 @@ void PASTEF77(ch,blasname)( \ a, rs_a, cs_a ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_syr2.c b/frame/compat/bla_syr2.c index 2532874de..b4e76dd2f 100644 --- a/frame/compat/bla_syr2.c +++ b/frame/compat/bla_syr2.c @@ -60,7 +60,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -97,7 +97,7 @@ void PASTEF77(ch,blasname)( \ a, rs_a, cs_a ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_syr2k.c b/frame/compat/bla_syr2k.c index 2a6bcc68f..854637301 100644 --- a/frame/compat/bla_syr2k.c +++ b/frame/compat/bla_syr2k.c @@ -62,7 +62,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -113,7 +113,7 @@ void PASTEF77(ch,blasname)( \ c, rs_c, cs_c ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_syrk.c b/frame/compat/bla_syrk.c index 02c8b5b01..0cb926153 100644 --- a/frame/compat/bla_syrk.c +++ b/frame/compat/bla_syrk.c @@ -60,7 +60,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -106,7 +106,7 @@ void PASTEF77(ch,blasname)( \ c, rs_c, cs_c ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_trmm.c b/frame/compat/bla_trmm.c index 714f46d49..8bbb2322a 100644 --- a/frame/compat/bla_trmm.c +++ b/frame/compat/bla_trmm.c @@ -63,7 +63,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -105,7 +105,7 @@ void PASTEF77(ch,blasname)( \ b, rs_b, cs_b ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_trmv.c b/frame/compat/bla_trmv.c index 15b978a42..239bf9781 100644 --- a/frame/compat/bla_trmv.c +++ b/frame/compat/bla_trmv.c @@ -61,7 +61,7 @@ void PASTEF77(ch,blasname)( \ ftype* one_p; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -102,7 +102,7 @@ void PASTEF77(ch,blasname)( \ x0, incx0 ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_trsm.c b/frame/compat/bla_trsm.c index 105bb318e..5e2c8a2c1 100644 --- a/frame/compat/bla_trsm.c +++ b/frame/compat/bla_trsm.c @@ -63,7 +63,7 @@ void PASTEF77(ch,blasname)( \ err_t init_result; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -105,7 +105,7 @@ void PASTEF77(ch,blasname)( \ b, rs_b, cs_b ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS diff --git a/frame/compat/bla_trsv.c b/frame/compat/bla_trsv.c index 040d9d4ce..b46406c55 100644 --- a/frame/compat/bla_trsv.c +++ b/frame/compat/bla_trsv.c @@ -61,7 +61,7 @@ void PASTEF77(ch,blasname)( \ ftype* one_p; \ \ /* Initialize BLIS (if it is not already initialized). */ \ - bli_init_safe( &init_result ); \ + bli_init_auto( &init_result ); \ \ /* Perform BLAS parameter checking. */ \ PASTEBLACHK(blasname)( MKSTR(ch), \ @@ -102,7 +102,7 @@ void PASTEF77(ch,blasname)( \ x0, incx0 ); \ \ /* Finalize BLIS (if it was initialized above). */ \ - bli_finalize_safe( init_result ); \ + bli_finalize_auto( init_result ); \ } #ifdef BLIS_ENABLE_BLAS2BLIS From 1785efb5420bc7b9c850a068cb5d99837071e877 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Tue, 22 Jul 2014 14:33:01 -0500 Subject: [PATCH 17/19] Minor improvements to invertd and setd. Details: - Added missing call to invertd_check() from front-end. - Changed setd front-end call of scald_check() to setd_check(). --- frame/1d/invertd/bli_invertd.c | 3 +++ frame/1d/setd/bli_setd.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/frame/1d/invertd/bli_invertd.c b/frame/1d/invertd/bli_invertd.c index 502deb93d..2ccfd0022 100644 --- a/frame/1d/invertd/bli_invertd.c +++ b/frame/1d/invertd/bli_invertd.c @@ -40,6 +40,9 @@ // void bli_invertd( obj_t* x ) { + if ( bli_error_checking_is_enabled() ) + bli_invertd_check( x ); + bli_invertd_unb_var1( x ); } diff --git a/frame/1d/setd/bli_setd.c b/frame/1d/setd/bli_setd.c index 9f359e325..6414636c1 100644 --- a/frame/1d/setd/bli_setd.c +++ b/frame/1d/setd/bli_setd.c @@ -45,7 +45,7 @@ void bli_setd( obj_t* beta, obj_t beta_local; if ( bli_error_checking_is_enabled() ) - bli_scald_check( beta, x ); + bli_setd_check( beta, x ); // Use the datatype of x as the target type for beta (since we do // not assume mixed domain/type support is enabled). From ea59a5c93cde1467a3715abc53dda4aecf961873 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Tue, 22 Jul 2014 14:36:02 -0500 Subject: [PATCH 18/19] Added new level-1d operation: setid. Details: - Defined a new level-1d operation, setid, which sets the imaginary elements of an object's diagonal to a single scalar. This can be useful, for example, when trying to make the diagonal of a Hermitian matrix real-valued. --- frame/1d/setid/bli_setid.c | 88 +++++++++++++++++++ frame/1d/setid/bli_setid.h | 61 +++++++++++++ frame/1d/setid/bli_setid_check.c | 66 ++++++++++++++ frame/1d/setid/bli_setid_check.h | 36 ++++++++ frame/1d/setid/bli_setid_unb_var1.c | 129 ++++++++++++++++++++++++++++ frame/1d/setid/bli_setid_unb_var1.h | 51 +++++++++++ frame/include/blis.h | 1 + 7 files changed, 432 insertions(+) create mode 100644 frame/1d/setid/bli_setid.c create mode 100644 frame/1d/setid/bli_setid.h create mode 100644 frame/1d/setid/bli_setid_check.c create mode 100644 frame/1d/setid/bli_setid_check.h create mode 100644 frame/1d/setid/bli_setid_unb_var1.c create mode 100644 frame/1d/setid/bli_setid_unb_var1.h diff --git a/frame/1d/setid/bli_setid.c b/frame/1d/setid/bli_setid.c new file mode 100644 index 000000000..c87a605e5 --- /dev/null +++ b/frame/1d/setid/bli_setid.c @@ -0,0 +1,88 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas at Austin + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +#include "blis.h" + + +// +// Define object-based interface. +// +void bli_setid( obj_t* beta, + obj_t* x ) +{ + num_t dt_xr; + obj_t beta_local; + + if ( bli_error_checking_is_enabled() ) + bli_setid_check( beta, x ); + + // Use the real projection of the datatype of x as the target type + // for beta (since we do not assume mixed domain/type support is + // enabled). + dt_xr = bli_obj_datatype_proj_to_real( *x ); + + // Create an object to hold a copy-cast of alpha. + bli_obj_scalar_init_detached_copy_of( dt_xr, + BLIS_NO_CONJUGATE, + beta, + &beta_local ); + + bli_setid_unb_var1( &beta_local, + x ); +} + + +// +// Define BLAS-like interfaces with homogeneous-typed operands. +// +#undef GENTFUNCR +#define GENTFUNCR( ctype_x, ctype_r, chx, chr, opname, varname ) \ +\ +void PASTEMAC(chx,opname)( \ + doff_t diagoffx, \ + dim_t m, \ + dim_t n, \ + ctype_r* beta, \ + ctype_x* x, inc_t rs_x, inc_t cs_x \ + ) \ +{ \ + PASTEMAC(chx,varname)( diagoffx, \ + m, \ + n, \ + beta, \ + x, rs_x, cs_x ); \ +} + +INSERT_GENTFUNCR_BASIC( setid, setid_unb_var1 ) + diff --git a/frame/1d/setid/bli_setid.h b/frame/1d/setid/bli_setid.h new file mode 100644 index 000000000..bef6eac8e --- /dev/null +++ b/frame/1d/setid/bli_setid.h @@ -0,0 +1,61 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas at Austin + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +#include "bli_setid_check.h" +#include "bli_setid_unb_var1.h" + + +// +// Define object-based interface. +// +void bli_setid( obj_t* beta, + obj_t* x ); + + +// +// Define BLAS-like interfaces with homogeneous-typed operands. +// +#undef GENTPROTR +#define GENTPROTR( ctype_x, ctype_r, chx, chr, opname ) \ +\ +void PASTEMAC(chx,opname)( \ + doff_t diagoffx, \ + dim_t m, \ + dim_t n, \ + ctype_r* beta, \ + ctype_x* x, inc_t rs_x, inc_t cs_x \ + ); + +INSERT_GENTPROTR_BASIC( setid ) + diff --git a/frame/1d/setid/bli_setid_check.c b/frame/1d/setid/bli_setid_check.c new file mode 100644 index 000000000..2282020a3 --- /dev/null +++ b/frame/1d/setid/bli_setid_check.c @@ -0,0 +1,66 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas at Austin + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +#include "blis.h" + +void bli_setid_check( obj_t* beta, + obj_t* x ) +{ + err_t e_val; + + // Check object datatypes. + + e_val = bli_check_noninteger_object( beta ); + bli_check_error_code( e_val ); + + e_val = bli_check_floating_object( x ); + bli_check_error_code( e_val ); + + // Check object dimensions. + + e_val = bli_check_scalar_object( beta ); + bli_check_error_code( e_val ); + + e_val = bli_check_matrix_object( x ); + bli_check_error_code( e_val ); + + // Check object buffers (for non-NULLness). + + e_val = bli_check_object_buffer( beta ); + bli_check_error_code( e_val ); + + e_val = bli_check_object_buffer( x ); + bli_check_error_code( e_val ); +} + diff --git a/frame/1d/setid/bli_setid_check.h b/frame/1d/setid/bli_setid_check.h new file mode 100644 index 000000000..c2cd0ec54 --- /dev/null +++ b/frame/1d/setid/bli_setid_check.h @@ -0,0 +1,36 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas at Austin + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +void bli_setid_check( obj_t* beta, + obj_t* x ); diff --git a/frame/1d/setid/bli_setid_unb_var1.c b/frame/1d/setid/bli_setid_unb_var1.c new file mode 100644 index 000000000..f03c434e3 --- /dev/null +++ b/frame/1d/setid/bli_setid_unb_var1.c @@ -0,0 +1,129 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas at Austin + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +#include "blis.h" + +#define FUNCPTR_T setid_fp + +typedef void (*FUNCPTR_T)( + doff_t diagoffx, + dim_t m, + dim_t n, + void* beta, + void* x, inc_t rs_x, inc_t cs_x + ); + +static FUNCPTR_T GENARRAY(ftypes,setid_unb_var1); + + +void bli_setid_unb_var1( obj_t* beta, + obj_t* x ) +{ + num_t dt_xr = bli_obj_datatype_proj_to_real( *x ); + num_t dt_x = bli_obj_datatype( *x ); + + doff_t diagoffx = bli_obj_diag_offset( *x ); + + dim_t m = bli_obj_length( *x ); + dim_t n = bli_obj_width( *x ); + + void* buf_beta = bli_obj_buffer_for_1x1( dt_xr, *beta ); + + void* buf_x = bli_obj_buffer_at_off( *x ); + inc_t rs_x = bli_obj_row_stride( *x ); + inc_t cs_x = bli_obj_col_stride( *x ); + + FUNCPTR_T f; + + // Index into the type combination array to extract the correct + // function pointer. + f = ftypes[dt_x]; + + // Invoke the function. + f( diagoffx, + m, + n, + buf_beta, + buf_x, rs_x, cs_x ); +} + + +#undef GENTFUNCR +#define GENTFUNCR( ctype_x, ctype_r, chx, chr, varname, kername ) \ +\ +void PASTEMAC(chx,varname)( \ + doff_t diagoffx, \ + dim_t m, \ + dim_t n, \ + void* beta, \ + void* x, inc_t rs_x, inc_t cs_x \ + ) \ +{ \ + ctype_r* beta_cast = beta; \ + ctype_x* x_cast = x; \ + ctype_x* x1; \ + ctype_x* chi11; \ + dim_t n_elem; \ + dim_t offx; \ + inc_t incx; \ + dim_t i; \ +\ + /* Eliminate unused variable warnings. */ \ + ( void )beta_cast; \ + ( void )chi11; \ +\ + if ( bli_zero_dim2( m, n ) ) return; \ +\ + if ( bli_is_outside_diag( diagoffx, BLIS_NO_TRANSPOSE, m, n ) ) return; \ +\ + /* Determine the distance to the diagonal, the number of diagonal + elements, and the diagonal increment. */ \ + bli_set_dims_incs_1d( diagoffx, \ + m, n, rs_x, cs_x, \ + offx, n_elem, incx ); \ +\ + x1 = x_cast + offx; \ +\ + for ( i = 0; i < n_elem; ++i ) \ + { \ + chi11 = x1 + (i )*incx; \ +\ + PASTEMAC(chx,setis)( *beta_cast, *chi11 ); \ + } \ +} + +// Define the basic set of functions unconditionally, and then also some +// mixed datatype functions if requested. +INSERT_GENTFUNCR_BASIC( setid_unb_var1, NULL ) + diff --git a/frame/1d/setid/bli_setid_unb_var1.h b/frame/1d/setid/bli_setid_unb_var1.h new file mode 100644 index 000000000..a39aae5d7 --- /dev/null +++ b/frame/1d/setid/bli_setid_unb_var1.h @@ -0,0 +1,51 @@ +/* + + BLIS + An object-based framework for developing high-performance BLAS-like + libraries. + + Copyright (C) 2014, The University of Texas at Austin + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of The University of Texas at Austin nor the names + of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +void bli_setid_unb_var1( obj_t* beta, + obj_t* x ); + + +#undef GENTPROTR +#define GENTPROTR( ctype_x, ctype_r, chx, chr, varname ) \ +\ +void PASTEMAC(chx,varname)( \ + doff_t diagoffx, \ + dim_t m, \ + dim_t n, \ + void* beta, \ + void* x, inc_t rs_x, inc_t cs_x \ + ); + +INSERT_GENTPROTR_BASIC( setid_unb_var1 ) + diff --git a/frame/include/blis.h b/frame/include/blis.h index e112b0be7..935a806be 100644 --- a/frame/include/blis.h +++ b/frame/include/blis.h @@ -158,6 +158,7 @@ extern "C" { #include "bli_invertd.h" #include "bli_scald.h" #include "bli_setd.h" +#include "bli_setid.h" // two diagonal operands #include "bli_addd.h" #include "bli_axpyd.h" From ed3e33d548047be3283ff41268fdf716563bc542 Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Tue, 22 Jul 2014 14:40:43 -0500 Subject: [PATCH 19/19] Tweaked behavior of herk, her2k for BLAS compat. Details: - Updated herk_front() and her2k_front() to explicitly set the imaginary components of the diagonal entries of C to zero after the computation is complete. This is needed in case downstream applications read the full diagonal entries (i.e., including imaginary part), which could, in the absence of this modification, accumulate numerical error from subsequent rank-k/rank-2k updates. - Updated BLAS compatibility wrappers for herk and her2k to return early if: n == 0 || ( ( alpha == 0 || k == 0 ) && beta == 1 ) This also results in the imaginary components of diagonal entries NOT being set to zero (see above), which is consistent with BLAS. - Updated mkherm to use setid instead of an inlined loop over the diagonal. --- frame/3/her2k/bli_her2k_front.c | 3 +++ frame/3/herk/bli_herk_front.c | 3 +++ frame/compat/bla_her2k.c | 17 +++++++++++++++++ frame/compat/bla_herk.c | 17 +++++++++++++++++ frame/util/mkherm/bli_mkherm_unb_var1.c | 25 ++++++++++++------------- frame/util/mkherm/bli_mkherm_unb_var1.h | 6 +++--- test/test_herk.c | 9 +++++++-- 7 files changed, 62 insertions(+), 18 deletions(-) diff --git a/frame/3/her2k/bli_her2k_front.c b/frame/3/her2k/bli_her2k_front.c index c159d7bf1..141c5a17d 100644 --- a/frame/3/her2k/bli_her2k_front.c +++ b/frame/3/her2k/bli_her2k_front.c @@ -138,5 +138,8 @@ void bli_her2k_front( obj_t* alpha, bli_herk_thrinfo_free_paths( infos, n_threads ); #endif + + // Explicitly set diagonal elements' imaginary components to zero. + bli_setid( &BLIS_ZERO, &c_local ); } diff --git a/frame/3/herk/bli_herk_front.c b/frame/3/herk/bli_herk_front.c index d98b945d2..6733ba310 100644 --- a/frame/3/herk/bli_herk_front.c +++ b/frame/3/herk/bli_herk_front.c @@ -92,5 +92,8 @@ void bli_herk_front( obj_t* alpha, (void**) infos ); bli_herk_thrinfo_free_paths( infos, n_threads ); + + // Explicitly set diagonal elements' imaginary components to zero. + bli_setid( &BLIS_ZERO, &c_local ); } diff --git a/frame/compat/bla_her2k.c b/frame/compat/bla_her2k.c index 2c6289d21..8c246715c 100644 --- a/frame/compat/bla_her2k.c +++ b/frame/compat/bla_her2k.c @@ -82,6 +82,23 @@ void PASTEF77(ch,blasname)( \ /* Convert/typecast negative values of m and k to zero. */ \ bli_convert_blas_dim1( *m, m0 ); \ bli_convert_blas_dim1( *k, k0 ); \ +\ + /* We emulate the BLAS early return behavior with the following + conditional, which returns if one of the following is true: + - matrix C is empty + - the rank-2k product is empty (either because alpha is zero or k + is zero) AND matrix C is not scaled. */ \ + if ( m0 == 0 || \ + ( ( PASTEMAC(ch,eq0)( *alpha ) || k0 == 0 ) \ + && PASTEMAC(chr,eq1)( *beta ) \ + ) \ + ) \ + { \ + /* Finalize BLIS (if it was initialized above). */ \ + bli_finalize_auto( init_result ); \ +\ + return; \ + } \ \ /* Set the row and column strides of the matrix operands. */ \ rs_a = 1; \ diff --git a/frame/compat/bla_herk.c b/frame/compat/bla_herk.c index d0c0accf1..948f28107 100644 --- a/frame/compat/bla_herk.c +++ b/frame/compat/bla_herk.c @@ -79,6 +79,23 @@ void PASTEF77(ch,blasname)( \ /* Convert/typecast negative values of m and k to zero. */ \ bli_convert_blas_dim1( *m, m0 ); \ bli_convert_blas_dim1( *k, k0 ); \ +\ + /* We emulate the BLAS early return behavior with the following + conditional, which returns if one of the following is true: + - matrix C is empty + - the rank-k product is empty (either because alpha is zero or k + is zero) AND matrix C is not scaled. */ \ + if ( m0 == 0 || \ + ( ( PASTEMAC(chr,eq0)( *alpha ) || k0 == 0 ) \ + && PASTEMAC(chr,eq1)( *beta ) \ + ) \ + ) \ + { \ + /* Finalize BLIS (if it was initialized above). */ \ + bli_finalize_auto( init_result ); \ +\ + return; \ + } \ \ /* Set the row and column strides of the matrix operands. */ \ rs_a = 1; \ diff --git a/frame/util/mkherm/bli_mkherm_unb_var1.c b/frame/util/mkherm/bli_mkherm_unb_var1.c index 0df89a777..b069c4f0f 100644 --- a/frame/util/mkherm/bli_mkherm_unb_var1.c +++ b/frame/util/mkherm/bli_mkherm_unb_var1.c @@ -70,8 +70,8 @@ void bli_mkherm_unb_var1( obj_t* a ) } -#undef GENTFUNC -#define GENTFUNC( ctype, ch, varname ) \ +#undef GENTFUNCR +#define GENTFUNCR( ctype, ctype_r, ch, chr, varname ) \ \ void PASTEMAC(ch,varname)( \ uplo_t uploa, \ @@ -79,10 +79,10 @@ void PASTEMAC(ch,varname)( \ void* a, inc_t rs_a, inc_t cs_a \ ) \ { \ - ctype* a_cast = a; \ - ctype* alpha11; \ - doff_t diagoffa; \ - dim_t i; \ + ctype_r* zeror = PASTEMAC(chr,0); \ + ctype* a_cast = a; \ + ctype* alpha11; \ + doff_t diagoffa; \ \ /* Eliminate unused variable warnings. */ \ ( void )alpha11; \ @@ -108,14 +108,13 @@ void PASTEMAC(ch,varname)( \ a_cast, rs_a, cs_a ); \ \ /* Set the imaginary parts of the diagonal elements to zero. */ \ - for ( i = 0; i < m; ++i ) \ - { \ - alpha11 = a_cast + (i )*rs_a + (i )*cs_a; \ -\ - PASTEMAC(ch,seti0s)( *alpha11 ); \ - } \ + PASTEMAC(ch,setid)( 0, \ + m, \ + m, \ + zeror, \ + a_cast, rs_a, cs_a ); \ } -INSERT_GENTFUNC_BASIC0( mkherm_unb_var1 ) +INSERT_GENTFUNCR_BASIC0( mkherm_unb_var1 ) diff --git a/frame/util/mkherm/bli_mkherm_unb_var1.h b/frame/util/mkherm/bli_mkherm_unb_var1.h index 319151cb1..6062467c4 100644 --- a/frame/util/mkherm/bli_mkherm_unb_var1.h +++ b/frame/util/mkherm/bli_mkherm_unb_var1.h @@ -35,8 +35,8 @@ void bli_mkherm_unb_var1( obj_t* a ); -#undef GENTPROT -#define GENTPROT( ctype, ch, varname ) \ +#undef GENTPROTR +#define GENTPROTR( ctype, ctype_r, ch, chr, varname ) \ \ void PASTEMAC(ch,varname)( \ uplo_t uploa, \ @@ -44,5 +44,5 @@ void PASTEMAC(ch,varname)( \ void* a, inc_t rs_a, inc_t cs_a \ ); -INSERT_GENTPROT_BASIC( mkherm_unb_var1 ) +INSERT_GENTPROTR_BASIC( mkherm_unb_var1 ) diff --git a/test/test_herk.c b/test/test_herk.c index 858467cc8..157942678 100644 --- a/test/test_herk.c +++ b/test/test_herk.c @@ -75,13 +75,18 @@ int main( int argc, char** argv ) p_end = 16; p_inc = 1; - m_input = 15; - k_input = 13; + m_input = 3; + k_input = 1; #endif +#if 0 dt_a = dt_c = dt_alpha = dt_beta = BLIS_DOUBLE; +#else + dt_a = dt_c = dt_alpha = dt_beta = BLIS_DCOMPLEX; +#endif uplo = BLIS_LOWER; + //uplo = BLIS_UPPER; for ( p = p_begin; p <= p_end; p += p_inc ) {