Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.

Boris ms #127

Open
wants to merge 34 commits into
base: boris_ms
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
c75d651
adding_origins
teytaud Nov 5, 2018
4c25dd3
solving_the_mess
teytaud Nov 5, 2018
2f4bdb7
looks like it works
teytaud Nov 6, 2018
c9245e6
ready for playing
teytaud Nov 9, 2018
ea6bfa9
missing cmakelists
teytaud Nov 12, 2018
851f86b
fixmakefile
teytaud Nov 12, 2018
04cf0ef
fixing_devmode_set_paythonpath
teytaud Nov 12, 2018
e9146cf
fixMakefile
teytaud Nov 12, 2018
7907bc1
makefile_in_case_of_pb
teytaud Nov 12, 2018
e497b78
makefile.basic
teytaud Nov 12, 2018
3913c37
updating newtasks branch
teytaud Nov 13, 2018
263242a
adding scripts for checking
teytaud Nov 13, 2018
4c7c8e3
updating newtasks branch
teytaud Nov 13, 2018
866498e
updating newtasks branch
teytaud Nov 13, 2018
169d3c4
updating newtasks branch
teytaud Nov 13, 2018
0ca515b
updating newtasks branch
teytaud Nov 13, 2018
3330a8a
updating newtasks branch
teytaud Nov 14, 2018
805f56c
one more game
teytaud Nov 19, 2018
b69a40b
looks_good_better_choufleur
teytaud Dec 3, 2018
0aa9ec9
autotuning
teytaud Dec 3, 2018
22e4eb5
add Makefile in .gitignore
Borisdoux Dec 3, 2018
437345e
script_for_viewing
teytaud Dec 3, 2018
aaab2ce
Merge pull request #115 from Borisdoux/newtasks-pr
teytaud Dec 3, 2018
7fd3232
fixing_game_feature
teytaud Dec 3, 2018
34f058d
Merge branch 'newtasks' of https://github.com/pytorch/ELF into newtasks
teytaud Dec 3, 2018
d88db70
version intiale de breakthrough
Dec 3, 2018
4edb132
Merge pull request #116 from tristancazenave/tristan_breakthrough
teytaud Dec 3, 2018
26f1b98
I fixed static
Dec 10, 2018
4c32edf
const HashArray solves the problem with static
Dec 10, 2018
f844228
I modified the default GPU as in original code
Dec 17, 2018
5326322
Merge pull request #117 from tristancazenave/tristan_breakthrough
teytaud Dec 17, 2018
7b0288c
fixing_bugs
teytaud Jan 14, 2019
47a89e9
test
Borisdoux Jan 28, 2019
b91aba3
nn modification
Borisdoux Feb 11, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*.so
build/
__pycache__/

Makefile
# Random junk
*.sw?
*.db
Expand Down
7 changes: 6 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ endif()
set(CMAKE_CXX_STANDARD 17)
set(PYBIND11_CPP_STANDARD -std=c++17)
set(CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} -Wall -Werror -Wextra -Wno-register -Wno-deprecated-declarations -fPIC -march=native")
"${CMAKE_CXX_FLAGS} -g -Werror=unused-function -Wall -Werror -Wextra -Wno-register -fPIC -march=native")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
# set(CMAKE_BUILD_TYPE Debug) # FIXME
endif()

# Define a convenience function for tests
Expand Down Expand Up @@ -79,3 +80,7 @@ add_subdirectory(
add_subdirectory(
src_cpp/elfgames/go
${CMAKE_CURRENT_BINARY_DIR}/elfgames/go)

add_subdirectory(
src_cpp/elfgames/tasks
${CMAKE_CURRENT_BINARY_DIR}/elfgames/tasks)
Loading