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
4 changes: 2 additions & 2 deletions third_party/nvfuser/csrc/python_frontend/fusion_record.h
Original file line number Diff line number Diff line change
Expand Up @@ -1974,8 +1974,8 @@ struct RandomOpRecord : RecordFunctor {
}

void operator()(FusionState& fd) final {
auto arg1 = fd.getFusionState(args_.at(0).index)->template as<Val>();
auto arg2 = fd.getFusionState(args_.at(1).index)->template as<Val>();
auto arg1 = fd.getFusionState(args_.at(0).index);
auto arg2 = fd.getFusionState(args_.at(1).index);

std::vector<Val*> output_shape(output_shape_.size(), nullptr);
std::transform(
Expand Down