Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xla/service/gpu/intel_gpu_compiler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ IntelGpuCompiler::CompileTargetBinary(
const HloModuleConfig& module_config, llvm::Module* llvm_module,
const stream_executor::DeviceDescription& device_description,
bool relocatable, const HloModule* debug_module,
const CompileOptions& options, std::optional<int> shard_number) {
std::optional<int> shard_number) {
TF_ASSIGN_OR_RETURN(
auto spirv_str,
spirv::CompileToSPIRV(llvm_module,
Expand Down
2 changes: 1 addition & 1 deletion xla/service/gpu/intel_gpu_compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class IntelGpuCompiler : public GpuCompiler {
const HloModuleConfig& module_config, llvm::Module* llvm_module,
const stream_executor::DeviceDescription& device_description,
bool relocatable, const HloModule* debug_module,
const CompileOptions& options, std::optional<int> shard_number) override;
std::optional<int> shard_number) override;

std::vector<std::string> GetLLVMCommandLineOptions(
const DebugOptions& debug_options) const override;
Expand Down
Loading