Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,083 for split3 (0.32 sec)

  1. tensorflow/c/c_api_function_test.cc

           {{func_op, 0}, {func_op, 1}}, {{1, 2}, {5, 6}});
      VerifyFDef({"split3_const0", "split3_1"}, M({{"feed"}}),
                 M({{"split3"}, {"split3_0"}}),
                 {{"split3_const0:output:0", "split3_1:0"},
                  {"feed", "split3_1:1"},
                  {"split3_1:output:0", "split3"},
                  {"split3_1:output:2", "split3_0"}},
                 {});
    }
    
    TEST_F(CApiFunctionTest, UsingTwoOutputsOfSplitAsInputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/splice.go

    */
    
    package runtime
    
    import (
    	"bytes"
    	"io"
    )
    
    // Splice is the interface that wraps the Splice method.
    //
    // Splice moves data from given slice without copying the underlying data for
    // efficiency purpose. Therefore, the caller should make sure the underlying
    // data is not changed later.
    type Splice interface {
    	Splice([]byte)
    	io.Writer
    	Reset()
    	Bytes() []byte
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/simple-split.yaml

    #$ Used in:
    #$ - site-src/guides/traffic-splitting.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: simple-split
    spec:
      rules:
      - backendRefs:
        - name: foo-v1
          port: 8080
          weight: 90
        - name: foo-v2
          port: 8080
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 285 bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Streams.java

          Spliterator<? extends T> splitr = stream.spliterator();
          splitrsBuilder.add(splitr);
          characteristics &= splitr.characteristics();
          estimatedSize = LongMath.saturatedAdd(estimatedSize, splitr.estimateSize());
        }
        return StreamSupport.stream(
                CollectSpliterators.flatMap(
                    splitrsBuilder.build().spliterator(),
                    splitr -> (Spliterator<T>) splitr,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/split-merged-operands.mlir

    // RUN: tf-opt -tfl-split-merged-operands %s | FileCheck %s
    
    func.func @testSingleLstm(%arg0: tensor<4x4xf32>, %arg1: tensor<4xf32>, %arg2: tensor<4x4x4xf32>) -> tensor<4x4x4xf32> {
      // CHECK-LABEL: testSingleLstm
      // CHECK-DAG:  %[[CST_0:.*]] = "tfl.pseudo_const"() <{value = dense<0.000000e+00> : tensor<4x4xf32>}> : () -> tensor<4x4xf32>
      // CHECK-DAG:  %[[CST_1:.*]] = "tfl.pseudo_const"() <{value = dense<0.000000e+00> : tensor<4x4xf32>}> : () -> tensor<4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/critical.go

    					blocks[argID] = d
    					if f.pass.debug > 0 {
    						f.Warnl(p.Pos, "split critical edge")
    					}
    				} else {
    					reusedBlock = true
    				}
    			} else {
    				// no existing block, so allocate a new block
    				// to place on the edge
    				d = f.NewBlock(BlockPlain)
    				d.Pos = p.Pos
    				if f.pass.debug > 0 {
    					f.Warnl(p.Pos, "split critical edge")
    				}
    			}
    
    			// if this not the first argument for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

      llvm::SmallVector<mlir::TF::SplitOp, 4> split_ops_for_tiled_input;
      split_ops_for_tiled_input.reserve(
          input_sharding.tile_assignment_devices_size());
    
      // Creates a tree of split nodes for sharding tiled inputs. Splits nodes
      // are created such that input data is sharded in row major order.
      // Split nodes at ith depth from the original input node represent nodes
      // that split the input data at i-th dimension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Splitter.java

        return strategy.iterator(this, sequence);
      }
    
      /**
       * Splits {@code sequence} into string components and returns them as an immutable list. If you
       * want an {@link Iterable} which may be lazily evaluated, use {@link #split(CharSequence)}.
       *
       * @param sequence the sequence of characters to split
       * @return an immutable list of the segments split from the parameter
       * @since 15.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Splitter.java

        return strategy.iterator(this, sequence);
      }
    
      /**
       * Splits {@code sequence} into string components and returns them as an immutable list. If you
       * want an {@link Iterable} which may be lazily evaluated, use {@link #split(CharSequence)}.
       *
       * @param sequence the sequence of characters to split
       * @return an immutable list of the segments split from the parameter
       * @since 15.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/util/cdi/cdi.go

    		return "", "", device
    	}
    
    	parts := strings.SplitN(device, "=", 2)
    	if len(parts) != 2 || parts[0] == "" || parts[1] == "" {
    		return "", "", device
    	}
    
    	name := parts[1]
    	vendor, class := parseQualifier(parts[0])
    	if vendor == "" {
    		return "", "", device
    	}
    
    	return vendor, class, name
    }
    
    // parseQualifier splits a device qualifier into vendor and class.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top