Antithesis
Antithesis

Reputation: 337

deviceQuery to find GPU specs on Mac

This is the CUDA install path on my mac

 /Developer/NVIDIA/CUDA-7.5/bin/

I'm trying to run deviceQuery as per the following instructions:

http://docs.nvidia.com/cuda/cuda-getting-started-guide-for-mac-os-x/#axzz3tC8ceEPF

however the x86_64 directory doesn't exist inside my bin directory.

Where, as in which directory can I run deviceQuery?

Upvotes: 0

Views: 776

Answers (1)

Robert Crovella
Robert Crovella

Reputation: 152249

You need to build the samples first, as described here. The process of building the samples should create whatever is needed inside the samples bin directory.

After you have built the samples, note that this: /Developer/NVIDIA/CUDA-7.5/bin/ is not the install path. This: /Developer/NVIDIA/CUDA-7.5/ is the install path. The samples are located here: /Developer/NVIDIA/CUDA-7.5/samples/ and the samples bin directory is here: /Developer/NVIDIA/CUDA-7.5/samples/bin/

(This: /Developer/NVIDIA/CUDA-7.5/bin/ is the tools bin directory. Not the same as the samples bin directory.)

Upvotes: 1

Related Questions