Questions tagged [tesla]

Nvidia Tesla is a brand of GPUs targeting the high performance computing market.

Nvidia Tesla has very high computational power (measured in floating point operations per second or FLOPS) compared to microprocessors. Teslas power some of the world's fastest supercomputers, including Titan at Oak Ridge National Laboratory and Tianhe-1A.

Tesla products primarily used

  • In simulations and in large scale calculations (especially floating-point calculations).
  • For high-end image generation for applications in professional and scientific fields.
  • For password brute-forcing.

.

89 questions
3
votes
1 answer

What exactly is NVIDIA Tesla and CUDA?

I'm doing some research on GPGPU and currently struggle with the question what Tesla and CUDA really are. In the paper "NVIDIA Tesla: A unified Graphics and Computing Architecture" it says that the Tesla architecture was introduced with the GeForce…
fliX
  • 773
  • 8
  • 24
2
votes
1 answer

NVidia CUDA: Difference between Tesla T10 processors and Tesla M2090 processor

I have a CUDA code that performs finite difference computation. The code works well on Tesla M2090 processors with no error. The same code results in lots of error in Tesla T10 processor. I am getting lots of zeros in my results. Do anyone know the…
veda
  • 6,416
  • 15
  • 58
  • 78
2
votes
1 answer

How to enable WDDM on NVIDIA P100?

We have machine with Windows Server 2019 and NVIDIA P100. When we install official driver we get TCC mode. For our application we need DirectX, but when we try to enable WDDM with nvidia-smi tool, we get error. In documentation we found this: Tesla…
John Tracid
  • 3,836
  • 3
  • 22
  • 33
2
votes
1 answer

CUDA: What is the thread block limitation of devices whose compute capability is 1.0?

Recently, I am reading the book 'Programming Massively Parallel processors'. One of the reading exercise in chapter 3 ask me to detect which assignment for SM is possible. The problem looks like below Indicate which of the following assignments per…
Wenbo Hou
  • 23
  • 3
2
votes
0 answers

Is there is a gradient descent implementation that uses matrix matrix multiplication?

I'm using the below gradient descent implementation in Octave for ML. I tried first to increase number of CPU cores and run Octave multithreaded using OpenBlas but still I didn't get the results I'm looking for, so I tried using Nvidia's toolkit and…
Fady Anwar
  • 29
  • 5
2
votes
2 answers

Nginx error: "No shared cipher". But there are

My Nginx server has an SSL certificate that looks really good and works in most browsers perfectly. The server is https://live.evmote.com . You can "hit" the server by going to https://live.evmote.com/primus . The SSL Cert check is here: …
rsteckler
  • 305
  • 2
  • 8
2
votes
1 answer

Tesla k20m interoperability with Direct3D 11

I would like to know if I can work with Nvidia Tesla K20 and Direct3D 11? I'd like to render an image using Direct3D, Then process the rendered image with CUDA, [ I know how to work out the CUDA interoperability]. Tesla k20 doesn't have a display…
TripleS
  • 1,216
  • 1
  • 23
  • 39
2
votes
1 answer

Why my cuda program became slower after using 128 threads on blocks?

I have a simple cuda application with the following code: #include #include #include __global__ void daxpy(int n, int a, int *x, int *y) { int i = blockIdx.x*blockDim.x + threadIdx.x; y[i] = x[i]; int j; …
ccwenlin
  • 87
  • 10
2
votes
1 answer

How to Render With OpenGL on Tesla equiped Windows based host

I used to think that Tesla will not support OpenGL API, but recently leanred that Tesla products also can be used on visualization via OpenGL. I have a workstation, in which there are 2 Intel E5 CPUs, and 1 Tesla C2050. According to…
魏晓萌
  • 73
  • 1
  • 7
2
votes
2 answers

OpenCL and Tesla M1060

I'm using the Tesla m1060 for GPGPU computation. It has the following specs: # of Tesla GPUs 1 # of Streaming Processor Cores (XXX per processor) 240 Memory Interface (512-bit per GPU) 512-bit When I use OpenCL, I can display the following board…
Carmellose
  • 4,815
  • 10
  • 38
  • 56
2
votes
0 answers

AIR 3D Amazon render server with NVIDIA Tesla GPU not working

We have an Adobe AIR Stage3D application that renders 3D objects and lets the user view them. We want to create a render server for fallback if the user has no Flash installed. The easiest would be to use the same codebase to generate 3D images on a…
Reider
  • 21
  • 1
2
votes
2 answers

Do I need a 64 bit SDK on a 64 bit machine

My lab just received a Tesla C2070 , and the card is installed on a machine running windows server 64 bits. I'm supposed to write some cuda simulations. Do I need to install the 64 bits version of the SDK and CUDA toolkits ? The reason I'm asking…
zebullon
  • 191
  • 3
  • 10
2
votes
1 answer

Fermi architecture possible solution to my comparative study?

I am working on a comparative study in which I have to make a comparison of the serial and parallel versions of an algorithm (NSGA-II algorithm to be precise download link here). NSGA-II is a heuristic optimization method and hence depends on the…
Abhinav
  • 1,882
  • 1
  • 18
  • 34
1
vote
1 answer

Tesla based server for web server?

I just want to know if I can use a tesla based server (with a Tesla GPU to be clear) as a web server just like a normal server for example by installing apache and mysql? If it's possible, I would like to know if it will use efficiently the power of…
Cedric
  • 87
  • 1
  • 2
  • 9
1
vote
0 answers

Set proxy credentials with Tesla.Adapter.Mint

How can I set proxy credentials when using Tesla.Adapter.Mint. According https://hexdocs.pm/tesla/Tesla.Adapter.Mint.html It should be something like {:http, "127.0.0.1", 8888, []} , but where can I pass credentials just like:…
Klevison
  • 3,342
  • 2
  • 19
  • 32