Skip to content
Merged
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
6 changes: 3 additions & 3 deletions torch_xla/csrc/xla_backend_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ class XlaBackendImpl : public torch::lazy::BackendImplInterface {
void PrepareToExit() const override { XLA_ERROR() << "Not implemented yet"; }

void SetRngSeed(size_t seed) const override {
// TODO(JackCaoG): upstream SetRngSeed should either be removed or start
// taking device.
// XLATensor::SetRngSeed(device, seed);
// TODO(alanwaketan): This interface is not useful. We probably should
// remove the base one.
XLA_ERROR() << "Not implemented yet";
return;
}

Expand Down