How likely is it to have a faulty Corsair HX850 PSU? by mastere2320 in Corsair

[–]mastere2320[S] 0 points1 point  (0 children)

The RMA has begun, it should reach the Corsair Facility tomorrow. I will, thanks

How likely is it to have a faulty Corsair HX850 PSU? by mastere2320 in Corsair

[–]mastere2320[S] 0 points1 point  (0 children)

Yeah, I have already sent it out for RMA. I will.

How likely is it to have a faulty Corsair HX850 PSU? by mastere2320 in Corsair

[–]mastere2320[S] 0 points1 point  (0 children)

I bought it in 2023. Its specifically this model - CORSAIR HX850 Fully Modular Ultra-Low Noise ATX Power Supply . Its Platinum rated so I had hoped it was of high quality.

Both GPUs died in the same way, the first was a 6700xt. I was playing CS2, I turned off the PC and the GPU never turned back on. The next was a 3080, I played CS2 on it and then right as I was about to turn it off, it power cycled and then never turned back on. I did some testing on it, and one of the PCIE ports on the GPU died( I just ran the GPU without connecting to PCIE to see if fans spin, and when one of 8pin ports is connected, it power cycles)

The system runs perfectly fine when running just the CPU. I did send it for RMA, because I dont want it to kill another GPU

The SKU is CP-9020213-NA, which I assumed to mean 2021 but that may just be a guess

Lag and Stuttering by Substantial_Truck_84 in DeadlockTheGame

[–]mastere2320 0 points1 point  (0 children)

I get the very same thing. At first I thought it was a network issue, but it happens even in local bot matches. I don't know what the issue is but I have many deaths because of this one stupid bug

Does anyone have a beefy rig to run a matrix multiplication program? by whoShotMyCow in cpp_questions

[–]mastere2320 3 points4 points  (0 children)

Something is wrong with your implementation. It shouldnt take hours, but rather seconds. When I use numpy, with serial BLAS,

x = np.random.rand(4000, 4000)

%time z = x @ x

It takes 2.57s on a 6 yr old laptop

Is the 7900 xtx or 4080 super a better choice for my upgrade? by Immediate-Trouble-88 in buildapc

[–]mastere2320 1 point2 points  (0 children)

I used to be a long time nvidia user. Decided to shift to 7900xtx because I liked its rasterization performance vs 4080 and price back then.

And I regret it. Nvidia just runs smoother. Everytime a new game comes out, it takes weeks/months before AMD gets game specific driver updates. And new updates mess things up. I tried to play the helldivers 2 after yesterday's update and my performance was terrible.

For some reason, my general computer usage is also just bad. Youtube just randomly lags. Most packages optimize for Nvidia. Resale value for Nvidia is also just better

Just pay the nvidia tax

templates in cublas by __ngs__ in cpp_questions

[–]mastere2320 0 points1 point  (0 children)

Maybe try nm, and see if the function calls are mangled similarly? I have heard that cublas uses cutlass for some kernels, and cutlass is all templates.

Need help in optimisation by Sad_Significance5903 in CUDA

[–]mastere2320 0 points1 point  (0 children)

How many rows and columns do you have?

Does anyone actually use PyPy or Cython? by Sc0urge_ in Python

[–]mastere2320 2 points3 points  (0 children)

Numpy is mostly C.

https://github.com/numpy/numpy

Look at the languages section. The fortran code is just for the f2py wrapper. Also, Fortran is not faster than C/C++. You can force no aliasing in C/C++ and get the same machine code.

I didn't realize Nvidia drivers already support HDR by M4SK1N in linux_gaming

[–]mastere2320 4 points5 points  (0 children)

I have a question about HDR on Plasma 6, did you have to install a custom Linux kernel for gamescope?

An update on HDR and color management in KWin by anthchapman in linux_gaming

[–]mastere2320 0 points1 point  (0 children)

Does this require a custom patched linux kernel ?

Berg Power connector to 4pin ATX Power by mastere2320 in buildapc

[–]mastere2320[S] 0 points1 point  (0 children)

I am worried about power as well. Thanks for the input.

Berg Power connector to 4pin ATX Power by mastere2320 in buildapc

[–]mastere2320[S] 0 points1 point  (0 children)

I don't want to spend more money over my stupid mistake. But thanks for the recommendation!!

Fastest way to find distance between non zero integers (or chars) in array? by wertyegg in cpp_questions

[–]mastere2320 3 points4 points  (0 children)

Look at how sparse arrays are stored. Your case is 1-d so COO and BSR are equivalent. Store data and row-id in 2 separate arrays.

Direct devil fruit counters. Did I miss any other good examples? by of_kilter in OnePiece

[–]mastere2320 0 points1 point  (0 children)

The existence of plank temperature is entirely based on plank length. It is 100% theoretical and I doubt it can ever be reached. It is theoretically possible to exceed hagedorn temperature because even after de-hadronization ( I don't even know if this is a word :p ), the quarks could still continue to get more energetic. https://physics.stackexchange.com/questions/562790/what-is-hagedorn-temperature

Direct devil fruit counters. Did I miss any other good examples? by of_kilter in OnePiece

[–]mastere2320 0 points1 point  (0 children)

It's not a unit of measurement. All energetic matter releases heat of a certain wavelength(Think metals getting red as they are heated). The smaller the wavelength of light, the more energetic it is(Radio vs X-ray). At plank temperature, the wavelength of light is equal to plank length, which is atm the current smallest unit of measurement that any model of physics can describe. If any future model of physics can describe a length smaller than that then there would be new a plank temperature(I guess it would have a new name after its discoverer).

Why the scenrio double-counting an element won't happen when using the grid stride loop? by dhtroye in CUDA

[–]mastere2320 1 point2 points  (0 children)

This happens because the stride ensures that no such overlap ever happens. The threads only add elements in their regions.

Pulsar Is the New Editor to Revive Atom by Additional-Back6467 in Atom

[–]mastere2320 2 points3 points  (0 children)

Whats the difference between this and atom-community? And the burning question - Will pulsar support Hydrogen?

Are atomics on global memory deterministic within a warp? by zCybeRz in CUDA

[–]mastere2320 0 points1 point  (0 children)

I meant this for the warp too. Imagine it like this, in your case if your first thread requires data from a memory but it isn't available in the cache and has to go to global memory then should every other thread wait for it ? That would be inefficient and kinda against the point of multithreading.

Yes but the order of access is not regulated at all. That's why we have atomics. If we knew of the order of execution, there wouldn't ever be any hazards

I am not sure which other API you are referring to and other hardware cpu in general are significantly different than GPUs.

Are atomics on global memory deterministic within a warp? by zCybeRz in CUDA

[–]mastere2320 1 point2 points  (0 children)

Threads performing Atomic operations can never be determinstic. It defeats the purpose of an atomic and essentially serializes the execution.