Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for input_type (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      // Build the function type. Region arguments and extern values together
      // become the function arguments, with region arguments going first.
      auto input_types = llvm::to_vector<4>(entry.getArgumentTypes());
      for (auto input : extern_values) input_types.push_back(input.getType());
    
      // Terminator operands and pass through extern values (if enabled) together
      // become the function return values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

        }
    
        static String convertingValueSourceImpl(String valueSourceClassName, String inputType, String returnType, String conversion) {
            """
            abstract class $valueSourceClassName implements ${ValueSource.name}<$returnType, Params> {
                interface Params extends ${ValueSourceParameters.name} {
                    Property<$inputType> getInput()
                }
    
                @Override $returnType obtain() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            given:
            buildFile << """
                abstract class TaskWithResultInput extends DefaultTask {
    
                    @Input
                    abstract ListProperty<${inputType}> getInput()
    
                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    
                    @TaskAction void action() {
                        println(input.get())
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/build_xla_ops_pass.cc

      MemoryTypeVector input_mtypes, output_mtypes;
      DeviceType device_type("");
      TF_RETURN_IF_ERROR(
          DeviceNameToDeviceType(n->assigned_device_name(), &device_type));
      TF_RETURN_IF_ERROR(MemoryTypesForNode(root.graph()->op_registry(),
                                            device_type, n->def(), &input_mtypes,
                                            &output_mtypes));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

        private static final String RETURN_BOOLEAN = getMethodDescriptor(Type.BOOLEAN_TYPE);
        private static final String RETURN_OBJECT = getMethodDescriptor(OBJECT);
        private static final String RETURN_INT = getMethodDescriptor(Type.INT_TYPE);
        private static final String RETURN_VOID_FROM_STRING = getMethodDescriptor(Type.VOID_TYPE, STRING);
        private static final String RETURN_OBJECT_FROM_STRING = getMethodDescriptor(OBJECT, STRING);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      OpBuilder builder(module);
    
      std::vector<Type> input_types = GetValueTypes(inputs);
      std::vector<Type> output_types = GetValueTypes(outputs);
      builder.setInsertionPointToEnd(&module.getBodyRegion().back());
      func::FuncOp func_op = builder.create<func::FuncOp>(
          module.getLoc(), name,
          builder.getFunctionType(input_types, output_types));
      func_op.setPrivate();
    
      return func_op;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util.h

      }
    
      bool OpProducesOrConsumesVariant(const Node& node) const {
        auto is_variant = [](DataType dtype) { return dtype == DT_VARIANT; };
        return absl::c_any_of(node.input_types(), is_variant) ||
               absl::c_any_of(node.output_types(), is_variant);
      }
    
      bool HasXLAKernel(const Node& node,
                        string* uncompilable_reason = nullptr) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        private static final String RETURN_PRIMITIVE_SHORT = getMethodDescriptor(Type.SHORT_TYPE);
        private static final String RETURN_INT = getMethodDescriptor(Type.INT_TYPE);
        private static final String RETURN_PRIMITIVE_LONG = getMethodDescriptor(Type.LONG_TYPE);
        private static final String RETURN_PRIMITIVE_FLOAT = getMethodDescriptor(Type.FLOAT_TYPE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      } else {
        // Graphdef import path.
        module = tensorflow::LoadFromGraphdefOrMlirSource(
            input_file_name, input_mlir, use_splatted_constant, custom_opdefs,
            specs, debug_info_file, input_arrays, input_dtypes, input_shapes,
            output_arrays, control_output_arrays, &source_mgr, &context);
      }
    
      // If errors occur, the library call in the above already logged the error
      // message. So we can just return here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

        private static final String RETURN_BOOLEAN_FROM_OBJECT = getMethodDescriptor(Type.BOOLEAN_TYPE, OBJECT_TYPE);
        private static final String RETURN_OBJECT_FROM_INT = getMethodDescriptor(OBJECT_TYPE, Type.INT_TYPE);
    
        private static final String LAMBDA_METAFACTORY_TYPE = getType(LambdaMetafactory.class).getInternalName();
        private static final String LAMBDA_METAFACTORY_METHOD_DESCRIPTOR = getMethodDescriptor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top