Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 346 for no_aop (0.13 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

          }
        }
      });
    }
    
    // tf.NoOp islands are used to combine multiple control dependencies into one.
    // These islands have a single tf.NoOp inside them and consume multiple control
    // outputs to generate a single control output.
    //
    // For example,
    // ```
    // %merged_control = "tf_executor.island"(%control_a, %control_b) ({
    //   "tf.NoOp"() : () -> ()
    //   "tf_executor.yield"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/BUILD

        ],
    )
    
    # copybara:uncomment_begin(google-only)
    # pytype_strict_library(
    #     name = "quantize_model_test_base",
    #     testonly = 1,
    #     srcs = ["integration_test/quantize_model_test_base.py"],
    #     tags = ["no_pip"],
    #     visibility = [
    #         "//learning/brain/mlir/quantization/stablehlo:__subpackages__",
    #         "//tensorflow/compiler/mlir/quantization:__subpackages__",
    #     ],
    #     deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 20:18:36 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     Add 22
     AddN 41
     BatchMatMulV2 2
     BiasAddGrad 8
     BroadcastGradientArgs 4
     ConcatOffset 1
     ConcatV2 14
     Const 199
     DynamicStitch 1
     FloorDiv 1
     MatMul 20
     Maximum 1
     Mul 74
     NoOp 13
     Reshape 86
     RsqrtGrad 1
     Select 36
     SigmoidGrad 24
     Slice 32
     StridedSlice 2
     Sub 1
     Sum 11
     TanhGrad 17
     Tile 2
     ZerosLike 1
    cluster 16 size 22
     Add 2
     BiasAdd 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/doc.go

    related to real ARM64 instruction. NOOP serves for the hardware nop instruction. NOOP is an alias of
    HINT $0.
    
    Examples:
    
    	VMOV V13.B[1], R20      <=>      mov x20, v13.b[1]
    	VMOV V13.H[1], R20      <=>      mov w20, v13.h[1]
    	JMP (R3)                <=>      br x3
    	CALL (R17)              <=>      blr x17
    	LDAXRB (R19), R16       <=>      ldaxrb w16, [x19]
    	NOOP                    <=>      nop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/DefaultJavaToolchainRepositoryHandler.java

        ) {
            this.repositories = new DefaultNamedDomainObjectList<JavaToolchainRepository>(JavaToolchainRepository.class, instantiator, new RepositoryNamer(), CollectionCallbackActionDecorator.NOOP) {
                @Override
                public String getTypeDisplayName() {
                    return "repository";
                }
            };
            this.instantiator = instantiator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. maven-core/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: Wed Feb 28 07:40:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/glob_lit_test.bzl

        """
    
        # Disable tests on windows for now, to enable testing rest of all xla and mlir.
        native.py_test(
            name = name,
            srcs = ["@llvm-project//llvm:lit"],
            tags = tags + ["no_pip", "no_windows"],
            args = [
                "tensorflow/compiler/mlir/" + paths.basename(data[-1]) + " --config-prefix=runlit -v",
            ] + features,
            data = data + [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. pkg/volume/util/subpath/subpath.go

    	return subPath.Path, nil, nil
    }
    
    // CleanSubPaths is a fake implementation of CleanSubPaths. It is a noop
    func (fs *FakeSubpath) CleanSubPaths(podDir string, volumeName string) error {
    	return nil
    }
    
    // SafeMakeDir is a fake implementation of SafeMakeDir. It is a noop
    func (fs *FakeSubpath) SafeMakeDir(pathname string, base string, perm os.FileMode) error {
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 27 02:59:53 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinSettingsScriptIntegrationTest.kt

                the<MyExtension>().some("kotlin.get")
                configure<MyExtension> { some("kotlin.configure") }
            """)
            withBuildScript("""tasks.register("noop")""")
    
            assertThat(
                build("noop", "-q").output.trim(),
                equalTo(
                    """
                    api.get
                    api.configure
                    kotlin.get
                    kotlin.configure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top