Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    			reg := uint8(bits.TrailingZeros64(mask))
    			mask &^= 1 << reg
    
    			registers[reg] = append(registers[reg], SlotID(k))
    		}
    	}
    	state.slots, state.registers = slots, registers
    }
    
    func (s *debugState) LocString(loc VarLoc) string {
    	if loc.absent() {
    		return "<nil>"
    	}
    
    	var storage []string
    	if loc.onStack() {
    		storage = append(storage, fmt.Sprintf("@%+d", loc.stackOffsetValue()))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

    # ==============================================================================
    """tfr_gen: Generate mlir tfr decomposition function from python code."""
    
    # pylint: disable=invalid-name
    # pylint: disable=missing-function-docstring
    # pylint: disable=g-direct-tensorflow-import
    
    import enum
    import os
    import re
    import types
    import gast as ast
    
    from tensorflow.compiler.mlir.tfr import tfr_wrapper as tfr
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top