From b9116f18d0a82077281646c8159cc1b2ea39cdb2 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 17 Mar 2024 00:41:54 +0000 Subject: [PATCH] Auto-generated commit --- .github/.keepalive | 1 - .npmrc | 3 +++ CONTRIBUTORS | 29 +++++++++++++++++++++++------ src/ddot.c | 2 +- src/ddot_cblas.c | 2 +- src/ddot_f.c | 2 +- 6 files changed, 29 insertions(+), 10 deletions(-) delete mode 100644 .github/.keepalive diff --git a/.github/.keepalive b/.github/.keepalive deleted file mode 100644 index d8bee5d..0000000 --- a/.github/.keepalive +++ /dev/null @@ -1 +0,0 @@ -2024-03-01T01:58:31.216Z diff --git a/.npmrc b/.npmrc index 36f5bef..5af9067 100644 --- a/.npmrc +++ b/.npmrc @@ -26,3 +26,6 @@ shrinkwrap = false # Disable automatically "saving" dependencies on install: save = false + +# Generate provenance metadata: +provenance = true diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 6a1c080..554fdde 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2,23 +2,28 @@ # # Contributors listed in alphabetical order. -Aditya Sapra <110766802+adityacodes30@users.noreply.github.com> +Adarsh Palaskar +Aditya Sapra AgPriyanshu18 <113460573+AgPriyanshu18@users.noreply.github.com> Ali Salesi +Aman Bhansali Amit Jimiwal +Anudeep Sanapala Athan Reines Brendan Graetz Bruno Fenzl -Chinmay J <86140365+JawHawk@users.noreply.github.com> +Chinmay Joshi <86140365+JawHawk@users.noreply.github.com> Christopher Dambamuromo Dan Rose Daniel Killenberger Dominik Moritz Dorrin Sotoudeh +EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com> Frank Kovacs -GUNJ JOSHI -Golden <103646877+AuenKr@users.noreply.github.com> +Golden Kumar <103646877+AuenKr@users.noreply.github.com> +Gunj Joshi Harshita Kalani +Jaimin Godhani <112328542+Jai0401@users.noreply.github.com> James Gelok Jaysukh Makvana Jithin KS @@ -28,6 +33,8 @@ Joris Labie Justin Dennison Karthik Prakash <116057817+skoriop@users.noreply.github.com> Khaldon +Lovelin <100030865+lovelindhoni@users.noreply.github.com> +Manik Sharma Marcus Fantham Matt Cochrane Mihir Pandit <129577900+MSP20086@users.noreply.github.com> @@ -36,22 +43,32 @@ Momtchil Momtchev Naresh Jagadeesan Nithin Katta <88046362+nithinkatta@users.noreply.github.com> Ognjen Jevremović +Oneday12323 <107678750+Oneday12323@users.noreply.github.com> Philipp Burckhardt Prajwal Kulkarni Pranav Goswami Praneki <97080887+PraneGIT@users.noreply.github.com> Pratik <97464067+Pratik772846@users.noreply.github.com> +Priyansh <88396544+itsspriyansh@users.noreply.github.com> +Raunak Kumar Gupta +Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com> Ricky Reusser Robert Gislason Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Rutam <138517416+performant23@users.noreply.github.com> Ryan Seal +Sai Srikar Dumpeti <80447788+the-r3aper7@users.noreply.github.com> Seyyed Parsa Neshaei +Shashank Shekhar Singh Shraddheya Shendre -Shubham +Shubham Mishra Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com> -Spandan Barve <114365550+marsian83@users.noreply.github.com> +Spandan Barve Stephannie Jiménez Gacha +Utkarsh +Utkarsh Raj +Varad Gupta Yernar Yergaziyev +nishant-s7 <97207366+nishant-s7@users.noreply.github.com> orimiles5 <97595296+orimiles5@users.noreply.github.com> rei2hu diff --git a/src/ddot.c b/src/ddot.c index f8158a9..ce2e3f4 100644 --- a/src/ddot.c +++ b/src/ddot.c @@ -31,7 +31,7 @@ * @param strideX X stride length * @param Y second array * @param strideY Y stride length -* @returns the dot product +* @return the dot product */ double c_ddot( const int N, const double *X, const int strideX, const double *Y, const int strideY ) { double dot; diff --git a/src/ddot_cblas.c b/src/ddot_cblas.c index 361c568..f4102a9 100644 --- a/src/ddot_cblas.c +++ b/src/ddot_cblas.c @@ -27,7 +27,7 @@ * @param strideX X stride length * @param Y second array * @param strideY Y stride length -* @returns the dot product +* @return the dot product */ double c_ddot( const int N, const double *X, const int strideX, const double *Y, const int strideY ) { return cblas_ddot( N, X, strideX, Y, strideY ); diff --git a/src/ddot_f.c b/src/ddot_f.c index 5164387..a9fbcd2 100644 --- a/src/ddot_f.c +++ b/src/ddot_f.c @@ -32,7 +32,7 @@ * @param strideX X stride length * @param Y second array * @param strideY Y stride length -* @returns the dot product +* @return the dot product */ double c_ddot( const int N, const double *X, const int strideX, const double *Y, const int strideY ) { double dot;