Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 292 for shame (0.07 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

      def test_ptq_selective_denylist(self):
        """Tests that the op is not quantized when no quantization is enabled."""
    
        rng = np.random.default_rng(1230)
        random_tensor_gen_fn = lambda shape: rng.uniform(
            low=-1.0, high=1.0, size=shape
        ).astype(np.float32)
    
        class TwoMatmulModel(module.Module):
          """A model with two matmul ops."""
    
          @def_function.function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            if (LOGGER.isDebugEnabled()) {
                if (sameDependencies) {
                    LOGGER.debug("Filter {} excludes same dependencies as previous {}. Dependencies left = {}", newResolutionFilter, previousTraversalExclusions, oldStates);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Sometimes it's desirable to recreate archives exactly the same, byte for byte, on different machines.
    You want to be sure that building an artifact from source code produces the same result no matter when and where it is built.
    This is necessary for projects like https://reproducible-builds.org/[reproducible-builds.org].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers.go

    		// If image fs is not on separate disk as root but container fs is
    	} else {
    		// without an imagefs, nodefs pod rank func for eviction looks at all fs stats.
    		// since imagefs and nodefs share a common device, they share common ranking functions.
    		signalToRankFunc[evictionapi.SignalNodeFsAvailable] = rankDiskPressureFunc([]fsStatsType{fsStatsImages, fsStatsRoot, fsStatsLogs, fsStatsLocalVolumeSource}, v1.ResourceEphemeralStorage)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    However, with the configuration cache enabled, only the user-defined object references are the same.
    List references are different, though the referenced lists are equal.
    ----
    ❯ gradle --configuration-cache checkEquality
    include::{snippetsPath}/configurationCache/sharedObjects/tests/sharingObjectsWithConfigurationCache.out[]
    ----
    
    In general, it isn't recommended to share mutable objects between configuration and execution phases.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Tests independent chains of two resources.
    
    // CHECK-LABEL: func @simple_independent_chains_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK-SAME: value = dense<true> : tensor<i1>
      %0 = "tf.VarIsInitializedOp"(%arg0) : (!tf_res) -> tensor<i1>
      // CHECK-NEXT: return [[TRUE]] :
      func.return %0 : tensor<i1>
    }
    
    // CHECK-LABEL: func @while_body
    // CHECK-SAME: ({{.+}}: tensor<i1>)
    func.func @while_body(%arg0: !tf_res, %arg1: tensor<i1>) -> (!tf_res, tensor<i1>) {
      // CHECK: [[TRUE:%.+]] = "tf.Const"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  8. tensorflow/c/kernels_test.cc

        ::tensorflow::Tensor actual_tensor;
        EXPECT_TRUE(TF_TensorToTensor(val, &actual_tensor).ok());
    
        EXPECT_EQ(actual_tensor.tensor_data(), expected_tensor.tensor_data());
        EXPECT_EQ(actual_tensor.shape(), expected_tensor.shape());
        EXPECT_EQ(actual_tensor.dtype(), expected_tensor.dtype());
    
        TF_DeleteStatus(status);
        TF_DeleteTensor(val);
        return static_cast<void*>(s);
      };
    
      AttrValue v;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    the outputs of tasks when selecting the  next task to run and will avoid concurrent execution of tasks that write to the same output directory.  Similarly, Gradle will use the information about what files a task destroys (e.g. specified by the `Destroys` annotation) and avoid running a task that removes a set of files while another task is running that consumes or creates those same files (and vice versa).  It can also determine that a task that creates a set of files has already run and that a task...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.cc

    // back to a pessimistic analysis.  The optimistic analysis assigns the same
    // symbolic predicate to all the merge nodes whose preceding enter nodes have
    // the same frame name on the first iteration.  On the second iteration, if all
    // the merge nodes are pattern matched into the same AndRecurrence predicate
    // instance, the optimistic assignment of the same symbolic predicate is correct
    // and the analyzed result is taken.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top