Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .gitignore
100755 → 100644
Empty file.
Empty file modified Dockerfile
100755 → 100644
Empty file.
Empty file modified LICENSE
100755 → 100644
Empty file.
Empty file modified README.md
100755 → 100644
Empty file.
Empty file modified __init__.py
100755 → 100644
Empty file.
Empty file modified datasets.py
100755 → 100644
Empty file.
Empty file modified image.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified losses.py
100755 → 100644
Empty file.
Empty file modified models.py
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion networks/channelnorm_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup
from torch.utils.cpp_extension import BuildExtension, CUDAExtension

cxx_args = ['-std=c++11']
cxx_args = ['-std=c++14']

nvcc_args = [
'-gencode', 'arch=compute_52,code=sm_52',
Expand Down
2 changes: 1 addition & 1 deletion networks/correlation_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup, find_packages
from torch.utils.cpp_extension import BuildExtension, CUDAExtension

cxx_args = ['-std=c++11']
cxx_args = ['-std=c++14']

nvcc_args = [
'-gencode', 'arch=compute_50,code=sm_50',
Expand Down
2 changes: 1 addition & 1 deletion networks/resample2d_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup
from torch.utils.cpp_extension import BuildExtension, CUDAExtension

cxx_args = ['-std=c++11']
cxx_args = ['-std=c++14']

nvcc_args = [
'-gencode', 'arch=compute_50,code=sm_50',
Expand Down