Skip to content

Commit

Permalink
Update wrong weight data
Browse files Browse the repository at this point in the history
ONE-DCO-1.0-Signed-off-by: Jiyoung Yun <[email protected]>
  • Loading branch information
jyoungyun committed Aug 1, 2024
1 parent 0adcc93 commit fe93805
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
TEST_F(GenModelTest, OneOp_DepthwiseConv2D)
{
CircleGen cgen;
std::vector<float> weight_data{1.0f, 2.0f, 3.0f, 4.0f, -9.0f, 10.0f, -11.0f, 12.0f,
5.0f, 6.0f, 7.0f, 8.0f, 13.0f, -14.0f, 15.0f, -16};
std::vector<float> weight_data{1.0f, 2.0f, 3.0f, 4.0f, -9.0f, 10.0f, -11.0f, 12.0f};
uint32_t weight_buf = cgen.addBuffer(weight_data);
std::vector<float> bias_data{0.0f, 0.0f};
uint32_t bias_buf = cgen.addBuffer(bias_data);
Expand Down

0 comments on commit fe93805

Please sign in to comment.