Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 741 for compilers (0.18 sec)

  1. pkg/kube/krt/README.md

    This is similar to a comparison between a high level programming language compared to assembly;
    while its always possible to write better code in assembly, smart compilers can make optimizations humans are unlikely to,
    such as loop unrolling.
    Similarly, `krt` can make complex optimizations in one place, so each controller implementation doesn't, which is likely to increase
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gccgo.go

    		defs = append(defs, `-D`, `GOPKGPATH="`+pkgpath+`"`)
    	}
    	compiler := envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
    	if b.gccSupportsFlag(compiler, "-fsplit-stack") {
    		defs = append(defs, "-fsplit-stack")
    	}
    	defs = tools.maybePIC(defs)
    	if b.gccSupportsFlag(compiler, "-ffile-prefix-map=a=b") {
    		defs = append(defs, "-ffile-prefix-map="+base.Cwd()+"=.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/quantization/common/func.h"
    #include "tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/utils/stablehlo_type_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/xla_call_module_attrs.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/doc.go

    exists in PPC64 assembler and is frequently used by PPC64 assembler writers.
    
    PCALIGN $16
    PCALIGN $8
    
    By default, functions in Go are aligned to 16 bytes, as is the case in all
    other compilers for PPC64. If there is a PCALIGN directive requesting alignment
    greater than 16, then the alignment of the containing function must be
    promoted to that same alignment or greater.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/debug/gosym/symtab.go

    // or the empty string if there is none.
    func (s *Sym) PackageName() string {
    	name := s.nameWithoutInst()
    
    	// Since go1.20, a prefix of "type:" and "go:" is a compiler-generated symbol,
    	// they do not belong to any package.
    	//
    	// See cmd/compile/internal/base/link.go:ReservedImports variable.
    	if s.goVersion >= ver120 && (strings.HasPrefix(name, "go:") || strings.HasPrefix(name, "type:")) {
    		return ""
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. src/go/token/position.go

    	//
    	// With better compiler optimizations, this may not be needed in the
    	// future, but at the moment this change improves the go/printer
    	// benchmark performance by ~30%. This has a direct impact on the
    	// speed of gofmt and thus seems worthwhile (2011-04-29).
    	// TODO(gri): Remove this when compilers have caught up.
    	i, j := 0, len(a)
    	for i < j {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    "C", it will look for other non-Go files in the directory and compile
    them as part of the Go package. Any .c, .s, .S or .sx files will be
    compiled with the C compiler. Any .cc, .cpp, or .cxx files will be
    compiled with the C++ compiler. Any .f, .F, .for or .f90 files will be
    compiled with the fortran compiler. Any .h, .hh, .hpp, or .hxx files will
    not be compiled separately, but, if these header files are changed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen.cc

    #include "absl/strings/str_split.h"
    #include "absl/strings/substitute.h"
    #include "absl/types/span.h"
    #include "tensorflow/compiler/aot/embedded_protocol_buffers.h"
    #include "tensorflow/compiler/tf2xla/tf2xla.pb.h"
    #include "tensorflow/compiler/tf2xla/tf2xla_util.h"
    #include "xla/cpu_function_runtime.h"
    #include "xla/service/compiler.h"
    #include "xla/service/cpu/buffer_info_util.h"
    #include "xla/shape_util.h"
    #include "xla/xla_data.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    NOTE: The `compile` and `runtime` configurations have been removed with Gradle 7.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top