Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 221 for canRotate (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    ((Add32|Or32|Xor32) (Lsh32x64 x z:(Const64 <t> [c])) (Rsh32Ux64 x (Const64 [d]))) && c < 32 && d == 32-c && canRotate(config, 32) => (RotateLeft32 x z)
    ((Add16|Or16|Xor16) (Lsh16x64 x z:(Const64 <t> [c])) (Rsh16Ux64 x (Const64 [d]))) && c < 16 && d == 16-c && canRotate(config, 16) => (RotateLeft16 x z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    			}
    			d := auxIntToInt64(v_1_1.AuxInt)
    			if !(c < 16 && d == 16-c && canRotate(config, 16)) {
    				continue
    			}
    			v.reset(OpRotateLeft16)
    			v.AddArg2(x, z)
    			return true
    		}
    		break
    	}
    	// match: (Add16 left:(Lsh16x64 x y) right:(Rsh16Ux64 x (Sub64 (Const64 [16]) y)))
    	// cond: (shiftIsBounded(left) || shiftIsBounded(right)) && canRotate(config, 16)
    	// result: (RotateLeft16 x y)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	// The jump table symbol is accessed only from the function symbol.
    	s.Set(obj.AttrStatic, true)
    	return s
    }
    
    // canRotate reports whether the architecture supports
    // rotates of integer registers with the given number of bits.
    func canRotate(c *Config, bits int64) bool {
    	if bits > c.PtrSize*8 {
    		// Don't rewrite to rotates bigger than the machine word.
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu-annotate-dynamic-shape-inputs.mlir

    // RUN: tf-opt -split-input-file -verify-diagnostics -tf-tpu-annotate-dynamic-shape-inputs %s | FileCheck %s
    
    // Test that annotate the inputs of the cluster func to be dynamic shaped.
    
    module attributes {tf.devices = ["/job:worker/replica:0/task:0/device:CPU:0", "/job:worker/replica:0/task:0/device:TPU_SYSTEM:0", "/job:worker/replica:0/task:0/device:TPU:0"]} {
       func.func @main(
          %arg0: tensor<2048xi64> {tf.device = "/job:localhost/replica:0/task:0/device:CPU:0"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/annotate-parameter-replication.mlir

    // RUN: tf-opt %s -split-input-file -tf-annotate-parameter-replication | FileCheck %s
    
    // Tests that an operand from outside the replicated region is annotated.
    
    module attributes {tf.versions = {producer = 888 : i32}} {
      // CHECK-LABEL: func @annotate_broadcast_values
      func.func @annotate_broadcast_values(%arg0: tensor<?xi32>) -> tensor<?xi32> {
        %0 = "tf._A"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
        %1 = "tf._B"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 25 02:54:34 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                error(unsupportedValueTypeConfig { type('MyTask').property('nestedBean.nestedInput').annotationType(annotation).unsupportedValueType('ResolvedArtifactResult').propertyType('Property<ResolvedArtifactResult>').solution('Extract artifact metadata and annotate with @Input.').solution('Extract artifact files and...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/graal/GraalSvm.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.graal
    
    import com.oracle.svm.core.annotate.Delete
    import com.oracle.svm.core.annotate.Substitute
    import com.oracle.svm.core.annotate.TargetClass
    import okhttp3.internal.platform.Android10Platform
    import okhttp3.internal.platform.AndroidPlatform
    import okhttp3.internal.platform.BouncyCastlePlatform
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

            result.assertHasErrorOutput("Possible solutions:")
            result.assertHasErrorOutput("1. Annotate with @InputFile for regular files.")
            result.assertHasErrorOutput("2. Annotate with @InputFiles for collections of files.")
            result.assertHasErrorOutput(". If you want to track the path, return File.absolutePath as a String and keep @Input.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputPropertyAnnotationHandler.java

                annotationType, unpackValueTypesOf(propertyMetadata),
                propertyMetadata, validationContext,
                ResolvedArtifactResult.class,
                "Extract artifact metadata and annotate with @Input",
                "Extract artifact files and annotate with @InputFiles"
            );
        }
    
        private static final String UNSUPPORTED_VALUE_TYPE = "UNSUPPORTED_VALUE_TYPE";
    
        private static void validateUnsupportedPropertyValueType(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. releasenotes/notes/50132.yaml

    area: traffic-management
    issue:
      - 48362
    releaseNotes:
      - |
        **Added** the annotation `networking.istio.io/address-type` to allow `istio` class Gateways to use `ClusterIP` for status addresses.
        **Added** the ability to annotate workloads or services with `istio.io/use-waypoint` pointing to Gateways of arbitrary gateway classes.
    
        These changes allow configuring a standard `istio` gateway as a Waypoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
Back to top