Given an array containing 2 - 3 values in each of the up to 100+ elements find the combination that adds to a particular total. The problem with this is that trying each combination will take 3^100+ operations which is obviously not realistic. the one thing that helps is that the first of the 3 elements is the most likely to be correct. I have a new Nvidia RTX 2080ti that contains thousands of cuda & tensor cores and I would like to put those to work.
I have tried iterating through all the possible combinations however this is not realistic. I am also looking into path finder algorithms which should reduce the workload however i think my best bet would be putting my GPU to work on this problem.