You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include "megdnn/oprs.h"
- #include "src/common/utils.h"
-
- namespace megdnn {
-
- void Fill::check_exec(const TensorLayout& dst, size_t workspace_in_bytes) {
- megdnn_assert_contiguous(dst);
- auto required_workspace_in_bytes = get_workspace_in_bytes(dst);
- megdnn_assert(workspace_in_bytes >= required_workspace_in_bytes);
- }
-
- } // namespace megdnn
-
- // vim: syntax=cpp.doxygen
|