Unverified Commit 17f8f96b by Tianqi Chen Committed by GitHub

[CODE] Halide attributions (#3824)

parent ea6814ad
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
* \file tvm/dtype.h * \file tvm/dtype.h
* \brief Data type used in IR. * \brief Data type used in IR.
*/ */
// Acknowledgement: DataType structure design originates from Halide.
#ifndef TVM_DTYPE_H_ #ifndef TVM_DTYPE_H_
#define TVM_DTYPE_H_ #define TVM_DTYPE_H_
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
* \note Most of the operator defined here perform simple constant folding * \note Most of the operator defined here perform simple constant folding
* when the type is int32 or int64 for simplifying the index expressions. * when the type is int32 or int64 for simplifying the index expressions.
*/ */
// Acknowledgement: Most operator APIs originate from Halide.
#ifndef TVM_EXPR_OPERATOR_H_ #ifndef TVM_EXPR_OPERATOR_H_
#define TVM_EXPR_OPERATOR_H_ #define TVM_EXPR_OPERATOR_H_
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
* \file tvm/schedule.h * \file tvm/schedule.h
* \brief Define a schedule. * \brief Define a schedule.
*/ */
// Acknowledgement: Many schedule primitives originate from Halide and Loopy.
#ifndef TVM_SCHEDULE_H_ #ifndef TVM_SCHEDULE_H_
#define TVM_SCHEDULE_H_ #define TVM_SCHEDULE_H_
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
namespace tvm { namespace tvm {
namespace arith { namespace arith {
// Acknowledgement: IntervalSet design originates from Halide.
/*! /*!
* \brief Symbolic interval set. * \brief Symbolic interval set.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment