Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for xla_merge_op (0.31 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.h

     public:
      explicit XlaRunOp(OpKernelConstruction* ctx);
    
      void Compute(OpKernelContext* ctx) override;
    
     private:
      const XlaPlatformInfo platform_info_;
    };
    
    class XlaMergeOp : public OpKernel {
     public:
      explicit XlaMergeOp(OpKernelConstruction* ctx);
    
      void Compute(OpKernelContext* ctx) override;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. 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