Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xla_merge_op (0.13 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass.cc

            new_output = check_numerics_op;
          }
    
          ops::_XlaMerge xla_merge_op(s.WithOpName("merge_oidx_", oidx),
                                      Output(old_node, oidx), new_output);
          merged_output = merged_outputs[oidx] = xla_merge_op.output;
        }
    
        Node* dst = e->dst();
        int dst_idx = e->dst_input();
    
        s.graph()->RemoveEdge(e);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

              /*missing_ctx_input_prefix=*/closure.num_constant_args(),
              absl::MakeSpan(*variable_infos), input_output_alias, snapshot_ptrs));
    }
    
    XlaMergeOp::XlaMergeOp(OpKernelConstruction* ctx) : OpKernel(ctx) {}
    
    void XlaMergeOp::Compute(OpKernelContext* ctx) {
      VLOG(3) << "XlaMergeOp " << def().name();
      int i = 0;
      if (ctx->has_input(i) || ctx->has_input(++i)) {
        ctx->set_output(0, ctx->input(i));
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top