odroid

Tensorflow compilation on Odroid XU4

廉价感情. 提交于 2021-02-07 13:24:33
问题 I am trying to compile Tensorflow (tried both: full & lite) on Odroid XU4 (16GB eMMc, Ubuntu 16) but I am getting errors shown in figures: https://www.dropbox.com/sh/j86ysncze1q0eka/AAB8RZtUTkaytqfEGivbev_Ga?dl=0 I am using FlytOS as OS(http://docs.flytbase.com/docs/FlytOS/GettingStarted/OdroidGuide.html). Its customized Ubuntu 16 with OpenCV and ROS setup, makes 11GB after installation. So, I got only 2.4GB free. Therefore, I added 16GB USB as swap memory. I have installed Bazel without

C/C++ MPI speedup is not as expected

此生再无相见时 提交于 2021-01-28 15:14:26
问题 I am trying to write an MPI application to speedup a math algorithm with a computer cluster. But before this I am doing some kind of benchmarking. But the first results are not as much as expected. The test application has linear speedup with 4 cores but 5,6 cores are not speeding up the application. I am doing a test with Odroid N2 platform. It has 6 cores. Nproc says there are 6 cores available. Am I missing some kind of configuration? Or is my code not prepared well enought ( it is based

C/C++ MPI speedup is not as expected

|▌冷眼眸甩不掉的悲伤 提交于 2021-01-28 15:14:13
问题 I am trying to write an MPI application to speedup a math algorithm with a computer cluster. But before this I am doing some kind of benchmarking. But the first results are not as much as expected. The test application has linear speedup with 4 cores but 5,6 cores are not speeding up the application. I am doing a test with Odroid N2 platform. It has 6 cores. Nproc says there are 6 cores available. Am I missing some kind of configuration? Or is my code not prepared well enought ( it is based

C/C++ MPI speedup is not as expected

橙三吉。 提交于 2021-01-28 15:14:00
问题 I am trying to write an MPI application to speedup a math algorithm with a computer cluster. But before this I am doing some kind of benchmarking. But the first results are not as much as expected. The test application has linear speedup with 4 cores but 5,6 cores are not speeding up the application. I am doing a test with Odroid N2 platform. It has 6 cores. Nproc says there are 6 cores available. Am I missing some kind of configuration? Or is my code not prepared well enought ( it is based

C/C++ MPI speedup is not as expected

左心房为你撑大大i 提交于 2021-01-28 15:12:06
问题 I am trying to write an MPI application to speedup a math algorithm with a computer cluster. But before this I am doing some kind of benchmarking. But the first results are not as much as expected. The test application has linear speedup with 4 cores but 5,6 cores are not speeding up the application. I am doing a test with Odroid N2 platform. It has 6 cores. Nproc says there are 6 cores available. Am I missing some kind of configuration? Or is my code not prepared well enought ( it is based

C/C++ MPI speedup is not as expected

若如初见. 提交于 2021-01-28 15:11:17
问题 I am trying to write an MPI application to speedup a math algorithm with a computer cluster. But before this I am doing some kind of benchmarking. But the first results are not as much as expected. The test application has linear speedup with 4 cores but 5,6 cores are not speeding up the application. I am doing a test with Odroid N2 platform. It has 6 cores. Nproc says there are 6 cores available. Am I missing some kind of configuration? Or is my code not prepared well enought ( it is based

C/C++ MPI speedup is not as expected

不想你离开。 提交于 2021-01-28 15:09:08
问题 I am trying to write an MPI application to speedup a math algorithm with a computer cluster. But before this I am doing some kind of benchmarking. But the first results are not as much as expected. The test application has linear speedup with 4 cores but 5,6 cores are not speeding up the application. I am doing a test with Odroid N2 platform. It has 6 cores. Nproc says there are 6 cores available. Am I missing some kind of configuration? Or is my code not prepared well enought ( it is based

Xen installation in odroid xu4

烂漫一生 提交于 2020-01-14 03:15:10
问题 I am trying to run type 1 hypervisor xen in exynos5422 platform. i build the xen source following. https://wiki.odroid.com/odroid-xu4/application_note/software/xen_virtualization Can someone please explain me how xen understands the underlying hardware and memory? since the reference path only tell to install the binary formed after build, is there any device tree in xen? 来源: https://stackoverflow.com/questions/59352074/xen-installation-in-odroid-xu4

OpenCV configure with TBB for ARM (Ubuntu, 3.0.63)

守給你的承諾、 提交于 2019-12-11 03:34:43
问题 I'm trying to compile OpenCV libs with TBB support for odroid U2 (with Quad core ARM Cortex-A9 MPCore). I have no problem with compile current OpenCV (from github) without TBB. And also I have no problem with compiling TBB libs fron sources - tbb41_20130116oss_src.tgz and I have successfully builded TBB libs: root@odroid:~/src/tbb41_20130116oss/build/linux_armv7l_gcc_cc4.6_libc2.15_kernel3.0.63_release# ls arena.d concurrent_queue.o frontend.d libtbbmalloc.so.2 proxy.d scheduler.o task_v2.d

gstreamer critical error when trying to capture video using webcam python opencv

﹥>﹥吖頭↗ 提交于 2019-12-01 15:47:14
i'm trying to take a video with webcam using opencv and python with a simple code import numpy as np import cv2 cap = cv2.VideoCapture(0) print('cap.isOpened') if cap.isOpened(): print ('cap is opened') while(True): re,img=cap.read() cv2.imshow("video output", img) k = cv2.waitKey(10)&0xFF if k==27: break cap.release() cv2.destroyAllWindows() it's working fine if i try to play an existing video such as .mp4 file. but when i try using a webcam i got an error GStreamer-CRITICAL **: gst_element_get_state: assertion 'GST_IS_ELEMENT (element)' failed cap.isOpened for more information i'm using