Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NameLoc (0.08 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    // Create the MLIR NamedLoc location corresponding to a given tensor
    Location TensorLoc(const TensorT& tensor, Builder builder, Location base) {
      if (tensor.name.empty()) {
        return base;
      }
      return mlir::NameLoc::get(builder.getStringAttr(tensor.name), base);
    }
    
    // Create the MLIR Location corresponding to a given op. This is an
    // experimental/debugging feature and production code should not rely on names
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    }
    
    var incomplete = "_cgopackage.Incomplete"
    
    // cname returns the C name to use for C.s.
    // The expansions are listed in nameToC and also
    // struct_foo becomes "struct foo", and similarly for
    // union and enum.
    func cname(s string) string {
    	if t, ok := nameToC[s]; ok {
    		return t
    	}
    
    	if strings.HasPrefix(s, "struct_") {
    		return "struct " + s[len("struct_"):]
    	}
    	if strings.HasPrefix(s, "union_") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top