Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for build_list (0.36 sec)

  1. tensorflow/compiler/mlir/tfr/tests/canonicalize.mlir

      %0 = "arith.constant"() {value = 42 : i32} : () -> i32
      %1 = "arith.constant"() {value = 41 : i32} : () -> i32
      %2 = "tfr.build_list"(%0, %1) : (i32, i32) -> !tfr.attr
      %3 = "tfr.build_list"(%0, %1) : (i32, i32) -> !tfr.attr
      %4 = "tfr.build_list"(%2, %3) : (!tfr.attr, !tfr.attr) -> !tfr.attr
      func.return %4 : !tfr.attr
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/tests/decompose.mlir

    // CHECK-NEXT: %[[bl:.*]] = "tfr.build_list"(%[[id1]], %[[id2]]) : (!tfr.tensor, !tfr.tensor) -> !tfr.tensor_list
    // CHECK-NEXT: tfr.return %[[bl]] : !tfr.tensor_list
    }
    
    // CHECK-LABEL: @tf__my_max_pool
    tfr.func @tf__my_max_pool(%input_: !tfr.tensor, %stride_w: i64{tfr.name="stride_w"}, %stride_h: i64{tfr.name="stride_h"}) -> (!tfr.tensor) {
      %cst_1 = arith.constant 1 : i64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tfr/tests/raise_to_tf.mlir

      %0 = "tfr.cast"(%arg0) : (tensor<f32>) -> !tfr.tensor
      %1 = "tfr.cast"(%arg1) : (tensor<f32>) -> !tfr.tensor
      %2 = "tfr.cast"(%arg2) : (tensor<f32>) -> !tfr.tensor
      %3 = "tfr.build_list"(%0, %1, %2) : (!tfr.tensor, !tfr.tensor, !tfr.tensor) -> !tfr.tensor_list
      %concat = tfr.call @tf__risc_concat(%3) : (!tfr.tensor_list) -> !tfr.tensor
      %4 = "tfr.cast"(%concat) : (!tfr.tensor) -> tensor<3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/work/build_test.go

    Austin Clements <******@****.***> 1695243700 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top