Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,046 for SplitV (0.17 sec)

  1. tensorflow/compiler/mlir/tfr/examples/pad/ops_defs.py

          left_padding, _ = tf.raw_ops.SplitV(
              value=rarray,
              size_splits=[left_padding_size, -1],
              axis=i,
              num_split=2)
          _, right_padding = tf.raw_ops.SplitV(
              value=rarray,
              size_splits=[-1, right_padding_size],
              axis=i,
              num_split=2)
        else:
          _, left_padding = tf.raw_ops.SplitV(
              value=rarray,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 01 05:00:29 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.h

    };
    
    // Unroll split into a bunch of slice ops.
    struct UnrollSplit : public OpRewritePattern<TFL::SplitOp> {
      using OpRewritePattern<TFL::SplitOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TFL::SplitOp split_op,
                                    PatternRewriter& rewriter) const override;
    };
    
    // Unroll splitv into a bunch of slice ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 03 16:37:16 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     Const 81
     ExpandDims 3
     Fill 1
     GreaterEqual 8
     Identity 1
     Less 1
     MatMul 10
     Mul 44
     Range 1
     Rsqrt 1
     Select 19
     Shape 6
     Sigmoid 24
     Snapshot 8
     Softmax 1
     Split 8
     SplitV 6
     Square 1
     Squeeze 1
     StridedSlice 1
     Sum 2
     Tanh 17
    cluster 12 size 6
     Add 1
     All 1
     Const 2
     GreaterEqual 1
     LogicalOr 1
    cluster 15 size 614
     Add 22
     AddN 41
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/debug/dwarf/testdata/split.c

    // gcc -gsplit-dwarf split.c -o split.elf
    
    int main() 
    {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 17:57:56 UTC 2015
    - 59 bytes
    - Viewed (0)
  6. 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)
  7. src/debug/dwarf/testdata/split.elf

    Austin Clements <******@****.***> 1442162945 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 17:57:56 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/test/util/yml/parts.go

    	"sigs.k8s.io/yaml"
    )
    
    const (
    	joinSeparator = "\n---\n"
    )
    
    // Split where the '---' appears at the very beginning of a line. This will avoid
    // accidentally splitting in cases where yaml resources contain nested yaml (which
    // is indented).
    var splitRegex = regexp.MustCompile(`(^|\n)---`)
    
    // SplitYamlByKind splits the given YAML into parts indexed by kind.
    func SplitYamlByKind(content string) map[string]string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top