Advertisement
themoosemind

Untitled

Apr 17th, 2015
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.36 KB | None | 0 0
  1. $ nvidia-smi -L
  2. GPU 0: GeForce GTX TITAN Black (UUID: GPU-abcdef12-abcd-1234-1234-01234567890a)
  3.  
  4. $ nvcc --version
  5. nvcc: NVIDIA (R) Cuda compiler driver
  6. Copyright (c) 2005-2013 NVIDIA Corporation
  7. Built on Thu_Mar_13_11:58:58_PDT_2014
  8. Cuda compilation tools, release 6.0, V6.0.1
  9.  
  10. $ nvidia-smi -a
  11.  
  12. ==============NVSMI LOG==============
  13.  
  14. Timestamp : Fri Apr 17 18:44:41 2015
  15. Driver Version : 331.79
  16.  
  17. Attached GPUs : 1
  18. GPU 0000:01:00.0
  19. Product Name : GeForce GTX TITAN Black
  20. Display Mode : N/A
  21. Display Active : N/A
  22. Persistence Mode : Disabled
  23. Accounting Mode : N/A
  24. Accounting Mode Buffer Size : N/A
  25. Driver Model
  26. Current : N/A
  27. Pending : N/A
  28. Serial Number : N/A
  29. GPU UUID : GPU-fcff168f-a045-2f95-7a4f-8e1cf26a24eb
  30. Minor Number : 0
  31. VBIOS Version : 80.80.4E.00.01
  32. Inforom Version
  33. Image Version : N/A
  34. OEM Object : N/A
  35. ECC Object : N/A
  36. Power Management Object : N/A
  37. GPU Operation Mode
  38. Current : N/A
  39. Pending : N/A
  40. PCI
  41. Bus : 0x01
  42. Device : 0x00
  43. Domain : 0x0000
  44. Device Id : 0x100C10DE
  45. Bus Id : 0000:01:00.0
  46. Sub System Id : 0x106610DE
  47. GPU Link Info
  48. PCIe Generation
  49. Max : N/A
  50. Current : N/A
  51. Link Width
  52. Max : N/A
  53. Current : N/A
  54. Bridge Chip
  55. Type : N/A
  56. Firmware : N/A
  57. Fan Speed : 26 %
  58. Performance State : N/A
  59. Clocks Throttle Reasons : N/A
  60. FB Memory Usage
  61. Total : 6143 MiB
  62. Used : 39 MiB
  63. Free : 6104 MiB
  64. BAR1 Memory Usage
  65. Total : N/A
  66. Used : N/A
  67. Free : N/A
  68. Compute Mode : Default
  69. Utilization
  70. Gpu : N/A
  71. Memory : N/A
  72. Ecc Mode
  73. Current : N/A
  74. Pending : N/A
  75. ECC Errors
  76. Volatile
  77. Single Bit
  78. Device Memory : N/A
  79. Register File : N/A
  80. L1 Cache : N/A
  81. L2 Cache : N/A
  82. Texture Memory : N/A
  83. Total : N/A
  84. Double Bit
  85. Device Memory : N/A
  86. Register File : N/A
  87. L1 Cache : N/A
  88. L2 Cache : N/A
  89. Texture Memory : N/A
  90. Total : N/A
  91. Aggregate
  92. Single Bit
  93. Device Memory : N/A
  94. Register File : N/A
  95. L1 Cache : N/A
  96. L2 Cache : N/A
  97. Texture Memory : N/A
  98. Total : N/A
  99. Double Bit
  100. Device Memory : N/A
  101. Register File : N/A
  102. L1 Cache : N/A
  103. L2 Cache : N/A
  104. Texture Memory : N/A
  105. Total : N/A
  106. Retired Pages
  107. Single Bit ECC : N/A
  108. Double Bit ECC : N/A
  109. Pending : N/A
  110. Temperature
  111. Gpu : 29 C
  112. Power Readings
  113. Power Management : N/A
  114. Power Draw : N/A
  115. Power Limit : N/A
  116. Default Power Limit : N/A
  117. Enforced Power Limit : N/A
  118. Min Power Limit : N/A
  119. Max Power Limit : N/A
  120. Clocks
  121. Graphics : N/A
  122. SM : N/A
  123. Memory : N/A
  124. Applications Clocks
  125. Graphics : N/A
  126. Memory : N/A
  127. Default Applications Clocks
  128. Graphics : N/A
  129. Memory : N/A
  130. Max Clocks
  131. Graphics : N/A
  132. SM : N/A
  133. Memory : N/A
  134. Compute Processes : N/A
  135.  
  136.  
  137. $ python theanotest.py
  138. Using gpu device 0: GeForce GTX TITAN Black
  139. [GpuElemwise{exp,no_inplace}(<CudaNdarrayType(float32, vector)>), HostFromGpu(GpuElemwise{exp,no_inplace}.0)]
  140. Looping 1000 times took 0.38205909729 seconds
  141. Result is [ 1.23178029 1.61879349 1.52278066 ..., 2.20771813 2.29967761
  142. 1.62323296]
  143. Used the gpu
  144.  
  145. $ cat ~/.theanorc
  146. [global]
  147. device=gpu
  148. floatX=float32%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement