Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for output0 (0.15 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

              inputs={'x1': in_placeholder_1}, outputs={'output1': output_tensor_1}
          )
    
          in_placeholder_2, output_tensor_2 = self._create_simple_tf1_conv_model()
          sig_def_2 = signature_def_utils_impl.predict_signature_def(
              inputs={'x2': in_placeholder_2}, outputs={'output2': output_tensor_2}
          )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            throw new MyRuntimeException();
          }
        }
        Fallback fallback = new Fallback();
        SettableFuture<Object> input = SettableFuture.create();
    
        ListenableFuture<Object> output = catching(input, Throwable.class, fallback, directExecutor());
        fallback.output = output;
    
        input.setException(new MyException());
        assertTrue(output.isCancelled());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            throw new MyRuntimeException();
          }
        }
        Fallback fallback = new Fallback();
        SettableFuture<Object> input = SettableFuture.create();
    
        ListenableFuture<Object> output = catching(input, Throwable.class, fallback, directExecutor());
        fallback.output = output;
    
        input.setException(new MyException());
        assertTrue(output.isCancelled());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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/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)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return op.emitError() << "output 'sparse_indices' should have same length "
                              << "as attribute 'sparse_types'";
      }
      if (op.getSparseShapes().size() != sparse_types_count) {
        return op.emitError() << "output 'sparse_shapes' should have same length "
                              << "as attribute 'sparse_types'";
      }
    
      // Validate ragged variadic output lengths.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. 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)
Back to top