Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for yFunction (0.39 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Promote resources reads/writes to function inputs/outputs.";
      let description = [{
        This pass promotes resource accesses in function(s) (by default, the main)
        to input arguments and outputs of the function(s).
    
        Two types of resources are supported:
        (1) A function argument of TF::ResourceType type (this pass).
        (2) A VarHandleOp in the function (tf-promote-var-handles-to-args).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      for (const FunctionDef& function : actual.function()) {
        actual_index[function.signature().name()] = &function;
      }
    
      for (const FunctionDef& expected_function : expected.function()) {
        auto it = actual_index.find(expected_function.signature().name());
        if (it == actual_index.end()) {
          if (diff) {
            *diff = absl::StrCat("Did not find expected function '",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. src/reflect/value.go

    		}
    	}
    
    	return ret
    }
    
    // callReflect is the call implementation used by a function
    // returned by MakeFunc. In many ways it is the opposite of the
    // method Value.call above. The method above converts a call using Values
    // into a call of a function with a concrete argument frame, while
    // callReflect converts a call of a function with a concrete argument
    // frame into a call using Values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. fastapi/applications.py

                ),
            ] = None,
            generate_unique_id_function: Annotated[
                Callable[[routing.APIRoute], str],
                Doc(
                    """
                    Customize the function used to generate unique IDs for the *path
                    operations* shown in the generated OpenAPI.
    
                    This is particularly useful when automatically generating clients or
                    SDKs for your API.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      SymbolRefAttr func = op->getAttr("f").template cast<SymbolRefAttr>();
      auto function = symbolTable.lookupNearestSymbolFrom<func::FuncOp>(op, func);
      if (!function) {
        return op.emitError("'f' attribute refers to an undefined function: ")
               << func;
      }
    
      FunctionType function_ty = function.getFunctionType();
      int func_arg_count = function_ty.getNumInputs();
      int arg_count = op.getArgs().size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      name='x', shape=shapes[0], dtype=dtypes.float32
                  )
              ]
          )
          def matmul_with_kernel(self, x: core.Tensor) -> Mapping[str, core.Tensor]:
            return self._matmul(x, self._kernel)
    
          @def_function.function(
              input_signature=[
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    	// It's ok to ignore the error, returning error is not expected from this function.
    	// If an error case occurred during the function generation, this error case(skipped one) will also trigger an error
    	// while the generated function is executed. And those errors will be handled during the execution of the generated
    	// function with a back off policy.
    	if err == nil && attachableVolumePlugin != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

        checkNotNull(key);
        checkNotNull(function);
        int hash = hash(key);
        return segmentFor(hash).compute(key, hash, function);
      }
    
      @Override
      public V computeIfAbsent(K key, Function<? super K, ? extends V> function) {
        checkNotNull(key);
        checkNotNull(function);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	USAGE_MATCH_TYPE_AND = 0
    	USAGE_MATCH_TYPE_OR  = 1
    
    	/* msgAndCertEncodingType values for CertOpenStore function */
    	X509_ASN_ENCODING   = 0x00000001
    	PKCS_7_ASN_ENCODING = 0x00010000
    
    	/* storeProvider values for CertOpenStore function */
    	CERT_STORE_PROV_MSG               = 1
    	CERT_STORE_PROV_MEMORY            = 2
    	CERT_STORE_PROV_FILE              = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		// wantAddedToNominated is whether a Pod from the test case should be registered as a nominated Pod in the nominator.
    		wantAddedToNominated bool
    		// prepareFunc is the function called to prepare pods in the queue before the test case calls Update().
    		// This function returns three values;
    		// - oldPod/newPod: each test will call Update() with these oldPod and newPod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top