Skip to content

Commit ec34e0b

Browse files
author
Chris Sullivan
authored
Merge pull request #5 from ArtificialEvolvingWorld/composite_net_performance
Composite net performance
2 parents a4e198d + ed3f324 commit ec34e0b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+7621
-457
lines changed

SConscript

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Import('env')
22

3+
env.OptionalCUDA()
4+
35
env.Append(CPPPATH=['glog/include'])
46
env.SharedLibraryDir('glog')
57

SConstruct

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def get_pybind11_dir():
248248
import urllib2
249249
import StringIO
250250
import zipfile
251-
response = urllib2.urlopen('https://github.com/Lunderberg/pybind11/archive/master.zip')
251+
response = urllib2.urlopen('https://github.com/pybind/pybind11/archive/master.zip')
252252
contents = StringIO.StringIO(response.read())
253253
zipped = zipfile.ZipFile(contents)
254254
members = [filename for filename in zipped.namelist()

0 commit comments

Comments
 (0)