Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,177 for Invert (0.12 sec)

  1. src/internal/trace/oldtrace.go

    	it.seenProcs = make(map[ProcID]struct{})
    	it.procMs = make(map[ProcID]ThreadID)
    	it.lastTs = -1
    
    	evt := it.evt
    
    	// Convert from oldtracer's Strings map to our dataTable.
    	var max uint64
    	for id, s := range pr.Strings {
    		evt.strings.insert(stringID(id), s)
    		if id > max {
    			max = id
    		}
    	}
    	pr.Strings = nil
    
    	// Add all strings used for UserLog. In the old trace format, these were
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass.cc

    namespace tensorflow {
    namespace {
    struct DebuggingOpts {
      // If true, insert Print nodes to print every output from an XLA cluster.
      bool print_outputs;
    
      // If true, insert CheckNumerics nodes for every floating point typed input to
      // an XLA cluster.
      bool check_input_numerics;
    
      // If true, insert CheckNumerics nodes for every floating point typed output
      // from an XLA cluster.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

      if (epsilon_attr.getType() != fp_type) {
        // Need to convert.
        bool loses_info;
        APFloat epsilon_float = epsilon_attr.getValue();
        auto status = epsilon_float.convert(
            fp_type.getFloatSemantics(), APFloat::rmNearestTiesToEven, &loses_info);
        if ((status & (~APFloat::opInexact)) != APFloat::opOK) {
          op->emitWarning() << "Could not convert batch_norm epsilon to target fp "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

          const auto& variables_iter = objects.variables.find(node_id);
          if (variables_iter == objects.variables.end()) {
            return absl::FailedPreconditionError(absl::StrCat(
                "Tried to convert node id ", node_id,
                " of type variable to tensor but the variable wasn't initialized"));
          }
          *handle = variables_iter->second->handle();
          return Status();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      bool is_new_function = visited_functions.insert(function).second;
      if (!is_new_function) return absl::OkStatus();
    
      auto function_name = FindFunctionName(configs, function);
    
      // TODO(fengliuai): use a small flib_def to reduce overhead
      absl::flat_hash_set<Node*> control_ret_nodes;
      TF_ASSIGN_OR_RETURN(
          auto sub_graph,
          Exporter::Convert(configs, tf_dialect, symbol_table, function, flib_def,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      bool is_new_function = visited_functions.insert(function).second;
      if (!is_new_function) return absl::OkStatus();
    
      auto function_name = FindFunctionName(configs, function);
    
      // TODO(fengliuai): use a small flib_def to reduce overhead
      absl::flat_hash_set<Node*> control_ret_nodes;
      TF_ASSIGN_OR_RETURN(
          auto sub_graph,
          Exporter::Convert(configs, tf_dialect, symbol_table, function, flib_def,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/a.out.go

    	ALDGR
    	ALGDR
    
    	// convert from int32/int64 to float/float64
    	ACEFBRA
    	ACDFBRA
    	ACEGBRA
    	ACDGBRA
    
    	// convert from float/float64 to int32/int64
    	ACFEBRA
    	ACFDBRA
    	ACGEBRA
    	ACGDBRA
    
    	// convert from uint32/uint64 to float/float64
    	ACELFBR
    	ACDLFBR
    	ACELGBR
    	ACDLGBR
    
    	// convert from float/float64 to uint32/uint64
    	ACLFEBR
    	ACLFDBR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/config/eclipse/formatter/java.xml

    <setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon" value="do not insert"/>
    <setting id="org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator" value="do not insert"/>
    <setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try" value="do not insert"/>
    <setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments" value="do not insert"/>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Mar 23 21:27:06 UTC 2015
    - 30.5K bytes
    - Viewed (0)
  9. src/config/eclipse/formatter/javascript.xml

    <setting id="org.eclipse.wst.jsdt.core.formatter.insert_space_after_colon_in_labeled_statement" value="insert"/>
    <setting id="org.eclipse.wst.jsdt.core.formatter.blank_lines_between_type_declarations" value="0"/>
    <setting id="org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_method_declaration" value="do not insert"/>
    <setting id="org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_enum_declarations" value="do not insert"/>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Mar 23 21:27:06 UTC 2015
    - 29.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        VLOG(2) << "MLIR module is not updated. Using the original graph. "
                << "Do not convert mlir module back to graph";
        return absl::OkStatus();
      }
      GraphExportConfig export_config;
      absl::flat_hash_set<Node*> control_ret_nodes;
    
      timings.Reset({kTfMlirCategory, "convert_mlir_to_graph"});
      // Some or all passes are enabled. Convert MLIR module and return back
      // resulted graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top