@@ -45,7 +45,7 @@ namespace detail {
45
45
/* *
46
46
* Gets the precomputed inclusive scan of the factors at a particular index.
47
47
*
48
- * @param inclusive_scan global memory pointer containing the inclusive scan of the factors
48
+ * @param inclusive_scan pointer to global memory containing the inclusive scan of the factors
49
49
* @param num_factors Number of factors
50
50
* @param level_num factor number
51
51
* @return Outer batch product
@@ -72,9 +72,9 @@ PORTFFT_INLINE inline IdxGlobal get_outer_batch_product(const IdxGlobal* inclusi
72
72
* required m-dimensional loop into the single loop (dispatch level), and this function calculates the offset.
73
73
* Precomputed inclusive scans are used to further reduce the number of calculations required.
74
74
*
75
- * @param factors global memory pointer containing factors of the input
76
- * @param inner_batches global memory pointer containing the inner batch for each factor
77
- * @param inclusive_scan global memory pointer containing the inclusive scan of the factors
75
+ * @param factors pointer to global memory containing factors of the input
76
+ * @param inner_batches pointer to global memory containing the inner batch for each factor
77
+ * @param inclusive_scan pointer to global memory containing the inclusive scan of the factors
78
78
* @param num_factors Number of factors
79
79
* @param iter_value Current iterator value of the flattened n-dimensional loop
80
80
* @param outer_batch_product Inclusive Scan of factors at position level_num-1
@@ -122,14 +122,14 @@ PORTFFT_INLINE inline IdxGlobal get_outer_batch_offset(const IdxGlobal* factors,
122
122
* @param output output pointer
123
123
* @param input_imag input pointer for imaginary data
124
124
* @param output_imag output pointer for imaginary data
125
- * @param implementation_twiddles global twiddles pointer containing twiddles for the sub implementation
125
+ * @param implementation_twiddles pointer to global memory containing twiddles for the sub implementation
126
126
* @param store_modifier store modifier data
127
- * @param input_loc local memory for storing the input
128
- * @param twiddles_loc local memory for storing the twiddles for sub-implementation
129
- * @param store_modifier_loc local memory for store modifier data
130
- * @param factors global memory pointer containing factors of the input
131
- * @param inner_batches global memory pointer containing the inner batch for each factor
132
- * @param inclusive_scan global memory pointer containing the inclusive scan of the factors
127
+ * @param input_loc pointer to local memory for storing the input
128
+ * @param twiddles_loc pointer to local memory for storing the twiddles for sub-implementation
129
+ * @param store_modifier_loc pointer to local memory for store modifier data
130
+ * @param factors pointer to global memory containing factors of the input
131
+ * @param inner_batches pointer to global memory containing the inner batch for each factor
132
+ * @param inclusive_scan pointer to global memory containing the inclusive scan of the factors
133
133
* @param batch_size Batch size for the corresponding input
134
134
* @param global_data global data
135
135
* @param kh kernel handler
@@ -187,10 +187,10 @@ PORTFFT_INLINE void dispatch_level(const Scalar* input, Scalar* output, const Sc
187
187
* @param loc_for_store_modifier local memory for store modifier data
188
188
* @param multipliers_between_factors twiddles to be multiplied between factors
189
189
* @param impl_twiddles twiddles required for sub implementation
190
- * @param factors global memory pointer containing factors of the input
191
- * @param inner_batches global memory pointer containing the inner batch for each factor
192
- * @param inclusive_scan global memory pointer containing the inclusive scan of the factors
193
- * @param n_transforms batch size corresposding to the factor
190
+ * @param factors pointer to global memory containing factors of the input
191
+ * @param inner_batches pointer to global memory containing the inner batch for each factor
192
+ * @param inclusive_scan pointer to global memory containing the inclusive scan of the factors
193
+ * @param n_transforms batch size corresponding to the factor
194
194
* @param input_batch_offset offset for the input pointer
195
195
* @param launch_params launch configuration, the global and local range with which the kernel will get launched
196
196
* @param cgh associated command group handler
@@ -246,10 +246,10 @@ void launch_kernel(sycl::accessor<const Scalar, 1, sycl::access::mode::read>& in
246
246
* @param loc_for_store_modifier local memory for store modifier data
247
247
* @param multipliers_between_factors twiddles to be multiplied between factors
248
248
* @param impl_twiddles twiddles required for sub implementation
249
- * @param factors global memory pointer containing factors of the input
250
- * @param inner_batches global memory pointer containing the inner batch for each factor
251
- * @param inclusive_scan global memory pointer containing the inclusive scan of the factors
252
- * @param n_transforms batch size corresposding to the factor
249
+ * @param factors pointer to global memory containing factors of the input
250
+ * @param inner_batches pointer to global memory containing the inner batch for each factor
251
+ * @param inclusive_scan pointer to global memory containing the inclusive scan of the factors
252
+ * @param n_transforms batch size corresponding to the factor
253
253
* @param input_batch_offset offset for the input pointer
254
254
* @param launch_params launch configuration, the global and local range with which the kernel will get launched
255
255
* @param cgh associated command group handler
@@ -297,9 +297,9 @@ void launch_kernel(const Scalar* input, Scalar* output, const Scalar* input_imag
297
297
* @param input input pointer
298
298
* @param output output accessor
299
299
* @param loc 2D local memory
300
- * @param factors global memory pointer containing factors of the input
301
- * @param inner_batches global memory pointer containing the inner batch for each factor
302
- * @param inclusive_scan global memory pointer containing the inclusive scan of the factors
300
+ * @param factors pointer to global memory containing factors of the input
301
+ * @param inner_batches pointer to global memory containing the inner batch for each factor
302
+ * @param inclusive_scan pointer to global memory containing the inclusive scan of the factors
303
303
* @param output_offset offset to output pointer
304
304
* @param ldb leading dimension of the output
305
305
* @param lda leading dimension of the input
@@ -357,9 +357,9 @@ static void dispatch_transpose_kernel_impl(const Scalar* input,
357
357
* @param input input pointer
358
358
* @param output output pointer
359
359
* @param loc 2D local memory
360
- * @param factors global memory pointer containing factors of the input
361
- * @param inner_batches global memory pointer containing the inner batch for each factor
362
- * @param inclusive_scan global memory pointer containing the inclusive scan of the factors
360
+ * @param factors pointer to global memory containing factors of the input
361
+ * @param inner_batches pointer to global memory containing the inner batch for each factor
362
+ * @param inclusive_scan pointer to global memory containing the inclusive scan of the factors
363
363
* @param output_offset offset to output pointer
364
364
* @param ldb leading dimension of the output
365
365
* @param lda leading dimension of the input
@@ -418,7 +418,7 @@ static void dispatch_transpose_kernel_impl(const Scalar* input, Scalar* output,
418
418
* @param kd_struct kernel data struct
419
419
* @param input input pointer
420
420
* @param output output usm/buffer
421
- * @param factors_triple global memory pointer containing factors, inner batches corresponding per factor, and the
421
+ * @param factors_triple pointer to global memory containing factors, inner batches corresponding per factor, and the
422
422
* inclusive scan of the factors
423
423
* @param committed_size committed size of the FFT
424
424
* @param num_batches_in_l2 number of batches in l2
@@ -481,8 +481,8 @@ sycl::event transpose_level(const typename committed_descriptor_impl<Scalar, Dom
481
481
* @param output output pointer
482
482
* @param input_imag input usm/buffer for imaginary data
483
483
* @param output_imag output pointer for imaginary data
484
- * @param twiddles_ptr global pointer containing the input
485
- * @param factors_triple global memory pointer containing factors, inner batches corresponding per factor, and the
484
+ * @param twiddles_ptr pointer to global memory containing the input
485
+ * @param factors_triple pointer to global memory containing factors, inner batches corresponding per factor, and the
486
486
* inclusive scan of the factors
487
487
* @param intermediate_twiddle_offset offset value to the global pointer for twiddles in between factors
488
488
* @param subimpl_twiddle_offset offset value to to the global pointer for obtaining the twiddles required for sub
0 commit comments