Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for build_list (0.22 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/mvs/mvs.go

    // of the list are sorted by path.
    //
    // See https://research.swtch.com/vgo-mvs for details.
    func BuildList(targets []module.Version, reqs Reqs) ([]module.Version, error) {
    	return buildList(targets, reqs, nil)
    }
    
    func buildList(targets []module.Version, reqs Reqs, upgrade func(module.Version) (module.Version, error)) ([]module.Version, error) {
    	cmp := func(p, v1, v2 string) int {
    		if reqs.Max(p, v1, v2) != v1 {
    			return -1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

            context: AnalysisContext
        ): List<FunctionResolutionAndBinding> {
            var hasErrorInReceiverResolution = false
            val overloads: List<FunctionResolutionAndBinding> = buildList {
                when (functionCall.receiver) {
                    is Expr -> {
                        val receiver = expressionResolver.doResolveExpression(context, functionCall.receiver)
                        if (receiver != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                        StandardNames.getFunctionClassId(parametersCount)
                    }
                    buildString {
                        append(classId.asSingleFqName().toString())
                        val parameters = buildList {
                            receiverTypeRef?.let(::add)
                            parameters.mapTo(this) { it.returnTypeRef }
                            returnTypeRef.let(::add)
                        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

            extractors.asSequence().mapNotNull { it.topLevelFunction(function, preIndex) }.firstOrNull()
    }
    
    
    operator fun FunctionExtractor.plus(other: FunctionExtractor): CompositeFunctionExtractor = CompositeFunctionExtractor(buildList {
        fun include(functionExtractor: FunctionExtractor) = when (functionExtractor) {
            is CompositeFunctionExtractor -> addAll(functionExtractor.extractors)
            else -> add(functionExtractor)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            trySyntheticGetters: Boolean = true,
        ): Collection<ResolveResult> {
            getExtensionReceiverSymbolByThisQualifier(fqName, contextElement).ifNotEmpty { return this }
    
            buildList {
                getSymbolsFromScopes(fqName, contextElement).mapTo(this) { it.toResolveResult() }
                addAll(getTypeQualifiedExtensions(fqName, contextElement))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            )
    
            val libraryRoots = getAllBinaryRoots(modules, environment)
    
            val rootsWithSingleJavaFileRoots = buildList {
                addAll(libraryRoots)
                addAll(allSourceFileRoots)
                addAll(jdkRoots)
            }
    
            val (roots, singleJavaFileRoots) =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                computeCodeFragmentMappings(file, mainFirFile, firResolveSession, configuration)
            }
    
            val compilationPeerData = CompilationPeerCollector.process(mainFirFile)
    
            val filesToCompile = buildList {
                val dependencyFiles = buildSet {
                    addAll(compilationPeerData.files)
                    addAll(codeFragmentMappings?.capturedFiles.orEmpty())
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top