Skip to content

Commit

Permalink
Corrected issue ARM-software#118
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Nov 27, 2023
1 parent c35c8d2 commit 0365807
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 15 deletions.
3 changes: 2 additions & 1 deletion Source/MatrixFunctions/arm_mat_vec_mult_f16.c
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,8 @@ void arm_mat_vec_mult_f16(const arm_matrix_instance_f16 *pSrcMat, const float16_
const float16_t *pInA4; /* input data matrix pointer A of Q31 type */
const float16_t *pInVec; /* input data matrix pointer B of Q31 type */
float16_t *px; /* Temporary output data matrix pointer */
uint16_t i, row, colCnt; /* loop counters */
uint32_t i;
uint16_t row, colCnt; /* loop counters */
float16_t matData, matData2, vecData, vecData2;


Expand Down
3 changes: 2 additions & 1 deletion Source/MatrixFunctions/arm_mat_vec_mult_f32.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,8 @@ void arm_mat_vec_mult_f32(const arm_matrix_instance_f32 *pSrcMat, const float32_
const float32_t *pInA4; /* input data matrix pointer A of Q31 type */
const float32_t *pInVec; /* input data matrix pointer B of Q31 type */
float32_t *px; /* Temporary output data matrix pointer */
uint16_t i, row, colCnt; /* loop counters */
uint32_t i;
uint16_t row, colCnt; /* loop counters */
float32_t matData, matData2, vecData, vecData2;


Expand Down
6 changes: 3 additions & 3 deletions Testing/cmsis_build/runall.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ def runAVH(build,core):
#allSuites=[("StatsTestsQ7","../Output.pickle")]

allSuites=[
("MISCQ31","../Output.pickle"),
("MISCQ15","../Output.pickle"),
("MISCQ7","../Output.pickle"),
("UnaryTestsF32","../Output.pickle"),
#("MISCQ15","../Output.pickle"),
#("MISCQ7","../Output.pickle"),
#("FIRF16","../Output_f16.pickle")
]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down
2 changes: 1 addition & 1 deletion Testing/cmsis_build/test.Release+VHT-Corstone-300.cprj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down
2 changes: 1 addition & 1 deletion Testing/cmsis_build/test.Release+VHT-Corstone-310.cprj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down
2 changes: 1 addition & 1 deletion Testing/cmsis_build/test.Release+VHT_M0P.cprj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down
2 changes: 1 addition & 1 deletion Testing/cmsis_build/test.Release+VHT_M23.cprj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down
2 changes: 1 addition & 1 deletion Testing/cmsis_build/test.Release+VHT_M3.cprj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down
2 changes: 1 addition & 1 deletion Testing/cmsis_build/test.Release+VHT_M33.cprj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down
2 changes: 1 addition & 1 deletion Testing/cmsis_build/test.Release+VHT_M4.cprj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down
2 changes: 1 addition & 1 deletion Testing/cmsis_build/test.Release+VHT_M7.cprj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down
2 changes: 1 addition & 1 deletion Testing/cmsis_build/test.Release+VHT_M7_UNROLLED.cprj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2023-11-24T14:50:42" tool="csolution 2.0.0"/>
<created timestamp="2023-11-27T06:32:22" tool="csolution 2.0.0"/>

<info isLayer="false">
<description>Automatically generated project</description>
Expand Down

0 comments on commit 0365807

Please sign in to comment.