Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 191 for output_types (0.31 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

        }
    
        private String findLineThatContains(String text, LogContent content, String outputType) {
            Optional<String> foundLine = content.getLines().stream()
                .filter(line -> line.contains(text))
                .findFirst();
            return foundLine.orElseGet(() -> {
                failOnMissingOutput("Did not find expected text in " + outputType, "Build output", text, text);
                // never returned
                return "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    		return resultError(issues.String(), apiservercel.ErrorTypeInvalid)
    	}
    	// type checker does not require the program, however the type must still be set.
    	return plugincel.CompilationResult{
    		OutputType: ast.OutputType(),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateOptimizeFunctionalOpsPass();
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateModifyIONodesPass(
        mlir::Type input_type, mlir::Type output_type);
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateModifyIONodesPass();
    
    // Creates an instance of the TensorFlow Lite dialect PostQuantizeRemoveQDQ
    // pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

            failure.assertHasCause("Could not create task ':myTask'.")
            failure.assertHasCause("Could not create task of type 'CustomTask'.")
    
            where:
            description | constructorArgs | argumentNumber | outputType
            'first'     | '123, 234'      | 1              | 'class java.lang.String'
            'last'      | '"abc", "123"'  | 2              | 'int'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_launch_util.cc

        int missing_ctx_input_prefix,
        const xla::HloInputOutputAliasConfig& input_output_alias,
        absl::Span<const int> input_mapping,
        const std::map<int, const Tensor*>& resource_vars_snapshots,
        DataType output_dtype, const TensorShape& output_shape,
        Allocator* output_allocator, bool allocate_xla_tensors, se::Stream* stream,
        bool use_multiple_streams, std::shared_ptr<se::Event> definition_event) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

          finalize_func = @finalize,
          init_func = @init,
          next_func = @next,
          operandSegmentSizes = array<i32: 1, 2, 1>,
          output_shapes = [#tf_type.shape<>],
          output_types = [!tf_type.string],
          metadata = ""} : (
                  tensor<4xf32>,
                  tensor<3xf32>,
                  tensor<!tf_type.resource>,
                  tensor<2xf32>) -> tensor<!tf_type.variant>
    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/jit/encapsulate_subgraphs_pass.cc

      if (inserted) {
        NodeDef ret_def;
        NodeDefBuilder builder(
            absl::StrCat(src_node->name(), "_", src_slot, "_retval"), kRetValOp,
            NodeDebugInfo(src_node->def()));
        DataType dtype = src_node->output_type(src_slot);
        builder.Attr("T", dtype);
        builder.Attr("index", ret_index);
        builder.Input(src_image->name(), src_slot, dtype);
        Status s = builder.Finalize(&ret_def);
        if (!s.ok()) return s;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/rc/tasks/WindowsResourceCompile.java

            this.toolChain = objectFactory.property(NativeToolChain.class);
            incrementalCompiler = getIncrementalCompilerBuilder().newCompiler(this, source, includes, macros, Providers.FALSE);
            getInputs().property("outputType", new Callable<String>() {
                @Override
                public String call() {
                    NativeToolChainInternal nativeToolChain = (NativeToolChainInternal) toolChain.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      out_data_type: TensorType;
    }
    
    table DequantizeOptions {
    }
    
    table MaximumMinimumOptions {
    }
    
    table TileOptions {
    }
    
    table ArgMaxOptions {
      output_type : TensorType;
    }
    
    table ArgMinOptions {
      output_type : TensorType;
    }
    
    table GreaterOptions {
    }
    
    table GreaterEqualOptions {
    }
    
    table LessOptions {
    }
    
    table LessEqualOptions {
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_util.cc

        Node* placeholder_node;
        if (iter == placeholders.end()) {
          NodeDefBuilder placeholder_builder(new_name, "Placeholder");
          placeholder_builder.Attr("dtype", src->output_type(src_output));
          string outside_compilation_attr;
          TF_RETURN_IF_ERROR(GetNodeAttr(dst->attrs(),
                                         outside_compilation_attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top