Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddArgs (0.1 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    		OpPPC64XOR:      OpPPC64XORCC,
    	}
    	b := op.Block
    	opCC := b.NewValue0I(op.Pos, ccOpMap[op.Op], types.NewTuple(op.Type, types.TypeFlags), op.AuxInt)
    	opCC.AddArgs(op.Args...)
    	op.reset(OpSelect0)
    	op.AddArgs(opCC)
    	return op
    }
    
    // Try converting a RLDICL to ANDCC. If successful, return the mask otherwise 0.
    func convertPPC64RldiclAndccconst(sauxint int64) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // original graph that has an output edge in the subgraph, and whose second
      // element is the arg node in the subgraph that it sends to. The vector will
      // be filled in below in AddArgs.
      std::vector<std::pair<const Node*, Node*>> src_arg_pairs;
    
      TF_RETURN_IF_ERROR(CopySubgraphNodes(&node_images));
      TF_RETURN_IF_ERROR(CopySubgraphEdges(node_images, &src_arg_pairs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top