Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ ifeq ($(USE_LLVM), 1)
CFLAGS += $(LLVM_INCLUDE) -DTVM_LLVM_VERSION=$(LLVM_VERSION)
endif

ifdef $(ADD_CFLAGS)
ifdef ADD_CFLAGS
CFLAGS += $(ADD_CFLAGS)
endif

ifdef $(ADD_LDFLAGS)
ifdef ADD_LDFLAGS
LDFLAGS += $(ADD_LDFLAGS)
endif

Expand Down
2 changes: 1 addition & 1 deletion docs/README.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The documentation of tvm is generated with recommonmark and sphinx.

- pip install sphinx sphinx-gallery sphinx_rtd_theme matplotlib Image recommonmark
- pip install sphinx>=1.5.5 sphinx-gallery sphinx_rtd_theme matplotlib Image recommonmark
- Build tvm first in the root folder.
- You can build it locally by typing "make html" in this folder.
2 changes: 1 addition & 1 deletion tutorials/python/get_started.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
# is a tvm Module. fadd is the host module that contains the host wrapper,
# it also contains a device module for the CUDA function.
#
# The following code fetchs the device module and prints the content code.
# The following code fetches the device module and prints the content code.
#
dev_module = fadd_cuda.imported_modules[0]
print("-----CUDA code-----")
Expand Down