aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/SIN.tosac
blob: 82361a9b20573ecf931c5c74ab6398bdda933dad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// This confidential and proprietary software may be used only as
// authorised by a licensing agreement from ARM Limited
// (C) COPYRIGHT 2024 ARM Limited
// ALL RIGHTS RESERVED
// The entire notice above must be reproduced on all authorised
// copies and copies may only be made to the extent permitted
// by a licensing agreement from ARM Limited.

for_each(index in shape) {
    in_out_t value1 = tensor_read<in_out_t>(input, shape, index);
    in_out_t value = sin<in_out_t>(value1);
    tensor_write<in_out_t>(output, shape, index, value);
}