Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for stdx (0.08 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/go.mod

    	github.com/felixge/httpsnoop v1.0.3 // indirect
    	github.com/fsnotify/fsnotify v1.7.0 // indirect
    	github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/go-logr/stdr v1.2.2 // indirect
    	github.com/go-openapi/jsonpointer v0.19.6 // indirect
    	github.com/go-openapi/jsonreference v0.20.2 // indirect
    	github.com/go-openapi/swag v0.22.4 // indirect
    	github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateMoveTransposesPass();
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLayoutAssignmentPass();
    
    // Guarantee that all FuncOp's have a single use.
    std::unique_ptr<OperationPass<ModuleOp>> CreateGuaranteeAllFuncsOneUsePass();
    
    // Optional pass which will unroll BatchMatMul and use only MatMul
    std::unique_ptr<OperationPass<func::FuncOp>> CreateUnrollBatchMatMulPassPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/go.mod

    	github.com/dustin/go-humanize v1.0.1 // indirect
    	github.com/felixge/httpsnoop v1.0.3 // indirect
    	github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/go-logr/stdr v1.2.2 // indirect
    	github.com/go-openapi/jsonpointer v0.19.6 // indirect
    	github.com/go-openapi/jsonreference v0.20.2 // indirect
    	github.com/go-openapi/swag v0.22.4 // indirect
    	github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

      return device_name_str.str();
    }
    
    std::optional<std::vector<float>> GetPerDeviceCosts(
        const std::map<std::string, uint8_t>& hardware_map, mlir::Operation* op) {
      auto device_costs_attr =
          op->getAttrOfType<mlir::DictionaryAttr>("per_device_costs");
      if (device_costs_attr == nullptr) return std::nullopt;
    
      std::vector<float> device_costs(hardware_map.size(), -1.f);
    
      for (const auto& kv : hardware_map) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

    };
    
    }  // namespace tensorflow
    
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    tensorflow::CreateTensorFlowGraphOptimizationPass(
        std::vector<tensorflow::GraphOptimizationPass*> tf_passes) {
      return std::make_unique<GraphOptPass>(std::move(tf_passes));
    }
    
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    tensorflow::CreateTensorFlowGraphOptimizationPass(
        const std::vector<std::string>& pass_names) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    absl::Status CompileTensorflowGraphToHlo(
        const std::variant<tpu::MlirToHloArgs, tpu::FunctionToHloArgs>& computation,
        const tpu::TPUCompileMetadataProto& metadata, bool use_tuple_args,
        const XlaShapeLayoutHelpers::ShapeDeterminationFns
            shape_determination_funcs,
        const std::vector<tensorflow::TensorShape>& arg_shapes,
        std::vector<tpu::ShardingAndIndex>* arg_core_mapping,
        std::vector<std::vector<xla::Shape>>* per_core_arg_shapes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      auto client =
          xla::ClientLibrary::GetOrCreateCompileOnlyClient(cpu_platform).value();
    
      std::vector<TensorShape> arg_shapes;
      TPUCompileMetadataProto metadata_proto;
      bool use_tuple_args = true;
      std::vector<ShardingAndIndex> arg_core_mapping;
      std::vector<std::vector<xla::Shape>> per_core_arg_shapes;
      std::vector<std::unique_ptr<mlir::Pass>> custom_legalization_passes;
    
      // This doesn't actually compile correctly.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

      device_assignment.Serialize(&device_assignment_proto);
    
      return std::pair<TPUDevicesAndHosts, xla::DeviceAssignmentProto>(
          std::move(devices_and_hosts), std::move(device_assignment_proto));
    }
    
    mlir::LogicalResult GetTopology(mlir::tf_device::ClusterOp cluster,
                                    std::string& topology) {
      mlir::StringAttr topology_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

                                          std::string* device_type,
                                          std::string* platform_name);
    
    // Allow registering a StreamExecutor plugin using a function (used for
    // testing).
    absl::Status InitStreamExecutorPlugin(SEInitPluginFn init_fn,
                                          std::string* device_type,
                                          std::string* platform_name);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      float float_min = std::min(0.f, float_quant_params.min()->Get(0));
      float float_max = std::max(0.f, float_quant_params.max()->Get(0));
      if (symmetric) {
        // When the symmetric case, ConvertStatsToQDQs in PrepareQuantizePass
        // updates the min and max values into bigger absolute values.
        float_max = std::max(std::abs(float_min), std::abs(float_max));
        float_min = -float_max;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top