Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for Calling (0.1 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (!getType().cast<ShapedType>().getElementType().isSignlessIntOrFloat())
        return nullptr;
    
      // TODO(b/280099953) This algorithm only works for fixed width element types.
      // This is the usual case, but consider falling back to old approach
      // if transposing string tensors becomes needed while folding.
      if (!input_tensor.getElementType().isIntOrIndexOrFloat()) return nullptr;
      SmallVector<int64_t> perms;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %0 = "tf.EnsureShape"(%arg0) {shape = #tf_type.shape<10x20>} : (tensor<10x20xf32>) -> tensor<10x20xf32>
      %1 = "tf.EnsureShape"(%arg0) {shape = #tf_type.shape<?x20>} : (tensor<10x20xf32>) -> tensor<10x20xf32>
      // Failing case which should not be folded.
      // CHECK: %[[NF:.*]] = "tf.EnsureShape"(%arg0) <{shape = #tf_type.shape<20x10>}>
      %2 = "tf.EnsureShape"(%arg0) {shape = #tf_type.shape<20x10>} : (tensor<10x20xf32>) -> tensor<20x10xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    		for now := time.Now(); timeoutTime.After(now); now = time.Now() {
    			sleepUntil := timeoutTime.Sub(now)
    			select {
    			case <-tc.processed:
    				// drain the chan of any sent events to keep it from filling before the timeout
    			case <-time.After(sleepUntil):
    				// timeout reached, ready to verifyResults
    			}
    		}
    	} else {
    		// Wait for HPA to be processed.
    		<-tc.processed
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    					CompletionTime:          &completedCond.LastTransitionTime,
    				},
    			},
    			wantSucceededPodsMetric: 1,
    			wantFailedPodsMetric:    1,
    		},
    		"failing job": {
    			pods: []*v1.Pod{
    				buildPod().uid("a").phase(v1.PodSucceeded).trackingFinalizer().Pod,
    				buildPod().uid("b").phase(v1.PodFailed).trackingFinalizer().Pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	}
    	_, err = conn.Write([]byte("GET /?underwrite=1 HTTP/1.1\r\nHost: foo\r\n\r\n"))
    	if err != nil {
    		t.Fatalf("error writing: %v", err)
    	}
    
    	// The ReadAll will hang for a failing test.
    	got, _ := io.ReadAll(conn)
    	expectedSuffix := "\r\n\r\ntoo short"
    	if !strings.HasSuffix(string(got), expectedSuffix) {
    		t.Errorf("Expected output to end with %q; got response body %q",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top