Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for if_builder (0.1 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      if_builder.Attr("then_branch", host_then_branch);
      if_builder.Attr("else_branch", host_else_branch);
      if_builder.Attr(kXlaHasHostTransferAttrName, true);
      if_builder.Attr(xla_cluster_attr_name, xla_cluster_name);
      if_builder.Attr(outside_compilation_attr_name, outside_compilation_name);
      if_builder.Input(recv_pred_node->name(), 0, DT_BOOL);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        "StringAttr":$fusedActivationFunction),
      [{
        buildFusedBroadcastableBinOp(
           &$_builder, $_state, lhs, rhs, fusedActivationFunction);
      }]>;
    
    def TFL_ComparisonBinaryBuilder :
      OpBuilder<(ins "Value":$lhs, "Value":$rhs),
      [{
        buildComparisonBinOp(&$_builder, $_state, lhs, rhs);
      }]>;
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          )
          signature_map = {'main': signature}
    
          tags = {tag_constants.SERVING}
          v1_builder = builder.SavedModelBuilder(self._input_saved_model_path)
          v1_builder.add_meta_graph_and_variables(
              sess, tags, signature_def_map=signature_map
          )
          v1_builder.save()
    
        quantization_options = quant_opts_pb2.QuantizationOptions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	}
    
    	if argLen > sys.ExecArgLengthLimit {
    		return true
    	}
    
    	// On the Go build system, use response files about 10% of the
    	// time, just to exercise this codepath.
    	isBuilder := os.Getenv("GO_BUILDER_NAME") != ""
    	if isBuilder && rand.Intn(10) == 0 {
    		return true
    	}
    
    	return false
    }
    
    // encodeArg encodes an argument for response file writing.
    func encodeArg(arg string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top