forked from alibaba/graph-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
62 lines (50 loc) · 748 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# vscode
.vscode
# jet brains
**/.idea/
**/cmake-build-release/
**/cmake-build-debug/
# python env
**/venv/
**/__pycache__/
# build dir
graph-learn/dist/
dynamic_graph_service/dist/
**/build/
**/built/
**/cmake-build/
# build artifacts
**/*.so
**/*.dylib
# codegen dir
**/generated/
# codegen files
**/*_generated.h
# protobuf codegen files
**/*.pb.h
**/*.pb.cc
**/*_pb2.py
**/*_pb2_grpc.py
# hiactor codegen files
**/*.act.autogen.h
**/*.act.autogen.cc
# code coverage files
**/*.gcov
**/*.gcno
**/*.gcda
# glog files
**/*.log.*
# sphinx generated files
**/_build
**/_static
**/_templates
**/apis/apis/apis
# ignore logs
**/*.INFO
**/*.WARNING
**/*.ERROR
**/*.FATAL
**/*.log.INFO.*
**/*.log.WARNING.*
**/*.log.ERROR.*
**/*.log.FATAL.*