Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for output1 (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

      }
    }
    
    // -----
    
    // Tests that outputs are correctly merged and fed from TPU computation for
    // tiled output sharding with MAXIMAL sharding for one of the output and OTHER
    // for latter output.
    
    // The following OpSharding is used for TPU computation outputs in below test:
    // Proto debug string:
    //  output 0
    //  type: MAXIMAL
    //  tile_assignment_dimensions: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          return op->emitOpError()
                 << "output #" << i << " should be " << expected_output_type
                 << " instead got " << output.getType();
      }
      return success();
    }
    
    mlir::LogicalResult SplitOp::verify() {
      SplitOp op = *this;
      int64_t num_splits = op.getNumSplits();
      if (op.getNumResults() != num_splits)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy filter-output { type filter hook output priority -110 ; }
    		add rule ip kube-proxy filter-output ct state new jump service-endpoints-check
    		add rule ip kube-proxy filter-output ct state new jump firewall-check
    		add chain ip kube-proxy filter-output-post-dnat { type filter hook output priority -90 ; }
    		add rule ip kube-proxy filter-output-post-dnat ct state new jump cluster-ips-check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      return rewriter.create<arith::ConstantOp>(output.getLoc(), attr_type, attr);
    }
    
    Value ExpandedDynamicShape(PatternRewriter& rewriter, Value input,
                               DenseIntElementsAttr broadcast_dimensions,
                               Value output) {
      assert(mlir::cast<ShapedType>(output.getType()) &&
             "output type must be of ShapedType");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    }
    
    void CreateSubgraphTouchingRefVar(const Scope& s) {
      Output variable =
          ops::Variable(s.WithOpName("variable"), PartialTensorShape{}, DT_FLOAT);
      Output read = ops::Identity(s.WithOpName("read_ref_var"), variable);
      Output neg = ops::Negate(s.WithOpName("negate_ref"), read);
      Output add = ops::Add(s.WithOpName("add_ref"), neg, neg);
    
      Output constant =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      // expected-error @+1 {{rank of input tensor is 2. rank of output tensor is expected to be 1, instead of 2.}}
      %0 = "tf.Bitcast"(%arg0) : (tensor<3x2xi16>) -> tensor<3x2xi32>
      func.return %0 : tensor<3x2xi32>
    }
    
    // -----
    
    func.func @testBitcast_v5(%arg0: tensor<3x2xi16>) -> tensor<2xi32> {
      // expected-error @+1 {{the 0th dim of output tensor is 2. It is not equal to the one in input tensor, which is 3}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        }
    
        func.return %1 : tensor<2xi32>
      }
    
      //  Tests that all inputs to a function are passed and all outputs are returned for an outside compilation cluster
      //  with dynamic-shaped inputs/outputs. This test case tests that if another outside compiled returns
      //  only statically-shaped outputs, the value consumed by an outside compiled op with some dynamically shaped inputs is
      //  sent back to the host.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                if (!s.ok()) {
                  return;
                }
                node_map[n] = copy;
              }
    
              // Only handle input edges. Output edges will be added later as
              // its output nodes' input edges.
              for (auto e : n->in_edges()) {
                if (node_map.find(e->src()) == node_map.end()) {
                  s = errors::Internal("Cannot find node image for ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %cst = "tfl.no_value"() {value = unit} : () -> none
      // expected-error @+1 {{expect output type has rank = 4, got output type tensor<64x84x32xf32>}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        func.return %0 : tensor<*xi32>
      }
    
      // CHECK-LABEL: func @call_in_graph_1
      func.func @call_in_graph_1(%arg0: tensor<?x?x?x?xbf16>, %arg1: tensor<5x5x1x32xbf16>) -> tensor<*xbf16> {
        // CHECK: tf_executor.fetch %outputs : tensor<?x?x?x32xbf16>
        %0 = tf_executor.graph {
          %1:2 = tf_executor.island wraps "tf.PartitionedCall"(%arg0, %arg1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
Back to top