Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 156 for Compiler (0.16 sec)

  1. src/runtime/malloc.go

    		// TODO: This padding is only performed when the race detector
    		// is enabled. It would be nice to enable it if any package
    		// was compiled with checkptr, but there's no easy way to
    		// detect that (especially at compile time).
    		// TODO: enable this padding for all allocations, not just
    		// tinyalloc ones. It's tricky because of pointer maps.
    		// Maybe just all noscan objects?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	// On Windows, asmcgocall_landingpad acts as landing pad for exceptions
    	// thrown in the cgo call. Exceptions that reach this function will be
    	// handled by runtime.sehtramp thanks to the SEH metadata added
    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// argument list with the out arguments. We only use the return type for an out
    /// parameter if that is a plain C type, as this ensures ABI compatibility
    /// (returning structures has issues in case compiler options affect
    /// optimizations such as RVO). If a status needs to be returned from these
    /// methods, the last argument is always a `TF_Status *` (or an array of such
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. src/math/all_test.go

    		}
    	}
    	if f := Yn(0, 0); !alike(Inf(-1), f) {
    		t.Errorf("Yn(0, 0) = %g, want %g", f, Inf(-1))
    	}
    }
    
    var PortableFMA = FMA // hide call from compiler intrinsic; falls back to portable code
    
    func TestFMA(t *testing.T) {
    	for _, c := range fmaC {
    		got := FMA(c.x, c.y, c.z)
    		if !alike(got, c.want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/logopt"
    	"cmd/compile/internal/reflectdata"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/s390x"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"io"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    		runtime.Stack(buf, true)
    	}
    }
    
    // TestTryAdd tests the cases that are hard to test with real program execution.
    //
    // For example, the current go compilers may not always inline functions
    // involved in recursion but that may not be true in the future compilers. This
    // tests such cases by using fake call sequences and forcing the profile build
    // utilizing translateCPUProfile defined in proto_test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. src/testing/testing.go

    // The value is set to "1" by a -X option to cmd/link. We assume that
    // because this is possible, the compiler will not optimize testBinary
    // into a constant on the basis that it is an unexported package-scope
    // variable that is never changed. If the compiler ever starts implementing
    // such an optimization, we will need some technique to mark this variable
    // as "changed by a cmd/link -X option".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

    from typing import Collection, Iterable, Mapping, Sequence, Tuple, Optional, Union, List
    
    from absl.testing import parameterized
    import numpy as np
    import tensorflow  # pylint: disable=unused-import
    
    from tensorflow.compiler.mlir.quantization.tensorflow.python import representative_dataset as repr_dataset
    from tensorflow.core.framework import function_pb2
    from tensorflow.core.framework import graph_pb2
    from tensorflow.core.framework import node_def_pb2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    //
    // Write barriers are disallowed here because it can be called from
    // gcWork when allocating new workbufs. However, because it's an
    // indirect call from the fixalloc initializer, the compiler can't see
    // this.
    //
    // The heap lock must be held.
    //
    //go:nowritebarrierrec
    func recordspan(vh unsafe.Pointer, p unsafe.Pointer) {
    	h := (*mheap)(vh)
    	s := (*mspan)(p)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/TypeToken.java

      }
    
      private TypeToken<? super T> getArraySupertype(Class<? super T> supertype) {
        // with component type, we have lost generic type information
        // Use raw type so that compiler allows us to call getSupertype()
        @SuppressWarnings("rawtypes")
        TypeToken componentType = getComponentType();
        // TODO(cpovirk): checkArgument?
        if (componentType == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top