"driver/conv_driver.cpp" did not exist on "8a4b59785b4f5ba48468d53618ca270c5da599a7"
Commit 80e61fe2 authored by umangyadav's avatar umangyadav
Browse files

fix CI

parent b07243b4
...@@ -282,8 +282,6 @@ struct context ...@@ -282,8 +282,6 @@ struct context
auto v_cu_count = v.at("cu_count"); auto v_cu_count = v.at("cu_count");
std::size_t n_cu_count = v_cu_count.without_key().to<std::size_t>(); std::size_t n_cu_count = v_cu_count.without_key().to<std::size_t>();
std::string v_miopen_version = v.at("miopen_version").to<std::string>();
std::string current_gfx_arch = this->current_device->get_device_name(); std::string current_gfx_arch = this->current_device->get_device_name();
std::size_t current_cu_count = this->current_device->get_cu_count(); std::size_t current_cu_count = this->current_device->get_cu_count();
if(n_cu_count != current_cu_count or v_gfx_arch != current_gfx_arch) if(n_cu_count != current_cu_count or v_gfx_arch != current_gfx_arch)
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#ifndef MIGRAPHX_GUARD_RTGLIB_CONVOLUTION_HPP #ifndef MIGRAPHX_GUARD_RTGLIB_CONVOLUTION_HPP
#define MIGRAPHX_GUARD_RTGLIB_CONVOLUTION_HPP #define MIGRAPHX_GUARD_RTGLIB_CONVOLUTION_HPP
#include "migraphx/program.hpp" #include <migraphx/program.hpp>
#include <migraphx/shape.hpp> #include <migraphx/shape.hpp>
#include <migraphx/generate.hpp> #include <migraphx/generate.hpp>
#include <migraphx/operation.hpp> #include <migraphx/operation.hpp>
......
...@@ -22,9 +22,6 @@ ...@@ -22,9 +22,6 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
// clang-format off // clang-format off
#include <string>
#define MIGRAPHX_VERSION_MAJOR @PROJECT_VERSION_MAJOR@ #define MIGRAPHX_VERSION_MAJOR @PROJECT_VERSION_MAJOR@
#define MIGRAPHX_VERSION_MINOR @PROJECT_VERSION_MINOR@ #define MIGRAPHX_VERSION_MINOR @PROJECT_VERSION_MINOR@
// clang-format on // clang-format on
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