Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for input_type (0.26 sec)

  1. pkg/dns/proto/nds.pb.go

    	1, // 1: istio.networking.nds.v1.NameTable.TableEntry.value:type_name -> istio.networking.nds.v1.NameTable.NameInfo
    	2, // [2:2] is the sub-list for method output_type
    	2, // [2:2] is the sub-list for method input_type
    	2, // [2:2] is the sub-list for extension type_name
    	2, // [2:2] is the sub-list for extension extendee
    	0, // [0:2] is the sub-list for field type_name
    }
    
    func init() { file_dns_proto_nds_proto_init() }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

                            const bool enable_per_channel_quantized_weight) {
      const GemmStyleOp gemm_style_op =
          *entry_func_op.getOps<GemmStyleOp>().begin();
    
      const Type input_type = entry_func_op.getArgumentTypes()[0];
      const Type filter_type = entry_func_op.getArgumentTypes()[1];
      const Type func_result_type = entry_func_op.getResultTypes()[0];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. pkg/zdsapi/zds.pb.go

    	7, // 6: istio.workload.zds.WorkloadResponse.ack:type_name -> istio.workload.zds.Ack
    	7, // [7:7] is the sub-list for method output_type
    	7, // [7:7] is the sub-list for method input_type
    	7, // [7:7] is the sub-list for extension type_name
    	7, // [7:7] is the sub-list for extension extendee
    	0, // [0:7] is the sub-list for field type_name
    }
    
    func init() { file_zdsapi_zds_proto_init() }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. pkg/workloadapi/security/authorization.pb.go

    	8,  // 13: istio.security.StringMatch.presence:type_name -> google.protobuf.Empty
    	14, // [14:14] is the sub-list for method output_type
    	14, // [14:14] is the sub-list for method input_type
    	14, // [14:14] is the sub-list for extension type_name
    	14, // [14:14] is the sub-list for extension extendee
    	0,  // [0:14] is the sub-list for field type_name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. pkg/test/echo/proto/echo.pb.go

    	7, // 9: proto.EchoTestService.ForwardEcho:output_type -> proto.ForwardEchoResponse
    	8, // [8:10] is the sub-list for method output_type
    	6, // [6:8] is the sub-list for method input_type
    	6, // [6:6] is the sub-list for extension type_name
    	6, // [6:6] is the sub-list for extension extendee
    	0, // [0:6] is the sub-list for field type_name
    }
    
    func init() { file_test_echo_proto_echo_proto_init() }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

                                const llvm::SmallVectorImpl<Attribute>& input_types,
                                llvm::SmallVectorImpl<Value>& input_values) const {
        if (input_types.size() <= 1) return;
    
        Type target_input_type = mlir::cast<TypeAttr>(input_types[0]).getValue();
        auto result_type = UnrankedTensorType::get(target_input_type);
        for (auto i = 1; i < input_types.size(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

      if (!module_op) return mlir::failure();
    
      llvm::SmallVector<XlaArgument, 4> xla_arguments;
      auto args_status = ParseXlaArguments(
          mlir::StringRefToView(input_shapes), mlir::StringRefToView(input_dtypes),
          mlir::StringRefToView(input_types), xla_arguments);
      if (!args_status.ok()) {
        LOG(ERROR) << args_status;
        return mlir::failure();
      }
    
      XlaCompilationResult compilation_result;
      auto compilation_status =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

        const std::vector<std::string>& input_dtypes,
        const std::vector<std::optional<std::vector<int>>>& input_shapes,
        const std::vector<std::string>& output_arrays,
        const std::vector<std::string>& control_output_arrays,
        const GraphdefToMlirOptions& import_options, mlir::MLIRContext* context) {
      auto module_or = GraphdefToMlirImport(
          input, input_arrays, input_dtypes, input_shapes, output_arrays,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            output.text == "${[REMOVED]}"
        }
    
        def "broken symlink in #inputType.simpleName fails validation"() {
            enableProblemsApiCheck()
            def brokenInputFile = file('brokenInput').createLink("brokenInputFileTarget")
            buildFile << """
                class CustomTask extends DefaultTask {
                    @${inputType.simpleName} File brokenInputFile
    
                    @TaskAction execute() {}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

              file_prefix_arg_type,
              NameLoc::get(builder.getStringAttr(kTfFilePrefix)));
    
      SmallVector<Type> input_types(main_func_op.getArgumentTypes());
      input_types.emplace_back(file_prefix_arg_type);
    
      main_func_op.setType(
          builder.getFunctionType(input_types, main_func_op.getResultTypes()));
    
      // Add "__tf_file_prefix" to the "tf_saved_model.index_path" attribute for the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top