Package Details: siftgpu 0.5.400-9

Git Clone URL: https://aur.archlinux.org/siftgpu.git (read-only, click to copy)
Package Base: siftgpu
Description: Sift Features over GPU using GLSL or CUDA
Upstream URL: http://ccwu.me/
Keywords: cuda feature-extraction glsl
Licenses: custom
Submitter: dbrgn
Maintainer: bartus
Last Packager: bartus
Votes: 5
Popularity: 0.000000
First Submitted: 2015-10-17 19:22 (UTC)
Last Updated: 2019-04-26 07:20 (UTC)

Pinned Comments

bartus commented on 2022-03-14 10:36 (UTC)

Sorry lads, I'm at the Polish Ukraine border helping allocate refugees. Expect no update until this hell is over, wish us luck. Have no time nor access to my rig and AUR keys to test/post updates. If you have a patch, ping me on email - I'll add you as co-maintainer. Posted with my old script - https://github.com/bartoszek/aur-post

bartus commented on 2019-04-10 11:43 (UTC)

Please report issues and patches to siftgpu@github.com

Latest Comments

1 2 Next › Last »

bartus commented on 2022-03-14 10:36 (UTC)

Sorry lads, I'm at the Polish Ukraine border helping allocate refugees. Expect no update until this hell is over, wish us luck. Have no time nor access to my rig and AUR keys to test/post updates. If you have a patch, ping me on email - I'll add you as co-maintainer. Posted with my old script - https://github.com/bartoszek/aur-post

bartus commented on 2019-04-10 11:43 (UTC)

Please report issues and patches to siftgpu@github.com

bartus commented on 2018-06-05 13:21 (UTC)

@ILMostro7: fixed.

ILMostro7 commented on 2018-06-01 19:32 (UTC)

The optdepends doesn't take a version for packages listed. Otherwise, you get the following: ==> ERROR: optdepends contains invalid characters: '>='

bartus commented on 2018-04-03 21:08 (UTC) (edited on 2018-04-03 21:11 (UTC) by bartus)

@ILMostro7: I think, I find the issue, the problem arose when an extra copy of libcudart.so on your system triggers cuda kernel build. Now it checks only for /opt/cuda/lib64/libcudart.so.

bartus commented on 2018-03-29 19:36 (UTC) (edited on 2018-03-29 19:44 (UTC) by bartus)

@ILMostro7: siftgpu works also with GLSL and opencl besides cuda. All three are run time detected by makefile script.

  9 # enable CUDA-based SiftGPU?
 10 simple_find_cuda = $(shell locate libcudart.so)
 11 ifneq ($(simple_find_cuda), )
 12         siftgpu_enable_cuda = 1
 13 else
 14         siftgpu_enable_cuda = 0
 15 endif
 16 

It's strange that it fails on a system without cuda ... I can build siftgpu in chroot without cuda with no problem.

ILMostro7 commented on 2018-03-29 19:11 (UTC)

Should cuda be a dependency, rather than optdepends? I get a failure if cuda is not installed, as the installation fails to find "cuda.h".

bartus commented on 2018-03-28 23:08 (UTC)

@Harvie: Yes, looks like it works, updating.

Harvie commented on 2018-03-28 22:03 (UTC)

I've removed the gcc5 hack and it seems to work

Harvie commented on 2018-03-28 21:57 (UTC)

Can we build this with gcc7?