Skip to content

Commit

Permalink
Merge pull request #3 from dmlc/master
Browse files Browse the repository at this point in the history
Pull after rewrite v2
  • Loading branch information
sergei-mironov authored Aug 8, 2018
2 parents a152a9c + 0241fdc commit 2479281
Show file tree
Hide file tree
Showing 1,180 changed files with 112,832 additions and 6,639 deletions.
14 changes: 12 additions & 2 deletions CODEOWNERS → .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,23 @@
* @dmlc/tvm-committers

# LLVM backends
src/llvm/* @aatluri
src/codegen/llvm/* @aatluri

# ROCM runtime
src/runtime/rocm/* @aatluri

# SGX support
src/runtime/sgx/* @nhynes
apps/sgx/* @nhynes

# JVM language
jvm/* @javelinjs
jvm/* @yzhliu

# WebGL backends
src/runtime/opengl/* @phisiart
src/codegen/*opengl* @phisiart

# TOPI
topi/python/topi/* @Laurawly @Huyuwei


7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Thanks for participating in the TVM community! We use https://discuss.tvm.ai for any general usage questions and discussions. The issue tracker is used for actionable items such as feature proposals discussion, roadmaps, and bug tracking. You are always welcomed to post on the forum first :)

Issues that are inactive for a period of time may get closed. We adopt this policy so that we won't lose track of actionable issues that may fall at the bottom of the pile. Feel free to reopen a new one if you feel there is an additional problem that needs attention when an old one gets closed.

For bug reports, to help the developer act on the issues, please include a description of your environment, preferably a minimum script to reproduce the problem.

For feature proposals, list clear, small actionable items so we can track the progress of the change.
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Thanks for contributing to TVM! Please refer to guideline https://docs.tvm.ai/contribute/ for useful information and tips. After the pull request is submitted, please request code reviews from others in the community.
51 changes: 50 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ build_*
Win32
*.dir
perf
nnvm
*.wasm
.emscripten

Expand Down Expand Up @@ -132,13 +131,63 @@ xcuserdata/
.emscripten*
.m2

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint
.DS_Store
tags
cscope*
*.lock

# vim temporary files
*.swp
*.swo

# TVM generated code
perf
.bash_history
*.json
*.params
*.onnx
*.h5
synset.txt
cat.jpg
docs.tgz
cat.png
*.mlmodel
# Mac OS X
.DS_Store
build*

# Jetbrain
.idea

# tmp file
.nfs*
Loading

0 comments on commit 2479281

Please sign in to comment.