Add instance for elementwise normlization (#573)

* added instances for large N

* add instance for elementwise normlization

* added supported restrict in device_elementwise_normalization_impl.hpp

[ROCm/composable_kernel commit: 76d144fa7c]
This commit is contained in:
guangzlu
2023-02-10 01:37:29 +08:00
committed by GitHub
parent 03c35c2a7a
commit ebb0fa5b3b
3 changed files with 11 additions and 1 deletions

View File

@@ -533,6 +533,11 @@ struct DeviceElementwiseNormalizationImpl
return (false);
}
if(p_arg_->x_lds_size_ >= 65536)
{
return (false);
}
return true;
};