-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TE] reverse-mode autodiff without any optimization #5121
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/*! | ||
* \file tvm/te/autodiff.h | ||
* \brief Automatic differentiation of tensor expressions. | ||
*/ | ||
|
||
#ifndef TVM_TE_AUTODIFF_H_ | ||
#define TVM_TE_AUTODIFF_H_ | ||
|
||
#include <tvm/runtime/object.h> | ||
#include <tvm/tir/expr.h> | ||
#include "tensor.h" | ||
|
||
namespace tvm { | ||
/*! \brief Tensor expression language DSL. */ | ||
namespace te { | ||
|
||
/*! | ||
* \brief Take the derivative of the expression with respect to the given variable. | ||
* \param expr The expression to differentiate. | ||
* \param var The variable to differentiate with respect to. | ||
* \return The expression for the derivative. | ||
*/ | ||
PrimExpr Derivative(const PrimExpr& expr, const Var& var); | ||
|
||
/*! | ||
* \brief Get the tensor representing the Jacobian of the output with respect to the input. | ||
* | ||
* Note that if \p output depends on \p input indirectly (by using some other tensor | ||
* depending on \p input), this dependency won't contribute to the resulting Jacobian. | ||
* For such cases use the function ::Gradient. | ||
* | ||
* \param output The tensor to differentiate. | ||
* \param input The input tensor, which \p output should directly use. | ||
* \return The tensor representing the Jacobian of shape `output.shape + input.shape`. | ||
*/ | ||
Tensor Jacobian(const Tensor& output, const Tensor& input); | ||
|
||
/*! | ||
* \brief The building block for reverse-mode AD. | ||
* | ||
* Differentiate \p output wrt \p input and multiply the result by \p head on the left using tensor | ||
* dot product. \p input must be an immediate dependency of \p output (must be called from within | ||
* the body of \p output). That is, the function will compute one summand of the adjoint for \p input | ||
* given the adjoint for \p output (which is called \p head here). | ||
* | ||
* \param output The tensor to differentiate. | ||
* \param input The input tensor, which \p output should directly use. | ||
* \param head The adjoint of \p output. Must be of shape `prefix + output.shape` | ||
* \return The tensor of shape `prefix + input.shape` | ||
* representing the partial adjoint of \p input wrt one of its consumers (output) | ||
*/ | ||
Tensor VectorJacobianProduct(const Tensor &output, const Tensor &input, const Tensor &head); | ||
|
||
/*! | ||
* \brief Perform reverse mode automatic differentiation. | ||
* | ||
* Each item of the `result` field of the result is an adjoint for the corresponding item of | ||
* \p inputs, i.e. \p head multiplied by the Jacobian of \p output with respect to the | ||
* corresponding item of \p inputs. | ||
* | ||
* \param output The tensor to differentiate. | ||
* \param inputs The array of input tensors. When the array is empty, will perform differentiation | ||
* wrt all tensors the output depends on. | ||
* \param head The adjoint of the output, in other words, some tensor, by which the Jacobians | ||
* will be multiplied (using tensordot axes=`output.shape`). | ||
* Its shape must be of the form `prefix + output.shape`. If the null pointer is provided, | ||
* the identity tensor of shape `output.shape + output.shape` will be used. | ||
* \return An array of adjoints corresponding to \p inputs. | ||
*/ | ||
TVM_DLL Array<Tensor> Gradient( | ||
const Tensor& output, | ||
const Array<Tensor>& inputs, | ||
const Tensor& head = Tensor()); | ||
|
||
} // namespace te | ||
} // namespace tvm | ||
|
||
#endif // TVM_TE_AUTODIFF_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# 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. | ||
|
||
"""Automatic differentiation of tensor expressions.""" | ||
from . import _ffi_api | ||
|
||
|
||
def gradient(output, inputs, head=None): | ||
"""Perform reverse-mode automatic differentiation. | ||
|
||
Parameters | ||
---------- | ||
output : Tensor | ||
The tensor to differentiate. | ||
|
||
inputs : List[Tensor] | ||
The list of input tensors to be differentiated wrt. | ||
|
||
head : Tensor | ||
The adjoint of the output, in other words, some tensor, by which the Jacobians | ||
will be multiplied. Its shape must be of the form `prefix + output.shape`. | ||
If `None` is passed, the identity tensor of shape `output.shape + output.shape` | ||
will be used. | ||
|
||
Returns | ||
------- | ||
tensors: List[Tensor] | ||
The result gradient, in the same order as the inputs | ||
|
||
Example | ||
------- | ||
.. code-block:: python | ||
|
||
x = tvm.placeholder((32, 3, 28, 28), name='x') | ||
w1 = tvm.placeholder((10, 3, 3, 3), name='w1') | ||
w2 = tvm.placeholder((10, 10, 3, 3), name='w2') | ||
z1 = topi.nn.conv2d(x, w1, 1, 1, 1) | ||
z2 = topi.nn.conv2d(z1, w2, 1, 1, 1) | ||
y = topi.sum(z2) | ||
|
||
# produce gradients | ||
[dw1, dw2] = tvm.gradient(y, [w1, w2]) | ||
|
||
# produce Jacobians | ||
[jw1, jw2] = tvm.gradient(z2, [w1, w2]) | ||
|
||
# produce gradients, the head adjoint for z2 is provided manually | ||
[dw1, dw2] = tvm.gradient(z2, [w1, w2], topi.full_like(z2, 1.0)) | ||
|
||
""" | ||
if not isinstance(inputs, list): | ||
inputs = [inputs] | ||
return _ffi_api.Gradient(output, inputs, head) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/*! | ||
* \file ad_util.cc | ||
* \brief Utility for tensor-level auto-differentiation. | ||
*/ | ||
#include <tvm/tir/expr.h> | ||
#include <tvm/tir/ir_pass.h> | ||
#include <string> | ||
#include "ad_util.h" | ||
|
||
namespace tvm { | ||
namespace te { | ||
|
||
std::pair<Array<IterVar>, Map<Var, PrimExpr>> CloneIterVars(const Array<IterVar>& vars) { | ||
Array<IterVar> new_vars; | ||
Map<Var, PrimExpr> vmap; | ||
for (const IterVar& iv : vars) { | ||
IterVar new_v = | ||
IterVarNode::make(iv->dom, iv->var.copy_with_suffix(""), | ||
iv->iter_type, iv->thread_tag); | ||
new_vars.push_back(new_v); | ||
vmap.Set(iv->var, new_v->var); | ||
} | ||
return std::make_pair(std::move(new_vars), std::move(vmap)); | ||
} | ||
|
||
PrimExpr CloneReduction(const PrimExpr& expr) { | ||
if (const ReduceNode* red = expr.as<ReduceNode>()) { | ||
Array<IterVar> new_axis; | ||
Map<Var, PrimExpr> vmap; | ||
std::tie(new_axis, vmap) = CloneIterVars(red->axis); | ||
|
||
Array<PrimExpr> src_with_newaxis; | ||
for (const auto& src : red->source) { | ||
src_with_newaxis.push_back(tir::Substitute(src, vmap)); | ||
} | ||
|
||
return ReduceNode::make(red->combiner, src_with_newaxis, | ||
new_axis, tir::Substitute(red->condition, vmap), red->value_index); | ||
} else { | ||
return expr; | ||
} | ||
} | ||
|
||
} // namespace te | ||
} // namespace tvm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/*! | ||
* \file ad_util.h | ||
* \brief Helper utilities to implement auto-differentiation. | ||
*/ | ||
#ifndef TVM_TE_AUTODIFF_AD_UTIL_H_ | ||
#define TVM_TE_AUTODIFF_AD_UTIL_H_ | ||
|
||
#include <tvm/tir/expr.h> | ||
#include <tvm/te/operation.h> | ||
#include <vector> | ||
#include <unordered_map> | ||
#include <utility> | ||
|
||
namespace tvm { | ||
namespace te { | ||
|
||
/*! | ||
* \brief Clone iter vars and return both the new vars and the substitution from old to new. | ||
* | ||
* \param vars The original iter vars. | ||
* \return A pair containing the array of new iter vars and the map from old vars to new ones. | ||
*/ | ||
std::pair<Array<IterVar>, Map<Var, PrimExpr>> CloneIterVars(const Array<IterVar>& vars); | ||
|
||
/*! | ||
* \brief Clone reduction by cloning the axis variables. | ||
* \param expr A reduction expr to clone. Non-reduction expressions are left intact. | ||
*/ | ||
PrimExpr CloneReduction(const PrimExpr& expr); | ||
|
||
} // namespace te | ||
} // namespace tvm | ||
#endif // TVM_TE_AUTODIFF_AD_UTIL_H_ |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So the default behavior is to return a Jacobian instead of adjoint, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's right. more precisely, that's because the arguments are one output and multiple inputs, instead of one input and multiple outputs. if y is the only output, dy/dx is jacobian, it's also adjoint(x) for the previous layer. it depends on what aspect you want to emphasize, you use different terms.