Skip to content

Commit

Permalink
fix bug in CI compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Liu-xiandong committed Mar 10, 2022
1 parent 86e708d commit e24d9dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddle/phi/kernels/impl/matrix_power_kernel_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void MatrixPowerFunction(const DenseTensor* X,
const int x_ndim = x_dims.size();
T* out_data = ctx.template Alloc<T>(Out);

paddle::platform::ForRange<Context> for_range(ctx, X->numel());
phi::funcs::ForRange<Context> for_range(ctx, X->numel());

if (n == 0) {
// Out = Identity Matrix
Expand Down

0 comments on commit e24d9dc

Please sign in to comment.