Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for unitTable (0.14 sec)

  1. tensorflow/c/experimental/gradients/nn_grad_test.cc

          ASSERT_EQ(errors::OK, status_.code()) << status_.message();
          immediate_execution_ctx_.reset(ctx_raw);
        }
    
        // Computing numerical gradients with TensorFloat-32 is numerically
        // unstable. Some forward pass tests also fail with TensorFloat-32 due to
        // low tolerances
        enable_tensor_float_32_execution(false);
      }
    
      AbstractContextPtr immediate_execution_ctx_;
      GradientRegistry registry_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. hack/lib/etcd.sh

        kube::log::usage "$(${port_check_command} -nat | grep "LISTEN" | grep "[\.:]${ETCD_PORT:?}")"
        exit 1
      fi
    
      # need set the env of "ETCD_UNSUPPORTED_ARCH" on unstable arch.
      arch=$(uname -m)
      if [[ $arch =~ arm* ]]; then
    	  export ETCD_UNSUPPORTED_ARCH=arm
      fi
      # validate installed version is at least equal to minimum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    #
    # We might be tempted to remove the dependency on module x for the same reason:
    # it no longer provides any imported package. However, that would cause 'go mod
    # tidy -e' to become unstable: with x.2-pre out of the way, we could once again
    # resolve the missing import of package x by re-adding x.1.
    
    cp go.mod go.mod.orig
    
    # 'go mod tidy' without -e should fail without modifying go.mod,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/manually.md

        ```Python
        from main import app
        ```
    
    !!! warning
        Uvicorn and others support a `--reload` option that is useful during development.
    
        The `--reload` option consumes much more resources, is more unstable, etc.
    
        It helps a lot during **development**, but you **shouldn't** use it in **production**.
    
    ## Hypercorn with Trio
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      bool enable_two_input_tensors = 11;
    
      // Supports TPU model quantization. If the target model for the quantization
      // is already converted for TPU, this flag may be helpful. Note that this
      // feature may be unstable as it is under the experimental stage.
      bool experimental_enable_tpu_model_support = 12;
    
      // Produces legacy weight-only graph where the qconst op(containing quantized
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    The `rootProject.name` effectively assigns a name to the build, used in reports like Build Scans.
    If the root project name is not set, the name will be the container directory name, which can be unstable (i.e., you can check out your project in any directory).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top