Skip to content
Merged
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PROJECT(libgpuarray C)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/")

# -Wall is unbelieveably noisy with Visual Studio:
# http://stackoverflow.com/q/4001736/3257826
# https://stackoverflow.com/q/4001736/3257826
if(MSVC)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -W3")
else()
Expand Down
4 changes: 2 additions & 2 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ with a log of the build messages to abergeron@gmail.com.
Requirements:

- either an OpenCL runtime (with headers) or the CUDA toolkit
- CMake [ http://cmake.org ] (to build)
- CMake [ https://cmake.org ] (to build)

Run CMake on the CMakeList.txt file in src/ and build according to
your platform. Set CMAKE_INSTALL_PREFIX to your desired path if you
Expand All @@ -21,4 +21,4 @@ There are instruction for installation in the CMake file which make
install on Windows.

If you also want the python bindings, run 'python setup.py install'
after building and installing the library which will install pygpu.
after building and installing the library which will install pygpu.
2 changes: 1 addition & 1 deletion doc/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
ga.src = 'https://ssl.google-analytics.com/ga.js';
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@slefrancois What do you think of that? I think it is good, but I'm not 100% sure.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not a web design expert, but it seems reasonable that google sites would be available in secure connections.

var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
Expand Down
10 changes: 5 additions & 5 deletions doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ install step. It is up to you to copy the headers and libraries to an
appropriate place.

If you don't have Visual Studio installed, you can get the free
Express version from `here <http://www.visualstudio.com/>`_ in the
downloads section (select the "for Windows" edition).
Express version from `here <https://www.visualstudio.com/>`_ in the
downloads section (select the "for windows" edition).

.. warning::
While you may get the library to compile using cygwin, this is not
Expand Down Expand Up @@ -226,7 +226,7 @@ you can confirm which device it is running on.
only the codename of the architecture the GPU belongs to (e.g.
'Tahiti').

.. _cmake: http://cmake.org/
.. _cmake: https://cmake.org/

.. _clblas: https://github.com/clMathLibraries/clBLAS

Expand All @@ -238,10 +238,10 @@ you can confirm which device it is running on.

.. _check: http://check.sourceforge.net/

.. _python: http://python.org/
.. _python: https://python.org/

.. _cython: http://cython.org/

.. _nosetests: http://nose.readthedocs.org/en/latest/
.. _nosetests: https://nose.readthedocs.org/en/latest/

.. _mako: http://www.makotemplates.org/
2 changes: 1 addition & 1 deletion src/util/xxhash.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xxHash - Fast Hash algorithm
Copyright (C) 2012-2015, Yann Collet

BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php)

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion src/util/xxhash.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Header File
Copyright (C) 2012-2015, Yann Collet.

BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php)

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
Expand Down