Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build if supporting __ARM_FEATURE_FP16_VECTOR_ARITHMETIC #1436

Merged
merged 4 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
#include <stdint.h>
#include <stdlib.h>
#include <math.h>
#include "compiler_fp16.h"
#include "graph/tensor.h"
#include "utility/log.h"
#include "common/compiler_fp16.h"
#include "conv_dw_kernel_fp16_arm82.h"

void dw_k3s1p1_fp16_a76(__fp16* input, __fp16* kernel, __fp16* output, long channel_number, long input_w, long input_h, __fp16* bias);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
#include <arm_neon.h>
#include <sys/time.h>

#include "conv_kernel_arm.h"
#include "compiler_fp16.h"
#include "../conv_kernel_arm.h"
#include "common/compiler_fp16.h"

#define PER_OUT_CHAN 16

Expand Down
2 changes: 1 addition & 1 deletion source/device/cpu/op/fc/cortex-a/fc_hcl_arm.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#include <string.h>

#if __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
#include "cortex_a/fc_kernel_fp16_arm82.h"
#include "armv8.2/fc_kernel_fp16_arm82.h"
#endif

static int prerun(struct node_ops* node_ops, struct exec_node* exec_node, struct exec_graph* exec_graph)
Expand Down
Loading