Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Gfx2Cuda is a python implementation of CUDA's graphics interopability methods for DirectX, OpenGL, etc. The main usage is for quick transfer of images rendered with for example Godot or Unity to CUDA memory buffers such as pytoch tensors, without needing to transfer the image to cpu and back to gpu.
For now only DirectX 11 is supported. This can be useful for implementing CUDA ipc (interprocess-communication) for Windows, since that functionality is not available in vanilla CUDA for Windows. You would use a DirectX texture as buffer that can be seen by multiple processes without having to download any gpu data to cpu and back.
Render to texture and copy to pytorch tensor
import gfx2cuda
import torch
# Shape: [height, width, channels]
shape = [480, 640, 4]
tensor1 = torch.ones(shape).contiguous().cuda()
tensor2 = torch.zeros(shape).contiguous().cuda()
# Create copy of a tensor but as a texture
tex = gfx2cuda.texture(tensor1)
with tex as ptr:
tex.copy_to(tensor2)
print(tensor2.data)
# pytorch tensor should now contain a copy of the texture data
Share texture between process, write on one process and see results in the other
from multiprocessing import Process
import gfx2cuda
import torch
shape = [4, 4, 4]
def f(handle):
tex = gfx2cuda.open_ipc_texture(handle)
# Received and opened the texture
print(tex)
# >> Texture with format TextureFormat.RGBA32FLOAT (4 x 4)
tensor1 = torch.ones(shape).contiguous().cuda()
with tex:
tex.copy_from(tensor1)
if __name__ == "__main__":
tensor = torch.zeros(shape).contiguous().cuda()
# Initialize as all zeros
tex = gfx2cuda.texture(tensor)
p = Process(target=f, args=(tex.ipc_handle,))
p.start()
p.join()
with tex:
tex.copy_to(tensor)
print(tensor.data)
# See all ones
FAQs
Fast graphics texture to cuda transfer
We found that gfx2cuda demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.