• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

visgl / luma.gl / 26116586759

19 May 2026 06:19PM UTC coverage: 74.979% (+0.03%) from 74.945%
26116586759

push

github

web-flow
feat(gpgpu): new operations (#2626)

7299 of 11011 branches covered (66.29%)

Branch coverage included in aggregate %.

335 of 402 new or added lines in 37 files covered. (83.33%)

15967 of 20019 relevant lines covered (79.76%)

1017.19 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

20.0
/modules/gpgpu/src/operations/cpu/sequence.ts
1
// luma.gl
2
// SPDX-License-Identifier: MIT
3
// Copyright (c) vis.gl contributors
4

5
import {OperationHandler} from '../../operation/operation';
6

7
export const sequence: OperationHandler<{start: number; step: number}> = async ({
10✔
8
  inputs,
9
  output,
10
  target
11
}) => {
NEW
12
  const result = new output.ValueType(output.length);
×
NEW
13
  for (let rowIndex = 0; rowIndex < output.length; rowIndex++) {
×
NEW
14
    result[rowIndex] = inputs.start + rowIndex * inputs.step;
×
15
  }
NEW
16
  target.write(result);
×
17
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc