Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for Parallel (0.22 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    		aoff = objw.BitVec(&argsSymTmp, aoff, args)
    		loff = objw.BitVec(&liveSymTmp, loff, locals)
    	}
    
    	// These symbols will be added to Ctxt.Data by addGCLocals
    	// after parallel compilation is done.
    	return base.Ctxt.GCLocalsSym(argsSymTmp.P), base.Ctxt.GCLocalsSym(liveSymTmp.P)
    }
    
    // Entry pointer for Compute analysis. Solves for the Compute of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	globalInternodeTransport = NewInternodeHTTPTransport(0)()
    
    	initHelp()
    
    	resetTestGlobals()
    
    	globalIsCICD = true
    
    	os.Exit(m.Run())
    }
    
    // concurrency level for certain parallel tests.
    const testConcurrencyLevel = 10
    
    const iso8601TimeFormat = "2006-01-02T15:04:05.000Z"
    
    // Excerpts from @lsegal - https://github.com/aws/aws-sdk-js/issues/659#issuecomment-120477258
    //
    //	User-Agent:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    batch. It determines the number of concurrent invocations of `f` that process
    elements from `input_dataset` in parallel.}]>:$batch_size,
        Arg<TF_Int64Tensor, [{A scalar representing the maximum number of parallel invocations of the `map_fn`
    function. Applying the `map_fn` on consecutive input elements in parallel has
    the potential to improve input pipeline throughput.}]>:$num_parallel_calls,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    								f(t, src, dst, opt)
    							})
    						}
    					})
    				}
    			})
    		}
    	}
    	for _, c := range testCases {
    		// Create a copy to avoid races, as tests are run in parallel
    		c := c
    		testName := strings.TrimSuffix(c.ConfigFile, filepath.Ext(c.ConfigFile))
    		t.NewSubTest(testName).Run(func(t framework.TestContext) {
    			// Apply the policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			},
    		},
    	}
    
    	for _, scenario := range scenarios {
    		t.Run(scenario.name, func(t *testing.T) {
    			t.Parallel()
    			var backingStorage *dummyStorage
    			if scenario.backingStorage != nil {
    				backingStorage = scenario.backingStorage
    			} else {
    				backingStorage = &dummyStorage{}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Fixed a performance issue where pods weren't created/deleted in parallel for a StatefulSet with podManagementPolicy: Parallel. ([#119096](https://github.com/kubernetes/kubernetes/pull/119096), [@aleksandra-malinowska](https://github.com/aleksandra-malinowska)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    		// and we want the concatenation of all of those logs.
    		// This means, of course, that users need to rm the old log
    		// to get fresh data.
    		// TODO: all.bash runs compilers in parallel. Need to synchronize logging somehow?
    		w, err := os.OpenFile(filepath.Join(os.Getenv("GOROOT"), "src", "rulelog"),
    			os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
    		if err != nil {
    			panic(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    			// to exit immediately
    			return
    		}
    	}
    }
    
    const (
    	resyncWorkerCnt        = 10 // limit of number of bucket resyncs is progress at any given time
    	resyncParallelRoutines = 10 // number of parallel resync ops per bucket
    )
    
    func newresyncer() *replicationResyncer {
    	rs := replicationResyncer{
    		statusMap:      make(map[string]BucketReplicationResyncStatus),
    		workerSize:     resyncWorkerCnt,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. RELEASE.md

    * Add an option `disable_eager_executer_streaming_enqueue` to `tensorflow.ConfigProto.Experimental` to control the eager runtime's behavior around parallel remote function invocations; when set to `True`, the eager runtime will be allowed to execute multiple function invocations in parallel.
    
    * `tf.constant_initializer`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            auto one =
                rewriter.create<arith::ConstantIntOp>(loc, 1, shape_scalar_type);
            auto two =
                rewriter.create<arith::ConstantIntOp>(loc, 2, shape_scalar_type);
            // See also the parallel implementation in
            // GetWindowedOutputSizeFromDimsV2. effective_filter_size = (filter_size
            // - 1) * dilation_rate + 1
            Value stride_value = rewriter.create<arith::ConstantIntOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top