Skip to content

Commit ba74725

Browse files
committed
clang: src: gpu: intel: softmax: fix clang warning
1 parent 4457d30 commit ba74725

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gpu/intel/softmax/simple.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ simple_softmax_fwd_generic(__global SRC_DATA_T *src, __global DATA_T *dst,
193193
uint res = philox_4x32_s64(
194194
(ulong)data_off, (ulong)dropout_seed, (ulong)dropout_offset);
195195
#else
196-
uint res = philox_4x32(data_off, (uint)dropout_seed);
196+
uint res = philox_4x32((uint)data_off, (uint)dropout_seed);
197197
#endif
198198
uchar dropout = res > dropout_threshold;
199199
tmp = (dropout) ? tmp * dropout_inv_q : 0;

0 commit comments

Comments
 (0)