Algorithms for top-k query processing on GPUs.
Below were created some folders for group members to post their codes, slides, spreadsheets, etc. To post material do the following:
Fork the repository.
$ git clone https://github.com/HPCSys-Lab/QueryProcessing-GPU.git
Inside the repository you just cloned, configure Git to sync your fork with the original QueryProcessing-GPU repository:
$ git remote add upstream https://github.com/HPCSys-Lab/QueryProcessing-GPU.git
$ git remote -v
> origin https://github.com/YOUR_USERNAME/QueryProcessing-GPU.git (fetch)
> origin https://github.com/YOUR_USERNAME/QueryProcessing-GPU.git (push)
> upstream https://github.com/HPCSys-Lab/QueryProcessing-GPU.git (fetch)
> upstream https://github.com/HPCSys-Lab/QueryProcessing-GPU.git (push)
Now, you can keep your fork synced with the upstream repository with a few Git commands:
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
$ git checkout -b name-of-your-branch
$ git add .
$ git commit -m "some comment about the commit"
$ git push -u origin name-of-your-branch