Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 406 for onStop (0.2 sec)

  1. tensorflow/compiler/jit/xla_compile_util_test.cc

      TF_EXPECT_OK(NodeDefBuilder("identity_op", "Identity")
                       .Input(FakeInput(DT_FLOAT))
                       .Attr("T", DT_FLOAT)
                       .Finalize(node_def()));
      TF_EXPECT_OK(InitOp());
      AddInputFromArray<float>(TensorShape({1, 2}), {6.9, 4.2});
      TF_EXPECT_OK(RunOpKernel());
    
      XlaCompiler::SingleOpCompileArgument single_op_arg(*context_);
    
      std::vector<XlaArgument> args(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 21:48:05 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/configdump_test.go

    		wantErr            bool
    	}{
    		{
    			name:             "returns expected secret summary onto Stdout",
    			callPrime:        true,
    			wantOutputSecret: "testdata/secretsummary.txt",
    		},
    		{
    			name:    "errors if config dump is not primed",
    			wantErr: true,
    		},
    		{
    			name:               "returns expected workload summary onto Stdout",
    			callPrime:          true,
    			wantOutputWorkload: "testdata/workloadsummary.txt",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK-NEXT: [[PREFIX:%.*]] = tf_mlrt.constop
      %cst = "tf.Const"() {__op_key = 0: i32, value = dense<"restore_ariables"> : tensor<!tf_type.string>} : () -> tensor<!tf_type.string>
      // CHECK-NEXT: [[SLICE:%.*]] = tf_mlrt.constop
      %cst_0 = "tf.Const"()  {__op_key = 1: i32, value = dense<""> : tensor<1x!tf_type.string>} : () -> tensor<1x!tf_type.string>
      // CHECK-NEXT: [[NAME:%.*]] = tf_mlrt.constop
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. src/runtime/lfstack_test.go

    	// Push K elements randomly onto the stacks.
    	sum := 0
    	for i := 0; i < K; i++ {
    		sum += i
    		node := allocMyNode(i)
    		LFStackPush(stacks[i%2], fromMyNode(node))
    	}
    	c := make(chan bool, P)
    	for p := 0; p < P; p++ {
    		go func() {
    			r := rand.New(rand.NewSource(rand.Int63()))
    			// Pop a node from a random stack, then push it onto a random stack.
    			for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 23:12:04 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderStartParameterConverter.java

            // Important that the launchables are unpacked on the client side, to avoid sending back any additional internal state that
            // the launchable may hold onto. For example, GradleTask implementations hold onto every task for every project in the build
            List<TaskExecutionRequest> requests = new ArrayList<TaskExecutionRequest>(launchables.size());
            for (InternalLaunchable launchable : launchables) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. pkg/channels/unbounded.go

    		select {
    		case b.c <- t:
    			b.mu.Unlock()
    			return
    		default:
    		}
    	}
    	b.backlog = append(b.backlog, t)
    	b.mu.Unlock()
    }
    
    // Load sends the earliest buffered data, if any, onto the read channel
    // returned by Get(). Users are expected to call this every time they read a
    // value from the read channel.
    func (b *Unbounded[T]) Load() {
    	b.mu.Lock()
    	if len(b.backlog) > 0 {
    		n := new(T)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          auto mul_rhs = ExpandTo4DForConv(gamma_cst);
          broadcasted_gamma = rewriter.create<ConstOp>(loc, mul_rhs);
        } else if (isa<TFL::DepthwiseConv2DOp>(mul_op_lhs)) {
          auto mul_rhs = ExpandTo4DForDepthwiseConv(gamma_cst);
          broadcasted_gamma = rewriter.create<ConstOp>(loc, mul_rhs);
        } else {
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/DependencySpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    /**
     * A dependency onto a Gradle component.
     */
    @Incubating
    public interface DependencySpec {
    
        /**
         * The human friendly name of this dependency.
         *
         * @return human friendly name
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 923 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

        IntegerAttr group_key = rewriter.getI32IntegerAttr(0);
    
        auto const_group_size = rewriter.create<TF::ConstOp>(
            assign_group->getLoc(), assign_group.getResult(0).getType(),
            group_size);
        auto const_group_key = rewriter.create<TF::ConstOp>(
            assign_group->getLoc(), assign_group.getResult(1).getType(), group_key);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      TensorType zero_point_type = scale_type.clone(rewriter.getI32Type());
      scale = rewriter.create<TF::ConstOp>(
          loc, scale_type,
          DenseFPElementsAttr::get(scale_type,
                                   {static_cast<float>(qtype.getScale())}));
      zero_point = rewriter.create<TF::ConstOp>(
          loc, zero_point_type,
          DenseIntElementsAttr::get(zero_point_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top