Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for noOutput (0.22 sec)

  1. tensorflow/c/c_api.cc

      }
      return attr;
    }
    
    TensorId ToTensorId(const TF_Output& output) {
      return TensorId(output.oper->node.name(), output.index);
    }
    
    #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD)
    std::vector<tensorflow::Output> OutputsFromTFOutputs(TF_Output* tf_outputs,
                                                         int n) {
      std::vector<tensorflow::Output> outputs(n);
      for (int i = 0; i < n; ++i) {
        outputs[i] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        def output = outputs.file(input.name + ".txt")
                        assert output.parentFile.directory && output.parentFile.list().length == 0
                        println "Transforming \${input.name} to \${output.name}"
                        output.text = String.valueOf(input.length())
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                            ${
                // Do not check for an empty output for incremental transforms
                incremental
                    ? ""
                    : "assert output.directory && output.list().length == 0"
            }
                            new File(output, "child.txt").text = "transformed"
                        }
                        def outputDirectory = output.parentFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = [{While loop}];
    
      let description = [{
        output = input; while (cond(output)) { output = body(output) }
    
        While loop where all values are passes through arguments with implicit
        capture.
    
        input: A list of input tensors whose types are T.
        output: A list of output tensors whose types are T.
        cond: A region that takes 'input' and returns a boolean scalar tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            Returns:
              A map of: output key -> output result.
            """
            if math_ops.reduce_sum(x) > 10.0:
              out = math_ops.matmul(x, self.filters_0)
              out = nn_ops.bias_add(out, self.bias_0)
              return {'output': out}
    
            out = math_ops.matmul(x, self.filters_1)
            out = nn_ops.bias_add(out, self.bias_1)
            return {'output': out}
    
        model = IfModel()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (output_ty.getRank() != expected_output_rank)
        return op.emitOpError()
               << "found invalid output rank, expected " << expected_output_rank
               << " but got " << output_ty.getRank();
    
      // Check output batch dim with potential broadcasting.
      ArrayRef<int64_t> output_shape = output_ty.getShape();
      for (int i = 0; i < result_batch_shape.size(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top