forked from apache/systemds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
148 lines (124 loc) · 3.51 KB
/
.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#-------------------------------------------------------------
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#-------------------------------------------------------------
# Mac
.DS_Store
# KDE
.directory
# Eclipse
.classpath
.project
.settings/
.externalToolBuilders/
maven-eclipse.xml
/src/main/cpp/kernels/.cproject
/src/main/cpp/log
# Intellij
.idea/
.idea_modules/
*.iml
*.iws
# vscode
.vscode
# checksum files
*.crc
# Build artifacts
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.metadata
.cache*
# Documentation artifacts
.jekyll-cache/
_site/
# Tutorial data mnist
scripts/nn/examples/data/*
# User configuration files
conf/SystemDS-config.xml
# Documentation artifacts
docs/_site
# TODO Make the API auto generate and relocate into this api folder for webpage
# docs/api
# Test Artifacts
src/test/scripts/**/*.dmlt
src/test/scripts/functions/mlcontextin/
src/test/scripts/functions/frame/io/
src/test/java/org/apache/sysds/test/component/compress/io/files
src/test/java/org/apache/sysds/test/component/compress/io/filesIOSpark/*
src/test/java/org/apache/sysds/test/component/compress/io/filesIOTest
.factorypath
# Excluded sources
# (we're including the generated files to simply IDE setup w/o mvn build)
# Since the gitignore file does not ignore tracked files, the auto-generated
# parser files need to be ignored by the following command:
# git update-index --assume-unchanged [<file> ...]
# This can be undone by git update-index --no-assume-unchanged [<file> ...]
# Use the command above on these files:
# src/main/java/Dml.tokens
# src/main/java/DmlLexer.tokens
# src/main/java/org/apache/sysds/parser/dml/DmlBaseListener.java
# src/main/java/org/apache/sysds/parser/dml/DmlLexer.java
# src/main/java/org/apache/sysds/parser/dml/DmlListener.java
# src/main/java/org/apache/sysds/parser/dml/DmlParser.java
# Git ignore the temp files generated by antler when making a new syntax
src/main/java/org/apache/sysds/parser/dml/.antlr
src/test/scripts/**/in
src/test/scripts/**/out
src/test/scripts/**/expected
# Working directory and scratch space
temp/*
temp
tmp/*
tmp
scratch_space/
# Ruby
Gemfile.lock
# Python
**/__pycache__
*.pyc
# Spark
**/metastore_db
derby.log
/systemds/
# native cpp code build artifacts
src/main/cpp/build
src/main/cpp/bin
# legacy dml
*.dmlt
# Performance Test artifacts
scripts/perftest/results
scripts/perftest/logs
scripts/perftest/in
scripts/perftest/scratch_space
scripts/perftest/temp
scripts/perftest/fed/results
scripts/perftest/fed/scratch_space
scripts/perftest/fed/temp
src/test/scripts/functions/iogen/*.raw
src/test/scripts/functions/pipelines/intermediates/regression/*
src/test/scripts/functions/pipelines/intermediates/classification/*
venv
venv/*