Skip to content

Commit

Permalink
[DEPRECATION] Cleanup legacy verilog support (apache#4576)
Browse files Browse the repository at this point in the history
This PR cleans up the left over code for legacy verilog support which was experimental.
The new hardware backend path is now support by VTA via TSIM.
  • Loading branch information
tqchen authored and zhiics committed Dec 31, 2019
1 parent 50ea788 commit b2a90ac
Show file tree
Hide file tree
Showing 17 changed files with 0 additions and 1,299 deletions.
5 changes: 0 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,6 @@ endif(USE_VM_PROFILER)
file(GLOB DATATYPE_SRCS src/codegen/datatype/*.cc)
list(APPEND COMPILER_SRCS ${DATATYPE_SRCS})

if(NOT MSVC)
file(GLOB COMPILER_VERILOG_SRCS src/codegen/verilog/*.cc)
list(APPEND COMPILER_SRCS ${COMPILER_VERILOG_SRCS})
endif()

file(GLOB TOPI_SRCS
topi/src/*.cc
)
Expand Down
30 changes: 0 additions & 30 deletions docker/install/ubuntu_install_iverilog.sh

This file was deleted.

73 changes: 0 additions & 73 deletions include/tvm/channel.h

This file was deleted.

15 changes: 0 additions & 15 deletions include/tvm/ir_pass.h
Original file line number Diff line number Diff line change
Expand Up @@ -236,21 +236,6 @@ bool VerifyCompactBuffer(Stmt stmt);
*/
Stmt RemoveNoOp(Stmt stmt);

/*!
* \brief Split statement into pipeine stages.
* \param stmt The stmt to be splitted
* \param split_load Whether split load into its own stage.
* \return Transformed stmt.
*/
Stmt SplitPipeline(Stmt stmt, bool split_load);

/*!
* \brief Narrow channel access to smaller range.
* \param stmt The stmt to do access rewriting.
* \return Transformed stmt.
*/
Stmt NarrowChannelAccess(Stmt stmt);

/*!
* \brief unroll the constant loop marked by unroll.
* This pass also automatically attach pragma unroll tag to loops which meets the standard.
Expand Down
Loading

0 comments on commit b2a90ac

Please sign in to comment.