Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for bitMask (0.3 sec)

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

    	=> (EXTRWconst [32-c] x2 x)
    (XORshiftLL <t> [c] (UBFX [bfc] x) x2) && c < 32 && t.Size() == 4 && bfc == armBFAuxInt(32-c, c)
    	=> (EXTRWconst [32-c] x2 x)
    
    // Rewrite special pairs of shifts to AND.
    // On ARM64 the bitmask can fit into an instruction.
    (SRLconst [c] (SLLconst [c] x)) && 0 < c && c < 64 => (ANDconst [1<<uint(64-c)-1] x) // mask out high bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. tensorflow/c/kernels/BUILD

            "//tensorflow/c:tf_tensor",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
            "//tensorflow/core:protos_all_cc",
        ],
    )
    
    tf_gen_op_libs(
        op_lib_names = ["bitcast"],
        deps = [
            "//tensorflow/c:ops",
            "//tensorflow/c:tf_datatype",
            "//tensorflow/c:tf_status",
            "//tensorflow/c:tf_tensor",
            "//tensorflow/core:lib",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            configurationCache.assertStateLoaded()
    
            when:
            buildFile << """
            task bTask
            """
            configurationCacheRun "help", "--task", "bTask"
            then:
            output.contains "Detailed task information for bTask"
            configurationCache.assertStateStored()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/18064")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            when:
            buildFile << """
            task bTask
            """
            run "help", "--task", "bTask"
            then:
            output.contains "Detailed task information for bTask"
        }
    
        def "tasks can be defined by camelCase matching"() {
            buildFile.text = """
            task someCamelCaseTask{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK:  return %[[RES0]] : tensor<8xf32>
    }
    
    func.func @bitcast(%arg0: tensor<8xi32>) -> tensor<8xui32> {
      %0 = "tf.Bitcast"(%arg0) : (tensor<8xi32>) -> tensor<8xui32>
      func.return %0 : tensor<8xui32>
    
    // CHECK-LABEL: bitcast
    // CHECK: %[[RES0:.*]] = "tfl.bitcast"(%arg0) : (tensor<8xi32>) -> tensor<8xui32>
    // CHECK:  return %[[RES0]] : tensor<8xui32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    func.func @testDoubleBitcast(%arg0: tensor<8x16x32x64xf32>) -> tensor<8x16x32x64xi32> {
      %0 = "tf.Bitcast"(%arg0) : (tensor<8x16x32x64xf32>) -> tensor<8x16x32x64x2xi16>
      %1 = "tf.Bitcast"(%0) {device = "/job:localhost/replica:0/task:0/device:GPU:0"} : (tensor<8x16x32x64x2xi16>) -> tensor<8x16x32x64xi32>
      func.return %1: tensor<8x16x32x64xi32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

      (TF_BiasAddOp:$dest $arg0, $arg1,
        ConstantAttr<TF_ConvnetDataFormatAttr, "\"NHWC\"">),
      [], [(CopyAttrs $src, $dest)]>;
    
    //===----------------------------------------------------------------------===//
    // Bitcast op patterns.
    //===----------------------------------------------------------------------===//
    
    // Parameter attributes are part of function attributes, which is not affected
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	s.sb = s.entryNewValue0(ssa.OpSB, types.Types[types.TUINTPTR])
    
    	s.startBlock(s.f.Entry)
    	s.vars[memVar] = s.startmem
    	if s.hasOpenDefers {
    		// Create the deferBits variable and stack slot.  deferBits is a
    		// bitmask showing which of the open-coded defers in this function
    		// have been activated.
    		deferBitsTemp := typecheck.TempAt(src.NoXPos, s.curfn, types.Types[types.TUINT8])
    		deferBitsTemp.SetAddrtaken(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    }
    
    func (t http2FrameType) String() string {
    	if s, ok := http2frameName[t]; ok {
    		return s
    	}
    	return fmt.Sprintf("UNKNOWN_FRAME_TYPE_%d", uint8(t))
    }
    
    // Flags is a bitmask of HTTP/2 flags.
    // The meaning of flags varies depending on the frame type.
    type http2Flags uint8
    
    // Has reports whether f contains all (0 or more) flags in v.
    func (f http2Flags) Has(v http2Flags) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

        }
    
        void "realizes task graph"() {
            given:
            def aTask = addTask("a")
            def bTask = addTask("b")
            aTask.dependsOn(bTask)
    
            when:
            container.realize()
    
            then:
            0 * aTask.getTaskDependencies()
            0 * bTask.getTaskDependencies()
        }
    
        void "invokes rule at most once when locating a task"() {
            def rule = Mock(Rule)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
Back to top