Skip to content

Commit d4a6065

Browse files
committed
Print debug info 3
1 parent e18059c commit d4a6065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/utils/device_selection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ const cl = require('../..');
99

1010
// Grab ALL possible devices into a flat array
1111
const devicesAll = cl.getPlatformIDs().flatMap((platform) => {
12-
console.log('Platform:', platform);
12+
const version = cl.getPlatformInfo(platform, cl.PLATFORM_VERSION);
13+
console.log('Platform:', platform, version);
1314
const platformDevices = cl.getDeviceIDs(platform);
1415
console.log('Devices', platformDevices);
15-
const version = cl.getPlatformInfo(platform, cl.PLATFORM_VERSION);
1616

1717
return platformDevices.map((device) => ({
1818
platform,

0 commit comments

Comments
 (0)