Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 259 for nextch (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-order.mlir

    // CHECK-NEXT:         value {
    // CHECK-NEXT:           tensor {
    // CHECK-NEXT:             dtype: DT_INT32
    // CHECK-NEXT:             tensor_shape {
    // CHECK-NEXT:             }
    // CHECK-NEXT:             int_val: 1
    // CHECK-NEXT:           }
    // CHECK-NEXT:         }
    // CHECK-NEXT:       }
    // CHECK:          }
    // CHECK:          node_def {
    // CHECK-NEXT:       name: "tf.Empty"
    // CHECK-NEXT:       op: "Empty"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 18:52:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-control-ret.mlir

            tf_executor.yield %1 : tensor<i32>
          }
          // CHECK: control_output: "control_const"
          // CHECK:       control_ret {
          // CHECK-NEXT:    key: "control_const"
          // CHECK-NEXT:    value: "control_const"
          // CHECK-NEXT:  }
          tf_executor.fetch %0#1 : !tf_executor.control
        }
        func.return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1004 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/launch_outlining.mlir

            %3 = "tf.A"() : () -> tensor<?xi32>
            tf_device.return %3 : tensor<?xi32>
          }) {device = "/device:test_device:0"} : () -> tensor<?xi32>
        // CHECK: tf_executor.fetch %[[LAUNCH_OUTPUT]]
        tf_executor.fetch %1#0 : tensor<?xi32>
      }
      func.return %0 : tensor<?xi32>
    }
    
    // CHECK: func private @[[LAUNCH]]
    // CHECK-SAME: () -> tensor<?xi32>
    // CHECK: %[[A_OUTPUT:[0-9]*]] = "tf.A"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. pkg/kube/krt/README.md

    ```go
    ConfigMapCount := krt.NewSingleton[int](func(ctx krt.HandlerContext) *int {
        cms := krt.Fetch(ctx, ConfigMaps)
        return ptr.Of(len(cms))
    })
    ```
    
    The `Fetch` operation enables querying against other collections.
    If the result of the `Fetch` operation changes, the collection will automatically be recomputed; the framework handles the state and event detection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/encoding/base64/base64_test.go

    func TestDecoderIssue3577(t *testing.T) {
    	next := make(chan nextRead, 10)
    	wantErr := errors.New("my error")
    	next <- nextRead{5, nil}
    	next <- nextRead{10, wantErr}
    	next <- nextRead{0, wantErr}
    	d := NewDecoder(StdEncoding, &faultInjectReader{
    		source: "VHdhcyBicmlsbGlnLCBhbmQgdGhlIHNsaXRoeSB0b3Zlcw==", // twas brillig...
    		nextc:  next,
    	})
    	errc := make(chan error, 1)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_functional_to_executor.cc

          loc, func.getFunctionType().getResults(),
          tf_executor::ControlType::get(&getContext()), ArrayRef<Value>());
      // Create Fetch.
      ValueRange to_fetch = island.getResults();
      if (to_fetch.size() != 1) {
        // Drop control result for fetch.
        to_fetch = to_fetch.drop_back();
      }
      builder.create<tf_executor::FetchOp>(loc, to_fetch);
      // Build Island.
      island.getBody().push_back(new Block);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/version.go

    // kubernetesReleaseVersionDefault is helper function that can fetch
    // available version information from release servers based on
    // label names, like "stable" or "latest".
    //
    // If argument is already semantic version string, it
    // will return same string.
    //
    // In case of labels, it tries to fetch from release
    // servers and then return actual semantic version.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/convert_launch_func_to_tf_call.mlir

          // CHECK: tf_executor.yield %[[CALL_OUTPUT]]
          tf_executor.yield %3 : tensor<?xf32>
        }
        tf_executor.fetch %1#0 : tensor<?xf32>
      }
      func.return %0 : tensor<?xf32>
    }
    
    func.func @_func(%arg0: tensor<?xf32>) -> tensor<?xf32> {
      func.return %arg0 : tensor<?xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. cmd/peer-rest-client.go

    	return nil
    }
    
    // GetLocks - fetch older locks for a remote node.
    func (client *peerRESTClient) GetLocks(ctx context.Context) (lockMap map[string][]lockRequesterInfo, err error) {
    	resp, err := getLocksRPC.Call(ctx, client.gridConn(), grid.NewMSS())
    	if err != nil || resp == nil {
    		return nil, err
    	}
    	return *resp, nil
    }
    
    // LocalStorageInfo - fetch server information for a remote node.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/vcs.go

    	statLocal     func(rev, remote string) []string                                                   // cmd to stat local rev
    	parseStat     func(rev, out string) (*RevInfo, error)                                             // cmd to parse output of statLocal
    	fetch         []string                                                                            // cmd to fetch everything from remote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top