Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for build_list (0.16 sec)

  1. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      }];
    }
    
    def TFR_BuildListOp : TFR_Op<"build_list", [Pure]> {
      let description = [{
       The `build_list` operation builds a tensor list from a list of tensors, or
       an tfr.attr from a list of scalars.
    
        Example:
    
        ```mlir
        %3 = tfr.build_list(%2, %1, %0) :
          (tfr.tensor, tfr.tensor, tfr.tensor) -> tfr.tensor_list
        %3 = tfr.build_list(%2, %1, %0) : (i32, i32, i32) -> tfr.attr
        ```
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

                                     derived_attrs))) {
            return failure();
          }
          continue;
        }
    
        // 2. The preceding op is a tfr.build_list op, which collects multiple
        // values with tensor types via the tfr.cast ops. These ops will be fused
        // to the current op as well, so all the tfr.cast op inputs will be inputs
        // to the result op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        // Create the new operands. This is mapping the operands from the target
        // TF ops to the TFR function arguments. If the TFR function argument is
        // a tensor_list, a "tfr.build_list" op is used to concat the available
        // TF op operands. If the TFR function argument isn't a tensor/tensor_list,
        // a constant is created by using the attribute stored in the TF op or the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    		mg.buildList = slices.Clip(mg.g.BuildList())
    	})
    	return mg.buildList
    }
    
    func (mg *ModuleGraph) findError() error {
    	errStack := mg.g.FindPath(func(m module.Version) bool {
    		_, err := mg.loadCache.Get(m)
    		return err != nil && err != par.ErrCacheEntryNotFound
    	})
    	if len(errStack) > 0 {
    		_, err := mg.loadCache.Get(errStack[len(errStack)-1])
    		var noUpgrade func(from, to module.Version) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSignatureContractsTest.kt

        ) {
            analyseForTest(callableDeclaration) {
                val typesToCheckOn = buildList {
                    add(builtinTypes.int)
                    add(buildClassType(StandardClassIds.List) { argument(builtinTypes.long) })
                }
    
                val symbol = callableDeclaration.getSymbol() as KaCallableSymbol
                val typeParameters = buildList {
                    addAll(symbol.typeParameters)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/SoftwareTypeRegistryIntegration.kt

                val assignments = buildList {
                    softwareType.conventions.filterIsInstance<AssignmentRecordConvention>().forEach { it.apply(::add) }
                }
                val additions = buildList {
                    softwareType.conventions.filterIsInstance<AdditionRecordConvention>().forEach { it.apply(::add) }
                }
                val nestedObjectAccess = buildList {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSession.kt

                buildList {
                    add(project.createDeclarationProvider(useSiteAnalysisScope, useSiteModule))
                    extensionTools.mapTo(this) { it.declarationProvider }
                }
            )
    
            useSitePackageProvider = KotlinCompositePackageProvider.create(
                buildList {
                    add(project.createPackageProvider(useSiteAnalysisScope))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/projectStructure/KotlinByModulesResolutionScopeProvider.kt

    public class KotlinByModulesResolutionScopeProvider : KotlinResolutionScopeProvider() {
        override fun getResolutionScope(module: KtModule): GlobalSearchScope {
            val allModules = topologicalSort(listOf(module)) {
                buildList {
                    addAll(directDependsOnDependencies)
                    addAll(directFriendDependencies)
                    addAll(directRegularDependencies)
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 948 bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/PropertyExtractor.kt

        override fun extractProperties(kClass: KClass<*>, propertyNamePredicate: (String) -> Boolean): Iterable<CollectedPropertyInformation> = buildList {
            val nameSet = mutableSetOf<String>()
            val predicateWithNamesFiltered: (String) -> Boolean = { propertyNamePredicate(it) && it !in nameSet }
            extractors.forEach { extractor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/annotations/KtFe10AnnotationsList.kt

        private val ignoredAnnotations: Set<ClassId> = emptySet()
    ) : AbstractList<KaAnnotation>(), KaAnnotationList {
        private val backingAnnotations: List<KaAnnotation> by lazy {
            buildList {
                fe10Annotations.forEachIndexed { index, annotationDescriptor ->
                    if (annotationDescriptor.classIdForAnnotation !in ignoredAnnotations) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top