Skip to content

Commit 54dab6e

Browse files
committed
Update artifacts
1 parent bfb39b0 commit 54dab6e

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

blas/base/zdscal/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[376,376,100,18,18,100,4,4,100,376,376,100,"a2a37b8deceb932d2e1ba7c7a077abd0fd7075cb","2025-05-28 12:26:22 +0530"]
1+
[376,376,100,18,18,100,4,4,100,376,376,100,"a5f41d10f69b0e77e84e3bcbc9630d77aacbd15b","2025-06-18 09:52:53 +0530"]

blas/base/zdscal/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/zdscal/lib</h1>
191191
<div class='footer quiet pad2 space-top1 center small'>
192192
Code coverage generated by
193193
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
194-
at 2025-05-28T06:57:54.351Z
194+
at 2025-06-18T04:24:47.858Z
195195
</div>
196196
<script src="../../../../prettify.js"></script>
197197
<script>

blas/base/zdscal/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
274274
<div class='footer quiet pad2 space-top1 center small'>
275275
Code coverage generated by
276276
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
277-
at 2025-05-28T06:57:54.351Z
277+
at 2025-06-18T04:24:47.858Z
278278
</div>
279279
<script src="../../../../prettify.js"></script>
280280
<script>

blas/base/zdscal/main.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
175175
<div class='footer quiet pad2 space-top1 center small'>
176176
Code coverage generated by
177177
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
178-
at 2025-05-28T06:57:54.351Z
178+
at 2025-06-18T04:24:47.858Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/zdscal/native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
175175
<div class='footer quiet pad2 space-top1 center small'>
176176
Code coverage generated by
177177
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
178-
at 2025-05-28T06:57:54.351Z
178+
at 2025-06-18T04:24:47.858Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/zdscal/ndarray.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
256256
* // zx =&gt; &lt;Complex128Array&gt;[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0 ]
257257
*/
258258
function zdscal( N, da, zx, strideZX, offsetZX ) {
259-
var zx64;
259+
var view;
260260
var ix;
261261
var sx;
262262
var i;
@@ -265,14 +265,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
265265
return zx;
266266
}
267267
// Reinterpret the input array as a real-valued array of interleaved real and imaginary components:
268-
zx64 = reinterpret( zx, 0 );
268+
view = reinterpret( zx, 0 );
269269
&nbsp;
270270
// Adjust the stride and offset accordingly:
271271
ix = offsetZX * 2;
272272
sx = strideZX * 2;
273273
&nbsp;
274274
for ( i = 0; i &lt; N; i++ ) {
275-
scale( da, zx64, 1, ix, zx64, 1, ix );
275+
scale( da, view, 1, ix, view, 1, ix );
276276
ix += sx;
277277
}
278278
return zx;
@@ -289,7 +289,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
289289
<div class='footer quiet pad2 space-top1 center small'>
290290
Code coverage generated by
291291
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
292-
at 2025-05-28T06:57:54.351Z
292+
at 2025-06-18T04:24:47.858Z
293293
</div>
294294
<script src="../../../../prettify.js"></script>
295295
<script>

blas/base/zdscal/ndarray.native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
238238
<div class='footer quiet pad2 space-top1 center small'>
239239
Code coverage generated by
240240
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
241-
at 2025-05-28T06:57:54.351Z
241+
at 2025-06-18T04:24:47.858Z
242242
</div>
243243
<script src="../../../../prettify.js"></script>
244244
<script>

blas/base/zdscal/zdscal.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
229229
<div class='footer quiet pad2 space-top1 center small'>
230230
Code coverage generated by
231231
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
232-
at 2025-05-28T06:57:54.351Z
232+
at 2025-06-18T04:24:47.858Z
233233
</div>
234234
<script src="../../../../prettify.js"></script>
235235
<script>

blas/base/zdscal/zdscal.native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
238238
<div class='footer quiet pad2 space-top1 center small'>
239239
Code coverage generated by
240240
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
241-
at 2025-05-28T06:57:54.351Z
241+
at 2025-06-18T04:24:47.858Z
242242
</div>
243243
<script src="../../../../prettify.js"></script>
244244
<script>

0 commit comments

Comments
 (0)