mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 12:20:11 +01:00
[XLA:GPU] follow up fix after pr#32919
Change `gpu_version` parameter to const reference in `IntelGpuCompiler`. This aligns the parameter type in `OptimizeHloConvolutionCanonicalization` with the base class signature. PiperOrigin-RevId: 825083863
This commit is contained in:
parent
d75ad2c4ff
commit
14db6f6317
|
|
@ -29,7 +29,7 @@ IntelGpuCompiler::IntelGpuCompiler()
|
|||
spir::DataLayout()) {}
|
||||
|
||||
absl::Status IntelGpuCompiler::OptimizeHloConvolutionCanonicalization(
|
||||
HloModule* hlo_module, se::GpuComputeCapability gpu_version,
|
||||
HloModule* hlo_module, const se::GpuComputeCapability& gpu_version,
|
||||
se::dnn::VersionInfo dnn_version,
|
||||
const se::SemanticVersion& toolkit_version) {
|
||||
// Note: this is a stub.
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class IntelGpuCompiler : public GpuCompiler {
|
|||
IntelGpuCompiler();
|
||||
|
||||
absl::Status OptimizeHloConvolutionCanonicalization(
|
||||
HloModule* hlo_module, se::GpuComputeCapability gpu_version,
|
||||
HloModule* hlo_module, const se::GpuComputeCapability& gpu_version,
|
||||
se::dnn::VersionInfo dnn_version,
|
||||
const se::SemanticVersion& toolkit_version) override;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user