Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 251 for GetOutput (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

      LogicalResult matchAndRewrite(TF::UniformQuantizeOp op,
                                    PatternRewriter &rewriter) const override {
        auto output_type = GetUniformQuantizedType(
            op, op.getOutput().getType(), op.getScales(), op.getZeroPoints(),
            /*expressed_type=*/rewriter.getF32Type(), op.getQuantizationMinVal(),
            op.getQuantizationMaxVal(), op.getQuantizationAxis(), rewriter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutorTest.groovy

                    .build()
            }
            1 * implicitInput1.getInput() >> '/foo/bar'
            1 * implicitInput1.getOutput() >> 'abcdef012'
            1 * implicitInput2.getInput() >> '/foo/baz'
            1 * implicitInput2.getOutput() >> 'abcdef987'
            1 * validator.isValid(cachePolicy, _) >> true
            1 * service.isUpToDate('/foo/bar', 'abcdef012') >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testKit/junitQuickstart/kotlin/src/test/java/org/gradle/sample/BuildLogicFunctionalTest.java

            BuildResult result = GradleRunner.create()
                .withProjectDir(testProjectDir)
                .withArguments("helloWorld")
                .build();
    
            assertTrue(result.getOutput().contains("Hello world!"));
            assertEquals(SUCCESS, result.task(":helloWorld").getOutcome());
        }
    
        private void writeFile(File destination, String content) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.cc

      auto reshape = builder.create<TF::ReshapeOp>(
          loc, ArrayRef<Type>{element_type},
          ArrayRef<Value>{slice,
                          GetR1Const(element_type.getShape(), builder, loc)});
      return reshape.getOutput();
    }
    
    Value SetElement(Value index, Value buffer, Value element, OpBuilder builder,
                     Location loc) {
      auto buffer_type = mlir::cast<RankedTensorType>(buffer.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

                                     preceding_cast.getOut().getType()) {
            return failure();
          }
          raw_data_op.getOutput().replaceAllUsesWith(redundant_cast.getArg());
        } else {
          // If the argument of cast op is input, then simply remove the RawData op.
          raw_data_op.getOutput().replaceAllUsesWith(preceding_cast.getOut());
        }
        return success();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             * The type of value returned here depends on the {@link UnitOfWork} implmenetation.
             */
            // TODO Parametrize UnitOfWork with this generated result
            @Nullable
            Object getOutput(File workspace);
    
            /**
             * Whether the outputs of this execution should be stored in the build cache.
             */
            default boolean canStoreOutputsInCache() {
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultBuildResult.java

        private final List<BuildTask> tasks;
    
        public DefaultBuildResult(String output, List<BuildTask> tasks) {
            this.output = output;
            this.tasks = tasks;
        }
    
        @Override
        public String getOutput() {
            return output;
        }
    
        @Override
        public List<BuildTask> getTasks() {
            return Collections.unmodifiableList(tasks);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util_test.cc

            host_tensor, device_, device_tensor));
    
        tensors_.push_back(device_tensor);
        return device_tensor;
      }
    
      // Gets the `output_index`-th output set in the context_
      Tensor* GetOutput(int output_index) {
        CHECK_LT(output_index, context_->num_outputs());
        Tensor* device_tensor = context_->mutable_output(output_index);
        managed_outputs_.resize(context_->num_outputs());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseSourceDirectory.java

            return path;
        }
    
        public List<String> getExcludes() {
            return excludes;
        }
    
        public List<String> getIncludes() {
            return includes;
        }
    
        public String getOutput() {
            return output;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyPlugin.java

                JvmFeatureInternal mainFeature = JavaPluginHelper.getJavaComponent(project).getMainFeature();
                groovyDoc.setClasspath(mainFeature.getSourceSet().getOutput().plus(mainFeature.getSourceSet().getCompileClasspath()));
    
                SourceDirectorySet groovySourceSet = mainFeature.getSourceSet().getExtensions().getByType(GroovySourceDirectorySet.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top