Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 222 for outLines (0.18 sec)

  1. src/container/heap/heap.go

    // implementation; the file example_pq_test.go has the complete source.
    package heap
    
    import "sort"
    
    // The Interface type describes the requirements
    // for a type using the routines in this package.
    // Any type that implements it may be used as a
    // min-heap with the following invariants (established after
    // [Init] has been called or if the data is empty or sorted):
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux_test.go

    			// test to race thread destruction too.
    			once := routines%5 == 4
    			go waiter(question, response, once)
    
    			// Keep a count of how many goroutines are
    			// going to participate in the
    			// question/response test. This will count up
    			// towards 2*launches minus the count of
    			// routines that have been invoked with
    			// once=true.
    			routines++
    
    			// Decide what value we want to set the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // outlined, as the constant operand is replaced by an argument.
      pm.addPass(mlir::createInlinerPass({}, NoCanonicalization));
      // Lift resource operations out of device computation. This step needs to be
      // done after inlining.
      pm.addPass(mlir::TFDevice::CreateResourceOpLiftingPass());
      // Outline clusters into cluster functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/BUILD

        # copybara:comment_begin(JitRt/Auto fusion depreciated)
        exclude = [
            "auto-fusion.mlir",
            "tf_to_corert_pipeline_cpurt.mlir",
            "outline-cpurt-cluster.mlir",
        ],
        # copybara:comment_end
        features = if_oss(["--path=org_tensorflow/tensorflow/compiler/mlir/tfrt"]),
        size_override = {
            "fallback.mlir": "medium",
        },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    }
    
    // LoadEncryptionConfig parses and validates the encryption config specified by filepath.
    // It may launch multiple go routines whose lifecycle is controlled by ctx.
    // In case of an error, the caller is responsible for canceling ctx to clean up any go routines that may have been launched.
    // If reload is true, or KMS v2 plugins are used with no KMS v1 plugins, the returned slice of health checkers will always be of length 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. src/math/big/arith_s390x_test.go

    // license that can be found in the LICENSE file.
    
    //go:build s390x && !math_big_pure_go
    
    package big
    
    import (
    	"testing"
    )
    
    // Tests whether the non vector routines are working, even when the tests are run on a
    // vector-capable machine
    
    func TestFunVVnovec(t *testing.T) {
    	if hasVX {
    		for _, a := range sumVV {
    			arg := a
    			testFunVV(t, "addVV_novec", addVV_novec, arg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 770 bytes
    - Viewed (0)
  7. hack/boilerplate/boilerplate.py

                    files.append(pathname)
    
        files = normalize_files(files)
        outfiles = []
        for pathname in files:
            basename = os.path.basename(pathname)
            extension = file_extension(pathname)
            if extension in extensions or basename in extensions:
                outfiles.append(pathname)
        return outfiles
    
    
    def get_dates():
        years = datetime.datetime.now().year
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        During lowering from a `tf_device.cluster_func` op to a `tf.IfrtCall` op,
        the region owned by the former will be outlined to a function with a
        `tfrt_ifrt_serving.program_id` attribute. After that, the runtime ensures
        that the outlined function is compiled into an executable and is available
        for lookup from `IfrtCall` TF ops.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/saved_model_utils.h

    // Callers must ensure that `graphdef` outlives the returned map.
    gtl::FlatMap<StringPiece, const AttrValueMap*, StringPieceHasher> NodeToAttrMap(
        const tensorflow::GraphDef& graphdef);
    
    // Maps the name of each FunctionDef in `library` to its corresponding
    // FunctionDef. Callers must ensure `library` outlives the returned map.
    gtl::FlatMap<StringPiece, const tensorflow::FunctionDef*, StringPieceHasher>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 13 04:18:52 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/cover/cfg_test.go

    	// Write the pkgcfg file.
    	outcfg := filepath.Join(outdir, "outcfg.txt")
    
    	// Form up the arguments and run the tool.
    	outfiles, outfilelist := writeOutFileList(t, infiles, outdir, tag)
    	args := []string{"-pkgcfg", incfg, "-mode=" + mode, "-var=var" + tag, "-outfilelist", outfilelist}
    	args = append(args, infiles...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top