Gpu z 2 52 0
Author: n | 2025-04-24
D: Workloads winget-pkgs [master ≡ 0 ~1 -0 !] winget download -m . manifests t TechPowerUp GPU-Z 2.55.0 已找到 TechPowerUp GPU-Z [TechPowerUp.GPU-Z] 版本 2. GPU-Z 0 Builds. GPU-Z 0.6.7; GPU-Z 0.6.6; GPU-Z 0.6.5; GPU-Z 0.6.4; GPU-Z 0.6.3; OldVersion.com provides free software downloads for old versions of programs
GPU-Z GPU-Z _ _
2x24 Stable"24hr Karhu" XMP, Rog Strix OC RTX 4090, Rog Hyperion GR701 Case, Rog Thor II 1200w, Rog Centra True Wireless Speednova, 35" Rog Swift PG35VQ + Acer EI342CKR Pbmiippx 34", EK Link FPT 140mm D-RGB Fans. Rog Claymore II, Rog Harpe Ace Aimlabs Edition, Cyberpunk 2077 Xbox One Controller, WD Black SN850x/Samsung 980+990 PRO/Samsung 980. Honeywell PTM7950 pad on CPU+GPU jeffgoatley iCX Member Total Posts : 280 Reward points : 0 Joined: 2011/01/16 18:31:48Location: Louisville, KY Status: offline Ribbons : 1 Re:My First Precision Skin 2012/01/31 06:54:55 (permalink) Sorry, new to skins but where is the installer? I have the .usf file. But not really sure how to make it work. Can someone help???Thanks! Win 7 64-bit - Corsair Obsidian Series 800D with Extended Water Cooling Case - Intel Core I7 2700k @ 4.40GHz - Asus Maximus IV Extreme-Z - 16G's G.Skill DDR3-2133 11-11-11-13 1.6v - Corsair HX1000i 80+ Platinum PSU - 2 EVGA GTX 780's in SLI with Hydro Copper-1 Quad & 1 Triple Rad with 2 Swiftech - MCP655 Pumps 1 Bitpower 150 Reservoir - 1 Bitpower 250 Reservoir - 1 Swiftech Apogee for CPU - 4 Intel SSD 320 Sata II 120Gb in Raid 0 - 3 Acer G235h Monitors - 1 Asus VG248QE Logitech G910 Keyboard - Logitech G502 Laser Mouse - Creative Sound Blaster Z & Sennheiser PC Headset 350 SE - 5.1 Panasonic A/V Receiver - Polk Audio Speakers & Sub Woofer www.jeffgoatley.com/mymodrig Sparax New Member Total Posts : 24 Reward points : 0 Joined: 2008/02/26 16:21:44Location: UK Status: offline Ribbons : 0 Re:My First Precision Skin 2012/01/31 09:25:52 (permalink) Hiya jeffgoatley There is no installer mate just put the usf file in the skins folder of your evga precision install directory ie: C:\Program Files\EVGA Precision\Skins Then click on the little spanner icon in evga precision and go to the user interface tab pick your desired skin from the menu list at the bottom hit OK and your skin should change. CPU : Intel Q9450 @ 3.6GHz MOB : Asus Striker II Extreme 790i Ultra SLI MEM : 2x2GB Corsair Dominator GT (CMT4GX3M2A2000C8) GPU : NVIDIA GeForce GTX 560 Ti (2048 MB) APU : X-Fi Titanium Fatal1ty PSU : CoolerMaster 850W Modular HDD : 1 x 120GB Corsair Force 3 SSD + 1 x 2TB WD2002FAEX + 2 x 1TB WD1001FALS jeffgoatley iCX Member Total Posts : 280 Reward points : 0 Joined:
GPU-Z -GPU-Z(GPU ) -PC
This example shows how to use GPU-enabled MATLAB® functions to compute a well-known mathematical construction: the Mandelbrot set. Check your GPU using the gpuDevice function.Define the parameters. The Mandelbrot algorithm iterates over a grid of real and imaginary parts. The following code defines the number of iterations, grid size, and grid limits.maxIterations = 500;gridSize = 1000;xlim = [-0.748766713922161, -0.748766707771757];ylim = [ 0.123640844894862, 0.123640851045266]; You can use the gpuArray function to transfer data to the GPU and create a gpuArray, or you can create an array directly on the GPU. gpuArray provides GPU versions of many functions that you can use to create data arrays, such as linspace. For more information, see Create GPU Arrays Directly. x = gpuArray.linspace(xlim(1),xlim(2),gridSize);y = gpuArray.linspace(ylim(1),ylim(2),gridSize);whos x y Name Size Bytes Class Attributes x 1x1000 8000 gpuArray y 1x1000 8000 gpuArray Many MATLAB functions support gpuArrays. When you supply a gpuArray argument to any GPU-enabled function, the function runs automatically on the GPU. For more information, see Run MATLAB Functions on a GPU. Create a complex grid for the algorithm, and create the array count for the results. To create this array directly on the GPU, use the ones function, and specify 'gpuArray'.[xGrid,yGrid] = meshgrid(x,y);z0 = complex(xGrid,yGrid);count = ones(size(z0),'gpuArray');The following code implements the Mandelbrot algorithm using GPU-enabled functions. Because the code uses gpuArrays, the calculations happen on the GPU.z = z0;for n = 0:maxIterations z = z.*z + z0; inside = abs(z) endcount = log(count);When computations are done, plot the results.imagesc(x,y,count)colormap([jet();flipud(jet());0 0 0]);axis off See AlsogpuArraygpu-z -gpu-z v2.41.0 -
Pip install taichi # Install Taichi Langti gallery # Launch demo galleryWhat is Taichi Lang?Taichi Lang is an open-source, imperative, parallel programming language for high-performance numerical computation. It is embedded in Python and uses just-in-time (JIT) compiler frameworks, for example LLVM, to offload the compute-intensive Python code to the native GPU or CPU instructions. The language has broad applications spanning real-time physical simulation, numerical computation, augmented reality, artificial intelligence, vision and robotics, visual effects in films and games, general-purpose computing, and much more. ...MoreWhy Taichi Lang?Built around Python: Taichi Lang shares almost the same syntax with Python, allowing you to write algorithms with minimal language barrier. It is also well integrated into the Python ecosystem, including NumPy and PyTorch.Flexibility: Taichi Lang provides a set of generic data containers known as SNode (/ˈsnoʊd/), an effective mechanism for composing hierarchical, multi-dimensional fields. This can cover many use patterns in numerical simulation (e.g. spatially sparse computing).Performance: With the @ti.kernel decorator, Taichi Lang's JIT compiler automatically compiles your Python functions into efficient GPU or CPU machine code for parallel execution.Portability: Write your code once and run it everywhere. Currently, Taichi Lang supports most mainstream GPU APIs, such as CUDA and Vulkan.... and many more features! A cross-platform, Vulkan-based 3D visualizer, differentiable programming, quantized computation (experimental), etc.Getting StartedInstallation PrerequisitesOperating systemsWindowsLinuxmacOSPython: 3.6 ~ 3.10 (64-bit only)Compute backendsx64/ARM CPUsCUDAVulkanOpenGL (4.3+)Apple MetalWebAssembly (experiemental) Use Python's package installer pip to install Taichi Lang:pip install --upgrade taichiWe also provide a nightly package. Note that nightly packages may crash because they are not fully tested. We cannot guarantee their validity, and you are at your own risk trying out our latest, untested features. The nightly packages can be installed from our self-hosted PyPI (Using self-hosted PyPI allows us to provide more frequent releases over a longer period of time)pip install -i taichi-nightlyRun your "Hello, world!"Here is how you can program a 2D fractal in Taichi:# python/taichi/examples/simulation/fractal.pyimport taichi as titi.init(arch=ti.gpu)n = 320pixels = ti.field(dtype=float, shape=(n * 2, n))@ti.funcdef complex_sqr(z): return ti.Vector([z[0]**2 - z[1]**2, z[1] * z[0] * 2])@ti.kerneldef paint(t: float): for i, j in pixels: # Parallelized over all pixels c = ti.Vector([-0.8, ti.cos(t) * 0.2]) z = ti.Vector([i / n - 1, j / n - 0.5]) * 2 iterations = 0 while z.norm() 20 and iterations 50: z = complex_sqr(z) + c iterations += 1 pixels[i, j] = 1 - iterations * 0.02gui = ti.GUI("Julia Set", res=(n * 2, n))for. D: Workloads winget-pkgs [master ≡ 0 ~1 -0 !] winget download -m . manifests t TechPowerUp GPU-Z 2.55.0 已找到 TechPowerUp GPU-Z [TechPowerUp.GPU-Z] 版本 2.(GPU-Z) (GPU-Z) v2.32.0
Help me to fix itError details:| Count | Error text | Last seen | 12 | AMD Invalid Result | 2017-11-30 06:52:08 |"gpu_threads_conf" : [// gpu: gfx901 memory:3920// compute units: 64{ "index" : 0, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 0, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 1, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 1, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 2, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 2, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 3, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 3, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 4, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 4, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 5, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 5, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },],/*Platform index. This will be 0 unless you have different OpenCL platform - eg. AMD and Intel.*/"platform_index" : 1,GPU-Z -GPU-Z v2.
Would be safe? jmj95 New Member Total Posts : 33 Reward points : 0 Joined: 2015/03/20 14:22:29 Status: offline Ribbons : 0 Re: Peformance of 750ti SC being limited by pwr limit, breaking max overclock consistency 2015/08/18 17:32:25 (permalink) ok I set it to 65 watts and I still get the pwr limit reported by GPU-z. It still does not maintain the max overclock in heaven unity. jmj95 New Member Total Posts : 33 Reward points : 0 Joined: 2015/03/20 14:22:29 Status: offline Ribbons : 0 Re: Peformance of 750ti SC being limited by pwr limit, breaking max overclock consistency 2015/08/18 18:52:21 (permalink) Ok in Just cause 2 the game is limited by VOp aka limit by operating voltage. Does this mean I should overvolt using afterburner? jasonkresge Superclocked Member Total Posts : 157 Reward points : 0 Joined: 2010/10/31 23:59:48 Status: offline Ribbons : 2 Re: Peformance of 750ti SC being limited by pwr limit, breaking max overclock consistency 2015/08/25 13:11:21 (permalink) I don't know why it's showing such low wattage as a cap. I've seen reputed benchmarks sites show that card as drawing 58w while running Furmark. And this is pure ignorance on my part, but I wouldn't initially trust something called KEPLER bios tweeker to adjust the bios on a MAXWELL card without first confirming that it has forward compatibility with the Maxwell v1 platform. Again, this is pure ignorance on my part. Sajin EVGA Forum Moderator Total Posts : 49227 Reward points : 0 Joined: 2010/06/07GPU-Z -GPU-Z -GPU-Z2.50.0 -PC
13 Oct 26 10:52 pci-0000:09:00.0-nvme-1 -> ../../nvme1n1lrwxrwxrwx 1 root root 13 Oct 26 10:51 pci-0000:22:00.0-nvme-1 -> ../../nvme2n1lrwxrwxrwx 1 root root 15 Oct 26 10:51 pci-0000:22:00.0-nvme-1-part1 -> ../../nvme2n1p1lrwxrwxrwx 1 root root 15 Oct 26 10:51 pci-0000:22:00.0-nvme-1-part2 -> ../../nvme2n1p2lrwxrwxrwx 1 root root 13 Oct 26 10:51 pci-0000:23:00.0-nvme-1 -> ../../nvme3n1lrwxrwxrwx 1 root root 15 Oct 26 10:51 pci-0000:23:00.0-nvme-1-part1 -> ../../nvme3n1p1lrwxrwxrwx 1 root root 15 Oct 26 10:51 pci-0000:23:00.0-nvme-1-part2 -> ../../nvme3n1p2lrwxrwxrwx 1 root root 9 Oct 26 10:51 pci-0000:25:00.3-usb-0:1.1:1.0-scsi-0:0:0:0 -> ../../sr0lrwxrwxrwx 1 root root 13 Oct 26 10:52 pci-0000:52:00.0-nvme-1 -> ../../nvme4n1lrwxrwxrwx 1 root root 13 Oct 26 10:52 pci-0000:53:00.0-nvme-1 -> ../../nvme5n1lrwxrwxrwx 1 root root 13 Oct 26 10:52 pci-0000:89:00.0-nvme-1 -> ../../nvme6n1lrwxrwxrwx 1 root root 13 Oct 26 10:52 pci-0000:8a:00.0-nvme-1 -> ../../nvme7n1lrwxrwxrwx 1 root root 13 Oct 26 10:52 pci-0000:c8:00.0-nvme-1 -> ../../nvme8n1lrwxrwxrwx 1 root root 13 Oct 26 10:52 pci-0000:c9:00.0-nvme-1 -> ../../nvme9n1Checking the GPU index numbering correlated to the PCIe BFD:dgxuser@gpu01:~$ nvidia-smi --query-gpu=index,name,pci.domain,pci.bus, --format=csvindex, name, pci.domain, pci.bus0, A100-SXM4-40GB, 0x0000, 0x071, A100-SXM4-40GB, 0x0000, 0x0F2, A100-SXM4-40GB, 0x0000, 0x473, A100-SXM4-40GB, 0x0000, 0x4E4, A100-SXM4-40GB, 0x0000, 0x875, A100-SXM4-40GB, 0x0000, 0x906, A100-SXM4-40GB, 0x0000, 0xB77, A100-SXM4-40GB, 0x0000, 0xBDChecking the NVMe drive and GPU PCIe slot relationship:dgxuser@dgxa100:~$ lspci -tv | egrep -i "nvidia|NVMe" | +-01.1-[b1-cb]----00.0-[b2-cb]--+-00.0-[b3-b7]----00.0-[b4-b7]----00.0-[b5-b7]----00.0-[b6-b7]----00.0-[b7]----00.0 NVIDIA Corporation Device 20b0 | | | \-10.0-[bb-bd]----00.0-[bc-bd]----00.0-[bd]----00.0 NVIDIA Corporation Device 20b0 | | +-08.0-[be-ca]----00.0-[bf-ca]--+-00.0-[c0-c7]----00.0-[c1-c7]--+-00.0-[c2]----00.0 NVIDIA Corporation Device 1af1 | | | | +-01.0-[c3]----00.0 NVIDIA Corporation Device 1af1 | | | | +-02.0-[c4]----00.0 NVIDIA Corporation Device 1af1 | | | | +-03.0-[c5]----00.0 NVIDIA Corporation Device 1af1 | | | | +-04.0-[c6]----00.0 NVIDIA Corporation Device 1af1 | | |. D: Workloads winget-pkgs [master ≡ 0 ~1 -0 !] winget download -m . manifests t TechPowerUp GPU-Z 2.55.0 已找到 TechPowerUp GPU-Z [TechPowerUp.GPU-Z] 版本 2. GPU-Z 0 Builds. GPU-Z 0.6.7; GPU-Z 0.6.6; GPU-Z 0.6.5; GPU-Z 0.6.4; GPU-Z 0.6.3; OldVersion.com provides free software downloads for old versions of programsComments
2x24 Stable"24hr Karhu" XMP, Rog Strix OC RTX 4090, Rog Hyperion GR701 Case, Rog Thor II 1200w, Rog Centra True Wireless Speednova, 35" Rog Swift PG35VQ + Acer EI342CKR Pbmiippx 34", EK Link FPT 140mm D-RGB Fans. Rog Claymore II, Rog Harpe Ace Aimlabs Edition, Cyberpunk 2077 Xbox One Controller, WD Black SN850x/Samsung 980+990 PRO/Samsung 980. Honeywell PTM7950 pad on CPU+GPU jeffgoatley iCX Member Total Posts : 280 Reward points : 0 Joined: 2011/01/16 18:31:48Location: Louisville, KY Status: offline Ribbons : 1 Re:My First Precision Skin 2012/01/31 06:54:55 (permalink) Sorry, new to skins but where is the installer? I have the .usf file. But not really sure how to make it work. Can someone help???Thanks! Win 7 64-bit - Corsair Obsidian Series 800D with Extended Water Cooling Case - Intel Core I7 2700k @ 4.40GHz - Asus Maximus IV Extreme-Z - 16G's G.Skill DDR3-2133 11-11-11-13 1.6v - Corsair HX1000i 80+ Platinum PSU - 2 EVGA GTX 780's in SLI with Hydro Copper-1 Quad & 1 Triple Rad with 2 Swiftech - MCP655 Pumps 1 Bitpower 150 Reservoir - 1 Bitpower 250 Reservoir - 1 Swiftech Apogee for CPU - 4 Intel SSD 320 Sata II 120Gb in Raid 0 - 3 Acer G235h Monitors - 1 Asus VG248QE Logitech G910 Keyboard - Logitech G502 Laser Mouse - Creative Sound Blaster Z & Sennheiser PC Headset 350 SE - 5.1 Panasonic A/V Receiver - Polk Audio Speakers & Sub Woofer www.jeffgoatley.com/mymodrig Sparax New Member Total Posts : 24 Reward points : 0 Joined: 2008/02/26 16:21:44Location: UK Status: offline Ribbons : 0 Re:My First Precision Skin 2012/01/31 09:25:52 (permalink) Hiya jeffgoatley There is no installer mate just put the usf file in the skins folder of your evga precision install directory ie: C:\Program Files\EVGA Precision\Skins Then click on the little spanner icon in evga precision and go to the user interface tab pick your desired skin from the menu list at the bottom hit OK and your skin should change. CPU : Intel Q9450 @ 3.6GHz MOB : Asus Striker II Extreme 790i Ultra SLI MEM : 2x2GB Corsair Dominator GT (CMT4GX3M2A2000C8) GPU : NVIDIA GeForce GTX 560 Ti (2048 MB) APU : X-Fi Titanium Fatal1ty PSU : CoolerMaster 850W Modular HDD : 1 x 120GB Corsair Force 3 SSD + 1 x 2TB WD2002FAEX + 2 x 1TB WD1001FALS jeffgoatley iCX Member Total Posts : 280 Reward points : 0 Joined:
2025-03-25This example shows how to use GPU-enabled MATLAB® functions to compute a well-known mathematical construction: the Mandelbrot set. Check your GPU using the gpuDevice function.Define the parameters. The Mandelbrot algorithm iterates over a grid of real and imaginary parts. The following code defines the number of iterations, grid size, and grid limits.maxIterations = 500;gridSize = 1000;xlim = [-0.748766713922161, -0.748766707771757];ylim = [ 0.123640844894862, 0.123640851045266]; You can use the gpuArray function to transfer data to the GPU and create a gpuArray, or you can create an array directly on the GPU. gpuArray provides GPU versions of many functions that you can use to create data arrays, such as linspace. For more information, see Create GPU Arrays Directly. x = gpuArray.linspace(xlim(1),xlim(2),gridSize);y = gpuArray.linspace(ylim(1),ylim(2),gridSize);whos x y Name Size Bytes Class Attributes x 1x1000 8000 gpuArray y 1x1000 8000 gpuArray Many MATLAB functions support gpuArrays. When you supply a gpuArray argument to any GPU-enabled function, the function runs automatically on the GPU. For more information, see Run MATLAB Functions on a GPU. Create a complex grid for the algorithm, and create the array count for the results. To create this array directly on the GPU, use the ones function, and specify 'gpuArray'.[xGrid,yGrid] = meshgrid(x,y);z0 = complex(xGrid,yGrid);count = ones(size(z0),'gpuArray');The following code implements the Mandelbrot algorithm using GPU-enabled functions. Because the code uses gpuArrays, the calculations happen on the GPU.z = z0;for n = 0:maxIterations z = z.*z + z0; inside = abs(z) endcount = log(count);When computations are done, plot the results.imagesc(x,y,count)colormap([jet();flipud(jet());0 0 0]);axis off See AlsogpuArray
2025-04-12Help me to fix itError details:| Count | Error text | Last seen | 12 | AMD Invalid Result | 2017-11-30 06:52:08 |"gpu_threads_conf" : [// gpu: gfx901 memory:3920// compute units: 64{ "index" : 0, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 0, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 1, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 1, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 2, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 2, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 3, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 3, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 4, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 4, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },// gpu: gfx901 memory:3920// compute units: 64{ "index" : 5, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },{ "index" : 5, "intensity" : 1932, "worksize" : 8, "affine_to_cpu" : false },],/*Platform index. This will be 0 unless you have different OpenCL platform - eg. AMD and Intel.*/"platform_index" : 1,
2025-04-24Would be safe? jmj95 New Member Total Posts : 33 Reward points : 0 Joined: 2015/03/20 14:22:29 Status: offline Ribbons : 0 Re: Peformance of 750ti SC being limited by pwr limit, breaking max overclock consistency 2015/08/18 17:32:25 (permalink) ok I set it to 65 watts and I still get the pwr limit reported by GPU-z. It still does not maintain the max overclock in heaven unity. jmj95 New Member Total Posts : 33 Reward points : 0 Joined: 2015/03/20 14:22:29 Status: offline Ribbons : 0 Re: Peformance of 750ti SC being limited by pwr limit, breaking max overclock consistency 2015/08/18 18:52:21 (permalink) Ok in Just cause 2 the game is limited by VOp aka limit by operating voltage. Does this mean I should overvolt using afterburner? jasonkresge Superclocked Member Total Posts : 157 Reward points : 0 Joined: 2010/10/31 23:59:48 Status: offline Ribbons : 2 Re: Peformance of 750ti SC being limited by pwr limit, breaking max overclock consistency 2015/08/25 13:11:21 (permalink) I don't know why it's showing such low wattage as a cap. I've seen reputed benchmarks sites show that card as drawing 58w while running Furmark. And this is pure ignorance on my part, but I wouldn't initially trust something called KEPLER bios tweeker to adjust the bios on a MAXWELL card without first confirming that it has forward compatibility with the Maxwell v1 platform. Again, this is pure ignorance on my part. Sajin EVGA Forum Moderator Total Posts : 49227 Reward points : 0 Joined: 2010/06/07
2025-04-15XP-Pen 15.6 .. OS: Windows 10 Pro Unwinder Superclocked Member Total Posts : 214 Reward points : 0 Joined: 2007/06/05 09:27:52 Status: offline Ribbons : 12 Re:EVGA Precision X Custom Skins 2013/12/13 04:20:54 (permalink) vernacularEverything should be aligned properly, however I've ran into an issue where the sync indicator doesn't appear. It should make the normally-white circles around each GPU number on the GPU list bold and green. I've tried using the sync indicator images from the default skin as well as changing all positions back to default, but the sync indicators still don't appear for me. I also tried setting the Z-position of all the objects in that area and although it DID have an effect on the visible objects the sync indicator objects still don't appear. The password to decompile is the default password for all EVGA Precision skins if someone else wants to look into it. PM me if you figure it out.To provide backward compatibility with old skins GPU5 - GPU8 buttons and GPU sync indicators are only being read from the skin if the skin defines GPU page button. Your BUTTON_GPU_PAGE is not defined properly causing it to be ignored by skin engine and causing the skin to be treated as old format (with 4 GPU buttons only and without GPU sync indicators). Drerex CLASSIFIED Member Total Posts : 3511 Reward points : 0 Joined: 2007/10/26 16:29:58Location: St. Augustine, FL Status: offline Ribbons : 31 Re:EVGA Precision X Custom Skins 2013/12/13 07:12:12 (permalink) Unwinder is the man vernacular. He was the one that gave me the original code plus is the root creator. vernacular Superclocked Member Total Posts : 187 Reward points : 0 Joined: 2008/06/19 19:47:46Location: US Status: offline Ribbons : 3 Re:EVGA Precision X Custom Skins 2013/12/14 02:27:51 (permalink) Yes! It works! Thanks, Unwinder. I was getting really annoyed trying to figure that out.I've updated the post with skin & link. CASE: Lian Li O11-Dynamic (Alpine White) .. MOBO: GIGABYTE Z390 Aorus Master .. CPU: Intel i9-9900K w/ EK Supremacy EVO Nickel .. GPU: EVGA 2080 Ti XC Gaming w/ Phanteks Glacier Waterblock
2025-04-14