Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 944 for crunch (0.13 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    )
    
    // Common values for the BO field.
    
    const (
    	BO_ALWAYS  = 20 // branch unconditionally
    	BO_BCTR    = 16 // decrement ctr, branch on ctr != 0
    	BO_NOTBCTR = 18 // decrement ctr, branch on ctr == 0
    	BO_BCR     = 12 // branch on cr value
    	BO_BCRBCTR = 8  // decrement ctr, branch on ctr != 0 and cr value
    	BO_NOTBCR  = 4  // branch on not cr value
    )
    
    // Bit settings from the CR
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

          "tf_device.launch"() ( {
            "tf.TPUCompileSucceededAssert"(%0#0) : (tensor<!tf_type.string>) -> ()
            tf_device.return
          }) {device = "/job:worker/replica:0/task:0/device:CPU:0"} : () -> ()
          %1 = "tf_device.launch"() ( {
            %2 = "tf.TPUExecute"(%arg0, %0#1) : (tensor<i8>, tensor<3x!tf_type.string>) -> tensor<i8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/IvyUtil.java

        }
    
        public static ModuleRevisionId createModuleRevisionId(String org, String name, String branch, String rev, Map<String, String> extraAttributes) {
            return createModuleRevisionId(org, name, branch, rev, extraAttributes, true);
        }
    
        public static ModuleRevisionId createModuleRevisionId(String org, String name, String branch, String revConstraint, Map<String, String> extraAttributes, boolean replaceNullBranchWithDefault) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyModuleDescriptorSpec.java

            this.status = status;
        }
    
        @Nullable
        @Override
        public String getBranch() {
            return branch;
        }
    
        @Override
        public void setBranch(@Nullable String branch) {
            this.branch = branch;
        }
    
        @Override
        public IvyExtraInfoSpec getExtraInfo() {
            return extraInfo;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/replicate_invariant_op_hoisting.mlir

        %2 = "tf_device.launch"() ({
          %a = "tf.opA"(%1) : (tensor<?xi32>) -> tensor<*xi32>
          tf_device.return %a : tensor<*xi32>
        }) {device = "a"} : () -> tensor<*xi32>
        %3 = "tf_device.launch"() ({
          %b = "tf.opB"(%1, %2) : (tensor<?xi32>, tensor<*xi32>) -> tensor<*xf32>
          tf_device.return %b : tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/cluster_formation.mlir

            %2 = "tf.A"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
    
            // Note that tf.C is moved before tf_device.launch.
            // CHECK: %[[C_OUTPUT:[0-9]*]] = "tf.C"(%[[ARG_0]])
    
            // CHECK: %[[TPU0_OUTPUT:[0-9]*]] = "tf_device.launch"
            // CHECK: <{device = "tpu0"}>
            // CHECK: %[[B_OUTPUT:[0-9]*]] = "tf.B"(%[[A_OUTPUT]]) : (tensor<?xi32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util.cc

      auto launch = builder->create<mlir::tf_device::LaunchOp>(
          loc, builder->getStringAttr(device), op->getResultTypes());
      launch.getBody().push_back(new mlir::Block);
    
      builder->setInsertionPointToEnd(&launch.GetBody());
      builder->create<mlir::tf_device::ReturnOp>(loc, op->getResults());
    
      // Move op inside cluster.
      op->moveBefore(launch.GetBody().getTerminator());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 13 03:57:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

        } else {
          break;
        }
      }
      return false;
    }
    
    // Wraps block in a Launch. External uses of ops in the block will be return
    // values of the Launch and remapped to the Launch results. If `before` is set
    // to true, the Launch is created before `op`. Otherwise the Launch is created
    // after `op`.
    mlir::tf_device::LaunchOp CreateLaunchForBlock(OpBuilder* builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

            def a2 = artifact("api.jar", "default")
    
            expect:
            def metadata = ivyMetadataFactory.create(id, [], configurations, [a1, a2], [])
            metadata.id == id
            metadata.branch == null
    
            and:
            metadata.sources == new MutableModuleSources()
            metadata.artifactDefinitions.size() == 2
            metadata.excludes.empty
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            where:
            branch             | status          | message
            ""                 | "release"       | "branch cannot be an empty string. Use null instead"
            "someBranch"       | ""              | "status cannot be an empty string. Use null instead"
            "someBranch\t"     | "release"       | "branch cannot contain ISO control character '\\u0009'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top