cubecl-core 0.11.0-pre.3

CubeCL core create
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
#![allow(clippy::needless_range_loop)]

use alloc::{vec, vec::Vec};

use crate::{self as cubecl, as_bytes};
use cubecl::prelude::*;

#[cube(launch_unchecked)]
pub fn kernel_vector_index<F: Float, N: Size>(output: &mut [F]) {
    if UNIT_POS == 0 {
        let vector = Vector::<F, N>::new(F::new(5f32));
        #[unroll]
        for i in 0..4 {
            output[i] = vector.extract(i);
        }
    }
}

#[allow(clippy::needless_range_loop)]
pub fn test_vector_index<R: Runtime, F: Float + CubeElement>(client: ComputeClient<R>) {
    for vector_size in client.io_optimized_vector_sizes(size_of::<F>()) {
        if vector_size < 4 {
            continue;
        }
        let handle = client.create_from_slice(F::as_bytes(&vec![F::new(0.0); vector_size]));
        unsafe {
            kernel_vector_index::launch_unchecked::<F, R>(
                &client,
                CubeCount::new_single(),
                CubeDim::new_single(),
                vector_size,
                BufferArg::from_raw_parts(handle.clone(), vector_size),
            )
        }
        let actual = client.read_one_unchecked(handle);
        let actual = F::from_bytes(&actual);

        let mut expected = vec![F::new(0.0); vector_size];
        for i in 0..4 {
            expected[i] = F::new(5.0);
        }

        assert_eq!(&actual[..vector_size], expected);
    }
}

#[cube(launch_unchecked)]
pub fn kernel_vector_index_assign<F: Float, N: Size>(output: &mut [Vector<F, N>]) {
    if UNIT_POS == 0 {
        let mut vector = RuntimeCell::<Vector<F, N>>::new(output[0]);
        vector.insert(0usize, F::new(5f32));
        output[0] = vector.consume();
    }
}

pub fn test_vector_index_assign<R: Runtime, F: Float + CubeElement>(client: ComputeClient<R>) {
    for vector_size in client.io_optimized_vector_sizes(size_of::<F>()) {
        let handle = client.create_from_slice(F::as_bytes(&vec![F::new(0.0); vector_size]));
        unsafe {
            kernel_vector_index_assign::launch_unchecked::<F, R>(
                &client,
                CubeCount::new_single(),
                CubeDim::new_single(),
                vector_size,
                BufferArg::from_raw_parts(handle.clone(), 1),
            )
        }

        let actual = client.read_one_unchecked(handle);
        let actual = F::from_bytes(&actual);

        let mut expected = vec![F::new(0.0); vector_size];
        expected[0] = F::new(5.0);

        assert_eq!(&actual[..vector_size], expected);
    }
}

#[cube(launch_unchecked)]
pub fn kernel_vector_loop_unroll<F: Float, N: Size>(output: &mut [Vector<F, N>]) {
    if UNIT_POS == 0 {
        let mut vector = output[0];
        #[unroll]
        for k in 0..N::value() {
            vector.insert(k, vector.extract(k) + F::cast_from(k));
        }
        output[0] = vector;
    }
}

pub fn test_vector_loop_unroll<R: Runtime, F: Float + CubeElement>(client: ComputeClient<R>) {
    for vector_size in client.io_optimized_vector_sizes(size_of::<F>()) {
        let handle = client.create_from_slice(F::as_bytes(&vec![F::new(0.0); vector_size]));
        unsafe {
            kernel_vector_loop_unroll::launch_unchecked::<F, R>(
                &client,
                CubeCount::new_single(),
                CubeDim::new_single(),
                vector_size,
                BufferArg::from_raw_parts(handle.clone(), 1),
            )
        }

        let actual = client.read_one_unchecked(handle);
        let actual = F::from_bytes(&actual);

        let expected = (0..vector_size as i64)
            .map(|x| F::from_int(x))
            .collect::<Vec<_>>();

        assert_eq!(&actual[..vector_size], expected);
    }
}

#[cube(launch_unchecked)]
pub fn kernel_vector_conditional<F: Float, N: Size>(
    input: &[Vector<F, N>],
    flag: &[u32],
    output: &mut [Vector<F, N>],
) {
    let cond = flag[0] == u32::new(0);
    let vector = if cond { input[0] } else { input[1] };
    output[0] = vector;
}

