Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 93 of 93 for ccCompiler (0.1 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    }
    
    // encodeU encodes a U-type RISC-V instruction.
    func encodeU(ins *instruction) uint32 {
    	// The immediates for encodeU are the upper 20 bits of a 32 bit value.
    	// Rather than have the user/compiler generate a 32 bit constant, the
    	// bottommost bits of which must all be zero, instead accept just the
    	// top bits.
    	imm := immI(ins.as, ins.imm, 20)
    	rd := regI(ins.rd)
    	enc := encode(ins.as)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    			//    allocation state.
    			// TODO: Improve this part. At least the size of endRegs of the predecessor also has
    			// an impact on the code size and compiler speed. But it is not easy to find a simple
    			// and efficient method that combines multiple factors.
    			idx := -1
    			for i, p := range b.Preds {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    input-output pairs as aliases (using `tf.aliasing_output` attribute) which read
    and write to the same resource. This aliasing information can then be propagated
    to XLA compiler for input/output buffer space optimizations.
    ### `-tf-drop-while-shape-invariant`
    
    _Drop `shape_invariant` attribute from While/WhileRegion ops._
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top