Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nightly Builds #28

Merged
merged 52 commits into from
Apr 28, 2022
Merged
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
3c47469
update
rusty1s Apr 27, 2022
91f1c2d
update
rusty1s Apr 27, 2022
71c3061
update
rusty1s Apr 27, 2022
b954006
Merge branch 'master' into nightly_build
rusty1s Apr 27, 2022
85e1289
Merge branch 'master' into nightly_build
rusty1s Apr 27, 2022
42d57d4
update
rusty1s Apr 27, 2022
301d90e
update
rusty1s Apr 27, 2022
693be7d
update
rusty1s Apr 27, 2022
5288731
update
rusty1s Apr 27, 2022
8159316
update
rusty1s Apr 27, 2022
ed1bfb8
update
rusty1s Apr 27, 2022
51b31ea
update
rusty1s Apr 27, 2022
79b7eea
update
rusty1s Apr 27, 2022
7abda1d
update
rusty1s Apr 27, 2022
99c4f27
typo
rusty1s Apr 27, 2022
229b6a6
update
rusty1s Apr 27, 2022
6d551d6
update
rusty1s Apr 27, 2022
d288006
update
rusty1s Apr 27, 2022
bb2a709
update
rusty1s Apr 27, 2022
1b2f119
update
rusty1s Apr 27, 2022
5ef7ba7
update
rusty1s Apr 27, 2022
0103eaa
update
rusty1s Apr 27, 2022
5c6e52f
update
rusty1s Apr 27, 2022
1cca1ec
update
rusty1s Apr 28, 2022
053d650
update
rusty1s Apr 28, 2022
da30c50
update
rusty1s Apr 28, 2022
874b960
update
rusty1s Apr 28, 2022
2f0ce82
Merge branch 'master' into nightly_build
rusty1s Apr 28, 2022
729782f
update
rusty1s Apr 28, 2022
d31f671
Merge branch 'nightly_build' of github.com:pyg-team/pyg-lib into nigh…
rusty1s Apr 28, 2022
5574182
update
rusty1s Apr 28, 2022
a59e665
update
rusty1s Apr 28, 2022
c128a89
update
rusty1s Apr 28, 2022
ec38314
update
rusty1s Apr 28, 2022
ad5ddd2
update
rusty1s Apr 28, 2022
c32badf
update
rusty1s Apr 28, 2022
47aeed7
update
rusty1s Apr 28, 2022
cdf140b
update
rusty1s Apr 28, 2022
5bc35b1
update
rusty1s Apr 28, 2022
8d0a06a
add path
rusty1s Apr 28, 2022
a1844e8
add path
rusty1s Apr 28, 2022
bb7a9ec
add path
rusty1s Apr 28, 2022
7a5b231
fix
rusty1s Apr 28, 2022
5384401
update
rusty1s Apr 28, 2022
0d5d378
update
rusty1s Apr 28, 2022
0878ebb
update
rusty1s Apr 28, 2022
6bc22c2
ninja
rusty1s Apr 28, 2022
9c0f71d
ninja
rusty1s Apr 28, 2022
cf3ed27
fix
rusty1s Apr 28, 2022
16368ef
fix
rusty1s Apr 28, 2022
fff0d95
build all
rusty1s Apr 28, 2022
e4b967f
build all
rusty1s Apr 28, 2022
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
Prev Previous commit
Next Next commit
update
rusty1s committed Apr 27, 2022
commit ed1bfb8b2f7f53a0acb0a2e5e506231268378e30
3 changes: 1 addition & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -18,8 +18,7 @@ jobs:
python-version: ['3.9']
# python-version: ['3.7', '3.8', '3.9', '3.10']
torch-version: [1.11.0]
cuda-version: ['cpu']
# cuda-version: ['cpu', 'cu102', 'cu113', 'cu115']
cuda-version: ['cpu', 'cu102', 'cu113', 'cu115']

steps:
- uses: actions/checkout@v2
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.12)
project(pyg)
set(CMAKE_CXX_STANDARD 14)
set(PYG_VERSION 0.0.0)
set(PYG_VERSION 0.1.0)

option(BUILD_TEST "Enable testing" OFF)
option(WITH_COV "Enable code coverage" OFF)
2 changes: 1 addition & 1 deletion pyg_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@

import pyg_lib.sampler # noqa

__version__ = '0.0.0'
__version__ = '0.1.0'

# * `libpyg.so`: The name of the shared library file.
# * `torch.ops.pyg`: The used namespace.