Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for op2 (0.54 sec)

  1. src/cmd/compile/internal/ssa/zeroextension_test.go

    	{f: func(a, b uint64) uint64 { op1 := int32(a); op2 := int32(b); return uint64(uint32(op1 / op2)) }, arg1: 0x1, arg2: 0xfffffffeffffffff, res: 0xffffffff, name: "div"},
    	{f: func(a, b uint64) uint64 { op1 := int32(a); op2 := int32(b); return uint64(uint32(op1 * op2)) }, arg1: 0x1, arg2: 0x100000001, res: 0x1, name: "mul"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:38:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ProgressOperationsTest.groovy

            def op2 = ops.start("resolve", null, new OperationIdentifier(2), null)
    
            then:
            op1.operationId.id == 1L
            op1.parent == null
            op2.operationId.id == 2L
            op2.parent == null
        }
    
        def "tracks progress"() {
            when:
            ops.start("Building", null, new OperationIdentifier(1), null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationListenerManagerTest.groovy

            manager.addListener(recordingListener("3"))
    
            when:
            broadcaster.started(op1, startEvent)
            broadcaster.started(op2, startEvent)
            broadcaster.finished(op1, finishEvent)
            broadcaster.finished(op2, finishEvent)
    
            then:
            events == [
                start("1", id1),
                start("2", id1),
                start("3", id1),
                start("1", id2),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue23305.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func mask1(a, b uint64) uint64 {
    	op1 := int32(a)
    	op2 := int32(b)
    	return uint64(uint32(op1 / op2))
    }
    
    var mask2 = mask1
    
    func main() {
    	res1 := mask1(0x1, 0xfffffffeffffffff)
    	res2 := mask2(0x1, 0xfffffffeffffffff)
    	if res1 != 0xffffffff {
    		println("got", res1, "want", 0xffffffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 02 21:08:35 UTC 2018
    - 575 bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultWorkInProgressFormatterTest.groovy

            def op2 = new ProgressOperation(null,  null, new OperationIdentifier(2), op1)
            def op3 = new ProgressOperation("STATUS_2", "VARIANT_CATEGORY", new OperationIdentifier(3), op2)
    
            expect:
            statusBarFormatter.format(op3).first().text == "> STATUS_1 > STATUS_2"
            statusBarFormatter.format(op2).first().text == "> STATUS_1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            def op2 = operations.first(ResolveConfigurationDependenciesBuildOperationType)
            op2.details.repositories.size() == 2
            op2.details.repositories*.id.unique(false).size() == 2
            op2.details.repositories[0].name == 'withoutCreds'
            op2.details.repositories[1].name == 'withCreds'
            def repo2Id = op2.details.repositories[0].id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/runtime_metadata.fbs

    // op1 = .... {tac.device = "CPU"}
    // op2 = .... {tac.device = "GPU"}
    // op3 = .... {tac.device = "GPU"}
    // op4 = .... {tac.device = "CPU"}
    //
    // We will run a separate cost estimation for each op with each different
    // hardwares.
    //
    // ======== IRs after cost-estimation ========
    // op1 = .... {tac.device = "CPU"} {"CPU": 10, "GPU": -1.0}
    // op2 = .... {tac.device = "GPU"} {"CPU": 20, "GPU": 5.0}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/condition_util.go

    	}
    	return false
    }
    
    type sys uint8
    
    const (
    	sys_AT sys = iota
    	sys_DC
    	sys_IC
    	sys_TLBI
    	sys_SYS
    )
    
    func sys_op_4(op1, crn, crm, op2 uint32) sys {
    	sysInst := sysInstFields{uint8(op1), uint8(crn), uint8(crm), uint8(op2)}
    	return sysInst.getType()
    }
    
    func is_zero(x uint32) bool {
    	return x == 0
    }
    
    func is_ones_n16(x uint32) bool {
    	return x == 0xffff
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.h

    // op should be returned. If "incoming" is false, the list of successors.
    // The algorithm assumes that these are consistent which each other. So
    // if (and only if) op1 is in extra_dependencies(op2, true), then op2
    // must also be in extra_dependencies(op1, false).
    // This function is called multiple times during the topological sort,
    // so the implementation should preferably be constant-time.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/reflectdata/helpers.go

    func assertOp(n ir.Node, op ir.Op) {
    	base.AssertfAt(n.Op() == op, n.Pos(), "want %v, have %v", op, n)
    }
    
    // assertOp2 asserts that n is an op1 or op2.
    func assertOp2(n ir.Node, op1, op2 ir.Op) {
    	base.AssertfAt(n.Op() == op1 || n.Op() == op2, n.Pos(), "want %v or %v, have %v", op1, op2, n)
    }
    
    // kindRType asserts that typ has the given kind, and returns an
    // expression that yields the *runtime._type value representing typ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top