When running the function:
faces_info, aggrs_info, soft_colors = \ soft_rasterize_cuda.forward_soft_rasterize(face_vertices, textures, faces_info, aggrs_info, soft_colors, image_size, near, far, eps, sigma_val, ctx.func_dist_type, ctx.dist_eps, gamma_val, ctx.func_rgb_type, ctx.func_alpha_type, ctx.texture_type, fill_back)
Got the error message: faces must be contiguous
temporarily solved by changing line 41:
face_vertices = face_vertices.clone()
to:
face_vertices = face_vertices.clone().contiguous()