You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
model/nnapi_log_mobilenet_v2_1.0_224.tflite.txt를 보시면 mobilenet에서 부르는 nnapi operation으로는
ANEURALNETWORKS_ADD
ANEURALNETWORKS_CONV_2D
ANEURALNETWORKS_DEPTHWISE_CONV_2D
ANEURALNETWORKS_RESHAPE
ANEURALNETWORKS_AVERAGE_POOL_2D
ANEURALNETWORKS_SOFTMAX
가 있습니다.
neurun 라이브러리엔 conv2d, reshape, averagepool2d, softmax가 이미 구현되어 있고
depthwise conv 2d를 디버깅 메세지와 함께 neurun_op_relu 브랜치에 구현했습니다.
그런데 nnfw gbs 빌드 과정 중
[ 248s] -- Check for working C compiler: /bin/cc
[ 249s] -- Check for working C compiler: /bin/cc -- broken
[ 249s] CMake Error at /usr/share/cmake/Modules/CMakeTestCCompiler.cmake:51 (message):
[ 249s] The C compiler "/bin/cc" is not able to compile a simple test program.
이러한 오류가 발생하여 테스트를 못하고 있는 상황입니다.
그리고 pure_arm_compute가 아닌 neurun의 neuralnetworks.so를 사용할 방법을 알아볼 필요가 있습니다.
The text was updated successfully, but these errors were encountered:
model/nnapi_log_mobilenet_v2_1.0_224.tflite.txt를 보시면 mobilenet에서 부르는 nnapi operation으로는
ANEURALNETWORKS_ADD
ANEURALNETWORKS_CONV_2D
ANEURALNETWORKS_DEPTHWISE_CONV_2D
ANEURALNETWORKS_RESHAPE
ANEURALNETWORKS_AVERAGE_POOL_2D
ANEURALNETWORKS_SOFTMAX
가 있습니다.
neurun 라이브러리엔 conv2d, reshape, averagepool2d, softmax가 이미 구현되어 있고
depthwise conv 2d를 디버깅 메세지와 함께 neurun_op_relu 브랜치에 구현했습니다.
그런데 nnfw gbs 빌드 과정 중
[ 248s] -- Check for working C compiler: /bin/cc
[ 249s] -- Check for working C compiler: /bin/cc -- broken
[ 249s] CMake Error at /usr/share/cmake/Modules/CMakeTestCCompiler.cmake:51 (message):
[ 249s] The C compiler "/bin/cc" is not able to compile a simple test program.
이러한 오류가 발생하여 테스트를 못하고 있는 상황입니다.
그리고 pure_arm_compute가 아닌 neurun의 neuralnetworks.so를 사용할 방법을 알아볼 필요가 있습니다.
The text was updated successfully, but these errors were encountered: