Questions tagged [tegra]

Tegra is a family of systems-on-chip (SoC) for mobile devices, designed and sold to device manufacturers by NVIDIA, including one or more ARM CPU cores, a specially-designed NVIDIA GPU, among other components.

Tegra SoCs are usually found in mobile phones and tablets. See NVIDIA's Tegra site for specs, and some examples of products powered with Tegra processors. So far there have been three iterations of the Tegra family, named numerically.

This tag is very likely to be found in conjunction with , and sometimes .

121 questions
12
votes
3 answers

X Error of failed request: BadValue (integer parameter out of range for operation)

I'm trying to compile and run this c++ code #include void displayMe(void) { glClear(GL_COLOR_BUFFER_BIT); glBegin(GL_POLYGON); glVertex3f(0.0, 0.0, 0.0); glVertex3f(0.5, 0.0, 0.0); glVertex3f(0.5, 0.5,…
vmrfreitas
  • 183
  • 1
  • 2
  • 11
10
votes
2 answers

What do I need for programming for Tegra GPU

Can I develop applications on CUDA processor Tegra 1/2, what do I need for this and what Tegra 1/2 CUDA-capability? I found only NVIDIA Debug Manager for development in Eclipse for Android, but I do not know if he can develop a CUDA-style.
Alex
  • 12,578
  • 15
  • 99
  • 195
9
votes
2 answers

Using OpenMAX (IL?) for audio/video decoding on Android

Many of the newer hardware platforms running Android, in particular NVIDIA's Tegra 2, support OpenMAX for media acceleration. It's effectively impossible on today's devices to decode 720p video without this support, but the number of demuxers…
Christopher Corsi
  • 131
  • 1
  • 1
  • 4
9
votes
0 answers

OpenCV crashes after a short time in Android app

I have an app which performs some image stitching and uses OpenCV. It used to work but all of a sudden it crashes (randomly?) all of the time. I don't know why this happens, I didn't change the code, but also didn't try that feature for several…
j00hi
  • 5,420
  • 3
  • 45
  • 82
8
votes
1 answer

Mobile devices that are Nvidia Tegra profiler 2.0 compliant

I am profiling a JNI Android Application . So far I managed to profile it with Android-NDK-profiler. It is very simple so I want to go further and get info of the hardware too, like cache misses, bus speed etc. I have read that the NVidia Tegra…
Jav_Rock
  • 22,059
  • 20
  • 123
  • 164
8
votes
2 answers

Android CPU ARM architectures

We have a Android CPU dependent code and I would like to see how many devices used by customers are ARMv6/ARMv7, if there are still ARM v5, how many of ARMv6 have VFP, what is the Tegra or Neon percentage. Any tips where such statistics could be…
STeN
  • 6,262
  • 22
  • 80
  • 125
6
votes
0 answers

DMA between CPU and GPU in TensorFlow

I am running TensorFlow on NVidia Jetson TX1 and faced memory shortage when I train large network such as GoogleNet. CPU and GPU in TX1 do not have separate memory and they share one memory. However, It seems that TensorFlow is trying to allocate…
enc
  • 3,345
  • 4
  • 21
  • 22
6
votes
2 answers

TensorFlow on Nvidia TX1

Anyone gotten tensorflow working on the Nvidia Tegra X1? I've found a few sources indicating it's possible on the TK1 or with significant hacking/errors on the TX1 but no definitive recipe…
Dwight Crow
  • 368
  • 3
  • 11
6
votes
0 answers

How to start gst-launch on a custom xy position

I'm developing a C++ application on embedded-linux and I need to display video from camera in it. I've used gstreamer to create a window and start the video capture (because it has hardware support on tegra) with command: system("gst-launch -e…
devslo
  • 61
  • 4
5
votes
0 answers

How to get OpenCL running on an NVIDIA JETSON TK1

I'm a graduate student from Korea. Recently, I Started studying OpenCL and the NVIDIA JETSON TK1. The NVIDIA JETSON K1 can run CUDA programs, so here is my question: I would like to execute OpenCL kernels on the NVIDIA JETSON, but compiling a simple…
Geun Mo Lee
  • 111
  • 2
  • 12
5
votes
1 answer

CPU memory access latency of data allocated with malloc() vs. cudaHostAlloc() on Tegra TK1

I'm performing a simple test which is comparing the access latency of data allocated with malloc() and data allocated with cudaHostAlloc() from the host (the cpu is performing the accesses). I noticed that accessing data allocated with…
mdashti
  • 131
  • 6
5
votes
2 answers

'elf.h' file not found error when compiling Android kernel for Nexus 7 on Mac OS X

When compiling Android kernel for Nexus 7 on Mountain Lion 10.8.4 I ran into fatal error: 'elf.h' file not found issue: /Volumes/Android/WORKING_DIRECTORY/device/asus/grouper/tegra/ [derek@retina-mbp]$ make scripts/kconfig/conf --silentoldconfig…
Derek Gogol
  • 1,292
  • 16
  • 15
5
votes
1 answer

System.LoadLibrary(libname) crashing on Nvidia Tegra 2 chipset (Android Samsung Tab) in Javacv code

I have made a custom camera in Andorid using Javacv code. I hadn't included all the .so files but only those which seems required for my application. As in the screen shot below: It works well on Samsumg Galaxy S2, S3 and Sony Ericsson Xperia…
Sourab Sharma
  • 2,940
  • 1
  • 25
  • 38
5
votes
1 answer

Typical L1 and L2 access latency for SoCs made of ARM Cortex-A9

I am looking for L1 access latency and L2 access latency for SoCs made from ARM Cortex-A9 processors such as Nvidia Tegra 2 and Tegra 3 which have multiple ARM A9 processors. I could find some information about the L1 and L2 size of those…
aminfar
  • 2,297
  • 3
  • 27
  • 37
4
votes
2 answers

-mimplicit-it compiler flag not recognized

I am attempting to compile a C++ library for a Tegra TK1. The library links to TBB, which I pulled using the package manager. During compilation I got the following error /tmp/cc4iLbKz.s: Assembler messages: /tmp/cc4iLbKz.s:9541: Error: thumb…
dmagree
  • 265
  • 1
  • 2
  • 10
1
2 3
8 9