Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for cc_test (0.12 sec)

  1. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    load(
        "//tensorflow:tensorflow.bzl",
        "if_not_windows",
        "lrt_if_needed",
        "tf_cc_binary",
        "tf_copts",
    )
    load(
        "//tensorflow/core/platform:rules_cc.bzl",
        "cc_test",
    )
    
    def tf_gen_op_wrappers_fuzz(
            name,
            op_def_src,
            api_def_srcs = [],
            kernel_deps = []):
        """
        Generates fuzzers for several groups of ops.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/test.cc

    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //    TFCOMPILE_NAME      : Name for tests and benchmarks.
    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_test rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    
    // clang-format off
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/test_google.cc

    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //    TFCOMPILE_NAME      : Name for tests and benchmarks.
    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_test rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    
    // clang-format off
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/auto_clustering_test_helper.h

    //
    // Copy the pbtxt for that "main" graph to tensorflow/compiler/jit/tests/
    // (i.e. this directory) and create a corresponding empty .golden_summary file.
    // Add the .pbtxt and .golden_summary files to the "data" section of the cc_test
    // rule for :auto_clustering_test and then see the comment on update_golden on
    // how to auto-generate the .golden_summary file.
    
    class AutoClusteringTest : public ::testing::Test {
     protected:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_test.go

    // Copyright 2017 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 cpu_test
    
    import (
    	. "internal/cpu"
    	"internal/godebug"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"testing"
    )
    
    func MustHaveDebugOptionsSupport(t *testing.T) {
    	if !DebugOptions {
    		t.Skipf("skipping test: cpu feature options not supported by OS")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/cmp/cmp_test.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 cmp_test
    
    import (
    	"cmp"
    	"fmt"
    	"math"
    	"slices"
    	"sort"
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    var negzero = math.Copysign(0, -1)
    var nonnilptr uintptr = uintptr(unsafe.Pointer(&negzero))
    var nilptr uintptr = uintptr(unsafe.Pointer(nil))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/cgo_test.go

    // Copyright 2011 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.
    
    //go:build cgo
    
    package cgotest
    
    import "testing"
    
    // The actual test functions are in non-_test.go files
    // so that they can use cgo (import "C").
    // These wrappers are here for gotest to find.
    
    func Test1328(t *testing.T)                  { test1328(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_load_err.txt

    package b
    
    import _ "m/want"
    
    -- constraint/constraint.go --
    // +build !!nope
    
    package constraint
    
    -- constraint/good.go --
    package constraint
    
    import _ "m/want"
    
    -- cgotest/cgo_test.go --
    package cgo_test
    
    // cgo is not allowed in tests.
    // See golang.org/issue/18647
    
    import "C"
    import (
    	"testing"
    	_ "m/want"
    )
    
    func Test(t *testing.T) {}
    
    -- cgoflag/cgoflag.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/internal/trace/gc_test.go

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/go/build/testdata/doc/c_test.go

    jimmyfrasche <******@****.***> 1519513438 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 07 14:35:52 UTC 2018
    - 12 bytes
    - Viewed (0)
Back to top