Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 250 for NOOP (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_duplicate_resource_ops.mlir

        %control_14 = tf_executor.island(%control_13) wraps "tf.NoOp"() : () -> ()
        %outputs_15, %control_16 = tf_executor.island wraps "tf.VarHandleOp"() {container = "", shared_name = "MatMul/b_0"} : () -> tensor<!tf_type.resource<tensor<20x4096xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 04:26:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram.go

    // registered yet, the safe version returns an object that implements its methods
    // by looking up the relevant vector member in each call (thus getting a non-noop after registration).
    // In the other error cases the object returned here is a noop.
    func (v *TimingRatioHistogramVec) NewForLabelValuesSafe(initialNumerator, initialDenominator float64, labelValues []string) RatioedGauge {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. src/runtime/rt0_openbsd_arm64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "cgo/abi_arm64.h"
    
    // See comment in runtime/sys_openbsd_arm64.s re this construction.
    #define	INVOKE_SYSCALL	\
    	SVC;		\
    	NOOP;		\
    	NOOP
    
    TEXT _rt0_arm64_openbsd(SB),NOSPLIT|NOFRAME,$0
    	MOVD	0(RSP), R0	// argc
    	ADD	$8, RSP, R1	// argv
    	BL	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java

                result.setAvailable(true);
            }
    
            return result;
        }
    
        public void add(RepositorySystemSession session, LocalArtifactRegistration request) {
            // noop
        }
    
        public LocalMetadataResult find(RepositorySystemSession session, LocalMetadataRequest request) {
            LocalMetadataResult result = new LocalMetadataResult(request);
    
            String path;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/reset/unmount.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package phases
    
    import (
    	"k8s.io/klog/v2"
    )
    
    // unmountKubeletDirectory is a NOOP on all but linux.
    func unmountKubeletDirectory(kubeletRunDirectory string, flags []string) error {
    	klog.Warning("Cannot unmount filesystems on current OS, all mounted file systems will need to be manually unmounted")
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 10:58:44 UTC 2024
    - 922 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

    // CHECK:   %[[ISLAND1:.*]] = tf_executor.island(%[[ASSIGN1_CONTROL]], %[[ASSIGN2_CONTROL]]) wraps "tf.NoOp"()
    // CHECK:   tf_executor.fetch %[[ISLAND1]] : !tf_executor.control
    // CHECK: }
    
    
    // Checks empty tf_executor.island ops are populated with tf.NoOp/tf.Identity/
    // tf.IdentityN ops depending on the number of data results the
    // tf_executor.island has.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

            tf_executor.graph {
              %control_0 = tf_executor.island wraps "tf.NoOp"() : () -> ()
            }
            return
          }
    
          func.func private @function_2() -> () attributes {tf._original_func_name = "__func_2"} {
            tf_executor.graph {
              %control_0 = tf_executor.island wraps "tf.NoOp"() : () -> ()
            }
            return
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/outside_compilation.mlir

          %control_14 = tf_executor.island wraps "tf.NoOp"() {_pivot_for_cluster = "cluster_sample_sequence", device = ""} : () -> ()
          %control_15 = tf_executor.island(%control_14) wraps "tf.NoOp"() {_has_manual_control_dependencies = true, _tpu_replicate = "cluster_sample_sequence", device = ""} : () -> ()
          %control_16 = tf_executor.island(%control_15) wraps "tf.NoOp"() {device = ""} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:19:45 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotHierarchy.java

        /**
         * Receives diff when a {@link SnapshotHierarchy} is updated.
         *
         * Only the root nodes which have been removed/added are reported.
         */
        interface NodeDiffListener {
            NodeDiffListener NOOP = new NodeDiffListener() {
                @Override
                public void nodeRemoved(FileSystemNode node) {
                }
    
                @Override
                public void nodeAdded(FileSystemNode node) {
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestVirtualFileSystem.java

            super(root);
        }
    
        @Override
        protected SnapshotHierarchy updateNotifyingListeners(UpdateFunction updateFunction) {
            return updateFunction.update(SnapshotHierarchy.NodeDiffListener.NOOP);
        }
    
        public void setRoot(SnapshotHierarchy newRoot) {
            updateRootUnderLock(root -> newRoot);
        }
    
        public SnapshotHierarchy getRoot() {
            return root;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 14:17:29 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top