pub fn test_vector_conditional<R: Runtime, F: Float + CubeElement>(client: ComputeClient<R>) {
    let vector_size = 8usize;
    let mut input_data = vec![F::new(1.0); vector_size];
    input_data.extend(vec![F::new(2.0); vector_size]);
    let input = client.create_from_slice(F::as_bytes(&input_data));
    let output = client.create_from_slice(F::as_bytes(&vec![F::new(0.0); vector_size]));

    let flag = client.create_from_slice(u32::as_bytes(&[0u32]));
    unsafe {
        kernel_vector_conditional::launch_unchecked::<F, R>(
            &client,
            CubeCount::new_single(),
            CubeDim::new_1d(1),
            vector_size,
            BufferArg::from_raw_parts(input.clone(), 2),
            BufferArg::from_raw_parts(flag, 1),
            BufferArg::from_raw_parts(output.clone(), 1),
        )
    }
    let actual = client.read_one_unchecked(output.clone());
    let actual = F::from_bytes(&actual);
    assert_eq!(actual, vec![F::new(1.0); vector_size]);

    let flag = client.create_from_slice(u32::as_bytes(&[1u32]));
    unsafe {
        kernel_vector_conditional::launch_unchecked::<F, R>(
            &client,
            CubeCount::new_single(),
            CubeDim::new_1d(1),
            vector_size,
            BufferArg::from_raw_parts(input, 2),
            BufferArg::from_raw_parts(flag, 1),
            BufferArg::from_raw_parts(output.clone(), 1),
        )
    }
    let actual = client.read_one_unchecked(output);
    let actual = F::from_bytes(&actual);
    assert_eq!(actual, vec![F::new(2.0); vector_size]);
}

/// A dynamic lane index on a vector wider than the target's vectors: the
/// unroll pass has to search the parts it split the vector into, so every lane
/// is asked for in turn.
#[cube(launch_unchecked)]
pub fn kernel_vector_extract_dynamic<F: Float, N: Size>(
    input: &[Vector<F, N>],
    index: &[u32],
    output: &mut [F],
) {
    if UNIT_POS == 0 {
        output[0] = input[0].extract_dynamic(usize::cast_from(index[0]));
    }
}

pub fn test_vector_extract_dynamic<R: Runtime, F: Float + CubeElement>(client: ComputeClient<R>) {
    let vector_size = 8usize;
    let data = (0..vector_size as i64)
        .map(|x| F::from_int(x + 1))
        .collect::<Vec<_>>();
    let input = client.create_from_slice(F::as_bytes(&data));

    for lane in 0..vector_size {
        let index = client.create_from_slice(u32::as_bytes(&[lane as u32]));
        let output = client.create_from_slice(F::as_bytes(&[F::new(0.0)]));
        unsafe {
            kernel_vector_extract_dynamic::launch_unchecked::<F, R>(
                &client,
                CubeCount::new_single(),
                CubeDim::new_single(),
                vector_size,
                BufferArg::from_raw_parts(input.clone(), 1),
                BufferArg::from_raw_parts(index, 1),
                BufferArg::from_raw_parts(output.clone(), 1),
            )
        }

        let actual = client.read_one_unchecked(output);
        let actual = F::from_bytes(&actual);

        assert_eq!(actual[0], data[lane], "lane {lane}");
    }
}

#[cube(launch_unchecked)]
pub fn kernel_vector_insert_dynamic<F: Float, N: Size>(index: &[u32], output: &mut [Vector<F, N>]) {
    if UNIT_POS == 0 {
        let mut vector = output[0];
        vector.insert_dynamic(usize::cast_from(index[0]), F::new(5f32));
        output[0] = vector;
    }
}

pub fn test_vector_insert_dynamic<R: Runtime, F: Float + CubeElement>(client: ComputeClient<R>) {
    let vector_size = 8usize;

    for lane in 0..vector_size {
        let index = client.create_from_slice(u32::as_bytes(&[lane as u32]));
        let output = client.create_from_slice(F::as_bytes(&vec![F::new(0.0); vector_size]));
        unsafe {
            kernel_vector_insert_dynamic::launch_unchecked::<F, R>(
                &client,
                CubeCount::new_single(),
                CubeDim::new_single(),
                vector_size,
                BufferArg::from_raw_parts(index, 1),
                BufferArg::from_raw_parts(output.clone(), 1),
            )
        }

        let actual = client.read_one_unchecked(output);
        let actual = F::from_bytes(&actual);

        let mut expected = vec![F::new(0.0); vector_size];
        expected[lane] = F::new(5.0);

        assert_eq!(&actual[..vector_size], expected, "lane {lane}");
    }
}

