-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Align types in ORC function signatures
Signed-off-by: Clayton Smith <[email protected]>
- Loading branch information
Showing
39 changed files
with
69 additions
and
69 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
kernels/volk/asm/orc/volk_16ic_deinterleave_16i_x2_a_orc_impl.orc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_16ic_deinterleave_16i_x2_a_orc_impl | ||
.dest 2 idst | ||
.dest 2 qdst | ||
.source 4 src | ||
.dest 2 idst int16_t | ||
.dest 2 qdst int16_t | ||
.source 4 src lv_16sc_t | ||
splitlw qdst, idst, src |
4 changes: 2 additions & 2 deletions
4
kernels/volk/asm/orc/volk_16ic_deinterleave_real_8i_a_orc_impl.orc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.function volk_16ic_deinterleave_real_8i_a_orc_impl | ||
.dest 1 dst | ||
.source 4 src | ||
.dest 1 dst int8_t | ||
.source 4 src lv_16sc_t | ||
.temp 2 iw | ||
select0lw iw, src | ||
convhwb dst, iw |
6 changes: 3 additions & 3 deletions
6
kernels/volk/asm/orc/volk_16ic_s32f_deinterleave_32f_x2_a_orc_impl.orc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.function volk_16u_byteswap_a_orc_impl | ||
.dest 2 dst | ||
.dest 2 dst uint16_t | ||
swapw dst, dst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32f_s32f_add_32f_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.dest 4 dst float | ||
.source 4 src1 float | ||
.floatparam 4 scalar | ||
addf dst, src1, scalar |
4 changes: 2 additions & 2 deletions
4
kernels/volk/asm/orc/volk_32f_s32f_multiply_32f_a_orc_impl.orc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32f_s32f_multiply_32f_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.dest 4 dst float | ||
.source 4 src1 float | ||
.floatparam 4 scalar | ||
mulf dst, src1, scalar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32f_s32f_normalize_a_orc_impl | ||
.source 4 src1 | ||
.source 4 src1 float | ||
.floatparam 4 invscalar | ||
.dest 4 dst | ||
.dest 4 dst float | ||
mulf dst, src1, invscalar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32f_x2_add_32f_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.source 4 src2 | ||
.dest 4 dst float | ||
.source 4 src1 float | ||
.source 4 src2 float | ||
addf dst, src1, src2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32f_x2_divide_32f_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.source 4 src2 | ||
.dest 4 dst float | ||
.source 4 src1 float | ||
.source 4 src2 float | ||
divf dst, src1, src2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32f_x2_max_32f_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.source 4 src2 | ||
.dest 4 dst float | ||
.source 4 src1 float | ||
.source 4 src2 float | ||
maxf dst, src1, src2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32f_x2_min_32f_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.source 4 src2 | ||
.dest 4 dst float | ||
.source 4 src1 float | ||
.source 4 src2 float | ||
minf dst, src1, src2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32f_x2_multiply_32f_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.source 4 src2 | ||
.dest 4 dst float | ||
.source 4 src1 float | ||
.source 4 src2 float | ||
mulf dst, src1, src2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32f_x2_subtract_32f_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.source 4 src2 | ||
.dest 4 dst float | ||
.source 4 src1 float | ||
.source 4 src2 float | ||
subf dst, src1, src2 |
6 changes: 3 additions & 3 deletions
6
kernels/volk/asm/orc/volk_32fc_32f_multiply_32fc_a_orc_impl.orc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.function volk_32fc_32f_multiply_32fc_a_orc_impl | ||
.source 8 src1 | ||
.source 4 src2 | ||
.dest 8 dst | ||
.source 8 src1 lv_32fc_t | ||
.source 4 src2 float | ||
.dest 8 dst lv_32fc_t | ||
.temp 8 tmp | ||
mergelq tmp, src2, src2 | ||
x2 mulf dst, src1, tmp |
6 changes: 3 additions & 3 deletions
6
kernels/volk/asm/orc/volk_32fc_x2_multiply_32fc_a_orc_impl.orc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32i_x2_and_32i_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.source 4 src2 | ||
.dest 4 dst int32_t | ||
.source 4 src1 int32_t | ||
.source 4 src2 int32_t | ||
andl dst, src1, src2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.function volk_32i_x2_or_32i_a_orc_impl | ||
.dest 4 dst | ||
.source 4 src1 | ||
.source 4 src2 | ||
.dest 4 dst int32_t | ||
.source 4 src1 int32_t | ||
.source 4 src2 int32_t | ||
orl dst, src1, src2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.function volk_8i_convert_16i_a_orc_impl | ||
.source 1 src | ||
.dest 2 dst | ||
.source 1 src int8_t | ||
.dest 2 dst int16_t | ||
.temp 2 tmp | ||
convsbw tmp, src | ||
shlw dst, tmp, 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters