Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for child_idx (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util.cc

      for (int child_idx = 0; child_idx < num_moved_children; ++child_idx) {
        int old_idx = child_idx >= cluster_idx ? child_idx + 1 : child_idx;
        int new_idx = child_idx >= cluster_idx ? child_idx + num_cores_per_replica
                                               : child_idx;
        new_parallel_execute->getRegions()[new_idx].takeBody(
            old_parallel_execute.getRegions()[old_idx]);
      }
    
      return cluster_idx;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 13 03:57:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

            def operation1 = Spy(TestRunnableBuildOperation)
            def operation2 = Spy(TestRunnableBuildOperation)
            def operation3 = Spy(TestRunnableBuildOperation)
            def parentId
            def child1Id
            def child2Id
    
            when:
            operationRunner.run(operation1)
    
            then:
            1 * listener.start(_, _) >> { BuildOperationDescriptor descriptor, BuildOperationState operation ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                    require(lookupParent != null) {
                        "Cannot find parent $parentId for child scope $childId"
                    }
                    lookupParent
                }
    
                val child = ClassLoaderScopeSpec(parent, childId.name, origin)
                scopeSpecs[childId] = child
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/TransientConfigurationResultsBuilder.java

                        case EDGE:
                            long parentId = decoder.readSmallLong();
                            long childId = decoder.readSmallLong();
                            DefaultResolvedDependency parent = allDependencies.get(parentId);
                            DefaultResolvedDependency child = allDependencies.get(childId);
                            if (parent == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/progress/DefaultProgressLoggerFactoryTest.groovy

                assert event.parentProgressOperationId == parentId
            }
        }
    
        def "multiple threads can log independent operations"() {
            OperationIdentifier parentId
            OperationIdentifier childId
            OperationIdentifier id2
    
            when:
            async {
                start {
                    def parent = factory.newOperation("category").setDescription("op-1")
                    parent.started()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderScopeRegistryListener.java

     * @see ClassLoaderScope
     */
    @EventScope(Scope.UserHome.class)
    public interface ClassLoaderScopeRegistryListener {
    
        void childScopeCreated(ClassLoaderScopeId parentId, ClassLoaderScopeId childId, @Nullable ClassLoaderScopeOrigin origin);
    
        void classloaderCreated(ClassLoaderScopeId scopeId, ClassLoaderId classLoaderId, ClassLoader classLoader, ClassPath classPath, @Nullable HashCode implementationHash);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/dwarfgen/dwinl.go

    func unifyCallRanges(inlcalls dwarf.InlCalls, idx int) {
    	ic := &inlcalls.Calls[idx]
    	for _, childIdx := range ic.Children {
    		// First make sure child ranges are unified.
    		unifyCallRanges(inlcalls, childIdx)
    
    		// Then merge child ranges into ranges for this inline.
    		cic := inlcalls.Calls[childIdx]
    		ic.Ranges = dwarf.MergeRanges(ic.Ranges, cic.Ranges)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. src/runtime/defs_freebsd_arm.go

    	_type uint16
    	prio  uint16
    }
    
    type thrparam struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack_base uintptr
    	stack_size uintptr
    	tls_base   unsafe.Pointer
    	tls_size   uintptr
    	child_tid  unsafe.Pointer // *int32
    	parent_tid *int32
    	flags      int32
    	rtp        *rtprio
    	spare      [3]uintptr
    }
    
    type thread int32 // long
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/runtime/defs_freebsd_386.go

    	_type uint16
    	prio  uint16
    }
    
    type thrparam struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack_base uintptr
    	stack_size uintptr
    	tls_base   unsafe.Pointer
    	tls_size   uintptr
    	child_tid  unsafe.Pointer // *int32
    	parent_tid *int32
    	flags      int32
    	rtp        *rtprio
    	spare      [3]uintptr
    }
    
    type thread int32 // long
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/runtime/defs_freebsd_riscv64.go

    	_type uint16
    	prio  uint16
    }
    
    type thrparam struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack_base uintptr
    	stack_size uintptr
    	tls_base   unsafe.Pointer
    	tls_size   uintptr
    	child_tid  unsafe.Pointer // *int64
    	parent_tid *int64
    	flags      int32
    	pad_cgo_0  [4]byte
    	rtp        *rtprio
    	spare      [3]uintptr
    }
    
    type thread int64 // long
    
    type sigset struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top