-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add rocm schedules to topi C++ (#4507)
This imports the CUDA schedules to rocm.
- Loading branch information
Showing
5 changed files
with
270 additions
and
0 deletions.
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,65 @@ | ||
/* | ||
* 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 rocm/injective.h | ||
* \brief rocm schedule for injective operations | ||
*/ | ||
#ifndef TOPI_ROCM_INJECTIVE_H_ | ||
#define TOPI_ROCM_INJECTIVE_H_ | ||
|
||
#include "topi/tags.h" | ||
#include "topi/detail/fuse.h" | ||
#include "tvm/operation.h" | ||
#include "tvm/build_module.h" | ||
|
||
#include "topi/cuda/injective.h" | ||
|
||
namespace topi { | ||
using namespace tvm; | ||
|
||
namespace rocm { | ||
|
||
/*! | ||
* \brief Updates an existing schedule for the given injective ops. | ||
* | ||
* \param sch The schedule to update. | ||
* \param out The tensor representing the injective op. | ||
* | ||
* \return The updated schedule. | ||
*/ | ||
inline Schedule schedule_injective_from_existing(Schedule sch, const Tensor& out) { | ||
return topi::cuda::schedule_injective_from_existing(sch, out); | ||
} | ||
|
||
/*! | ||
* \brief Create a rocm schedule for the given output tensors. | ||
* | ||
* \param target The target to generate a schedule for. | ||
* \param outs The output tensors. | ||
* | ||
* \return A schedule for the given ops. | ||
*/ | ||
inline Schedule schedule_injective(const Target &target, const Array<Tensor>& outs) { | ||
return topi::cuda::schedule_injective(target, outs); | ||
} | ||
|
||
} // namespace rocm | ||
} // namespace topi | ||
#endif // TOPI_ROCM_INJECTIVE_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* 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 rocm/pooling.h | ||
* \brief rocm schedule for pooling operations | ||
*/ | ||
#ifndef TOPI_ROCM_POOLING_H_ | ||
#define TOPI_ROCM_POOLING_H_ | ||
|
||
#include "topi/tags.h" | ||
#include "topi/detail/fuse.h" | ||
#include "topi/detail/array_utils.h" | ||
#include "tvm/operation.h" | ||
#include "tvm/build_module.h" | ||
|
||
#include "topi/cuda/pooling.h" | ||
|
||
namespace topi { | ||
using namespace tvm; | ||
|
||
namespace rocm { | ||
|
||
/*! | ||
* \brief Create a rocm schedule for pool | ||
* | ||
* \param target The target to generate a schedule for. | ||
* \param outs The output tensors. | ||
* | ||
* \return A schedule for the given ops. | ||
*/ | ||
inline Schedule schedule_pool(const Target &target, const Array<Tensor>& outs) { | ||
return topi::cuda::schedule_pool(target, outs); | ||
} | ||
|
||
/*! | ||
* \brief Create a rocm schedule for global_pool | ||
* | ||
* \param target The target to generate a schedule for. | ||
* \param outs The output tensors. | ||
* | ||
* \return A schedule for the given ops. | ||
*/ | ||
inline Schedule schedule_global_pool(const Target &target, const Array<Tensor>& outs) { | ||
return topi::cuda::schedule_global_pool(target, outs); | ||
} | ||
|
||
} // namespace rocm | ||
} // namespace topi | ||
#endif // TOPI_ROCM_POOLING_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
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 rocm/reduction.h | ||
* \brief rocm schedule for reduction operations | ||
*/ | ||
#ifndef TOPI_ROCM_REDUCTION_H_ | ||
#define TOPI_ROCM_REDUCTION_H_ | ||
|
||
#include "topi/tags.h" | ||
#include "topi/detail/fuse.h" | ||
#include "tvm/operation.h" | ||
#include "tvm/build_module.h" | ||
|
||
#include "topi/cuda/reduction.h" | ||
|
||
namespace topi { | ||
using namespace tvm; | ||
|
||
namespace rocm { | ||
/*! | ||
* \brief Create a rocm schedule for a reduce operation. | ||
* | ||
* \param target The target to generate a schedule for. | ||
* \param outs The output tensors. | ||
* | ||
* \return A schedule for the given ops. | ||
*/ | ||
Schedule schedule_reduce(const Target& target, Array<Tensor> outs) { | ||
return topi::cuda::schedule_reduce(target, outs); | ||
} | ||
|
||
} // namespace rocm | ||
} // namespace topi | ||
#endif // TOPI_ROCM_REDUCTION_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* 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 rocm/injective.h | ||
* \brief ROCM schedule for injective operations | ||
*/ | ||
#ifndef TOPI_ROCM_SOFTMAX_H_ | ||
#define TOPI_ROCM_SOFTMAX_H_ | ||
|
||
#include "topi/tags.h" | ||
#include "topi/detail/fuse.h" | ||
#include "tvm/operation.h" | ||
#include "tvm/build_module.h" | ||
|
||
#include "topi/cuda/softmax.h" | ||
|
||
namespace topi { | ||
using namespace tvm; | ||
|
||
namespace rocm { | ||
|
||
/*! | ||
* \brief Create a rocm schedule for the given softmax output tensors. | ||
* | ||
* \param target The target to generate a schedule for. | ||
* \param outs The output tensors. | ||
* | ||
* \return A schedule for the given ops. | ||
*/ | ||
inline Schedule schedule_softmax(const Target &target, const Array<Tensor>& outs) { | ||
return topi::cuda::schedule_softmax(target, outs); | ||
} | ||
|
||
} // namespace rocm | ||
} // namespace topi | ||
#endif // TOPI_ROCM_SOFTMAX_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