#[cube(launch_unchecked)]
pub fn kernel_shared_memory<F: Float, N: Size>(output: &mut [Vector<F, N>]) {
    let mut smem1 = Shared::new_slice(8usize);
    smem1[0] = Vector::new(F::new(42f32));
    output[0] = smem1[0];
}

pub fn test_shared_memory<R: Runtime, F: Float + CubeElement>(client: ComputeClient<R>) {
    for vector_size in client.io_optimized_vector_sizes(size_of::<F>()) {
        let output = client.create_from_slice(F::as_bytes(&vec![F::new(0.0); vector_size]));
        unsafe {
            kernel_shared_memory::launch_unchecked::<F, R>(
                &client,
                CubeCount::new_single(),
                CubeDim::new_single(),
                vector_size,
                BufferArg::from_raw_parts(output.clone(), 1),
            )
        }

        let actual = client.read_one_unchecked(output);
        let actual = F::from_bytes(&actual);

        assert_eq!(actual[0], F::new(42.0));
    }
}

macro_rules! impl_vector_comparison {
    ($cmp:ident, $expected:expr) => {
        ::paste::paste! {
            #[cube(launch)]
            pub fn [< kernel_vector_ $cmp >]<F: Float, N: Size>(
                lhs: &[Vector<F, N>],
                rhs: &[Vector<F, N>],
                output: &mut [Vector<u32, N>],
            ) {
                if UNIT_POS == 0 {
                    output[0] = Vector::cast_from(lhs[0].$cmp(&rhs[0]));
                }
            }

            pub fn [< test_vector_ $cmp >] <R: Runtime, F: Float + CubeElement>(
                client: ComputeClient<R>,
            ) {
                let lhs = client.create_from_slice(as_bytes![F: 0.0, 1.0, 2.0, 3.0]);
                let rhs = client.create_from_slice(as_bytes![F: 0.0, 2.0, 1.0, 3.0]);
                let output = client.empty(16);

                unsafe {
                    [< kernel_vector_ $cmp >]::launch::<F, R>(
                        &client,
                        CubeCount::Static(1, 1, 1),
                        CubeDim::new_1d(1),
                        4,
                        BufferArg::from_raw_parts(lhs, 1),
                        BufferArg::from_raw_parts(rhs, 1),
                        BufferArg::from_raw_parts(output.clone(), 1),
                    )
                };

                let actual = client.read_one_unchecked(output);
                let actual = u32::from_bytes(&actual);

                assert_eq!(actual, $expected);
            }
        }
    };
}

impl_vector_comparison!(equal, [1, 0, 0, 1]);
impl_vector_comparison!(not_equal, [0, 1, 1, 0]);
impl_vector_comparison!(less_than, [0, 1, 0, 0]);
impl_vector_comparison!(greater_than, [0, 0, 1, 0]);
impl_vector_comparison!(less_equal, [1, 1, 0, 1]);
impl_vector_comparison!(greater_equal, [1, 0, 1, 1]);

#[allow(missing_docs)]
#[macro_export]
macro_rules! testgen_vector {
    () => {
        use super::*;

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_index() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_index::<TestRuntime, FloatType>(client);
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_index_assign() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_index_assign::<TestRuntime, FloatType>(
                client,
            );
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_loop_unroll() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_loop_unroll::<TestRuntime, FloatType>(
                client,
            );
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_conditional() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_conditional::<TestRuntime, FloatType>(
                client,
            );
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_extract_dynamic() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_extract_dynamic::<
                TestRuntime,
                FloatType,
            >(client);
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_insert_dynamic() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_insert_dynamic::<TestRuntime, FloatType>(
                client,
            );
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_shared_memory() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_shared_memory::<TestRuntime, FloatType>(
                client,
            );
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_equal() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_equal::<TestRuntime, FloatType>(client);
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_not_equal() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_not_equal::<TestRuntime, FloatType>(
                client,
            );
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_less_than() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_less_than::<TestRuntime, FloatType>(
                client,
            );
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_greater_than() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_greater_than::<TestRuntime, FloatType>(
                client,
            );
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_less_equal() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_less_equal::<TestRuntime, FloatType>(
                client,
            );
        }

        #[$crate::runtime_tests::test_log::test]
        fn test_vector_greater_equal() {
            let client = TestRuntime::client(&Default::default());
            cubecl_core::runtime_tests::vector::test_vector_greater_equal::<TestRuntime, FloatType>(
                client,
            );
        }
    };
}