Hello, i am pretty new to this wandb function. I have been trying to run a program with it, but it shows an error of like this:
Traceback (most recent call last):
File “main.py”, line 105, in
main()
File “main.py”, line 99, in main
trainer.train(start_iteration=epoch)
File “/home/cs2212/Desktop/voxel2mesh-master/train.py”, line 58, in train
loss = self.training_step(data, start_iteration)
File “/home/cs2212/Desktop/voxel2mesh-master/train.py”, line 22, in training_step
loss, log = self.net.loss(data, epoch)
File “/home/cs2212/Desktop/voxel2mesh-master/model/voxel2mesh.py”, line 214, in loss
pred_points = sample_points_from_meshes(pred_mesh, 3000)
File “/home/cs2212/.local/lib/python3.8/site-packages/pytorch3d/ops/sample_points_from_meshes.py”, line 55, in sample_points_from_meshes
areas, _ = mesh_face_areas_normals(
File “/home/cs2212/.local/lib/python3.8/site-packages/pytorch3d/ops/mesh_face_areas_normals.py”, line 44, in forward
areas, normals = _C.face_areas_normals_forward(verts, faces)
RuntimeError: Not compiled with GPU support. (FaceAreasNormalsForward at /root/project/pytorch3d/csrc/face_areas_normals/face_areas_normals.h:51)
The preprocessing data job was done fine, but as I try to run the program with the preprocessed data, the upper error happens
I checked the metadata.json file and realized the cuda was set as null even though i checked the cuda was there with nvcc --version. I am guessing the wandb not realizing the cuda is there seems to be an issue. Are there any methods of how i could solve this? Any advice is appreciated Thank you