Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for test_func_name (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-call.pbtxt

          }
        }
      }
    }
    node {
      name: "func_call"
      op: "test_func_name"
      input: "x"
      attr {
        key: "_disable_call_shape_inference"
        value {
          b: true
        }
      }
      attr {
        key: "_tpu_replicate"
        value {
          s: "cluster"
        }
      }
    }
    library {
      function {
        signature {
          name: "test_func_name"
          input_arg {
            name: "a_0"
            type: DT_INT32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-resource-args.pbtxt

    # `tf._resource_arg_unique_id` argument attribute of the function
    # @test_func_name0.
    
    # CHECK:  func @main
    # CHECK:    tf_executor.graph
    # CHECK:      "tf.VarHandleOp"()
    # CHECK:      "tf.LegacyCall"
    # CHECK-SAME:   <{_disable_call_shape_inference = true, f = @test_func_name0}> {device = ""}
    # CHECK:      tf_executor.fetch
    # CHECK:    return
    # CHECK:  func private @test_func_name0
    # CHECK-SAME:   tf._resource_arg_unique_id = 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/legalize_tfg.mlir

      tfg.func @test_func_name0(%test_func_name0: tensor<*x!tf_type.resource> {tf._output_shapes = #tf_type.shape<*>, tf._resource_arg_unique_id = 0 : i64, tfg.name = "test_func_name0"},
                                %test_func_name01: tensor<*x!tf_type.resource> {tf._output_shapes = #tf_type.shape<*>, tf._resource_arg_unique_id = 0 : i64, tfg.name = "test_func_name01"})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-resource-args.mlir

        tf_executor.fetch %outputs_0 : tensor<*x!tf_type.resource>
      }
      func.return %0 : tensor<*x!tf_type.resource>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

                                       StringRef name_loc_id) {
        if (name_loc_id.contains("@")) {
          new_unit.set_node_name(name_loc_id.split('@').first.str());
          new_unit.set_func_name(name_loc_id.split('@').second.str());
        } else {
          new_unit.set_node_name(name_loc_id.str());
        }
      };
    
      ArrayRef<Location> locations = mlir::cast<FusedLoc>(loc).getLocations();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/debugging/dump_tensor_op.cc

        // Fetch func_name and node_name from attributes and save as proto.
        quantization::UnitWiseQuantizationSpec::QuantizationUnit quant_unit_proto;
        quant_unit_proto.set_func_name(func_name);
        quant_unit_proto.set_node_name(node_name);
    
        string quant_unit_path = io::JoinPath(log_dir_path, "quant_unit.pb");
        OP_REQUIRES_OK(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 03:12:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          AddHostComputeKeyPlaceholder(xla_cluster_name, &host_graph));
    
      // Step 2: rewrite `host_func_name`, replace key placeholder with an _Arg
      // node.
      TF_RETURN_IF_ERROR(ReplaceKeyPlaceholderWithArgNode(
          xla_cluster_name, func_call_host_func_name, fld));
    
      // Step 3: build a function call node with `host_func_name`, with
      // `key_placeholder` as input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    
    	pc, curFile, _, _ := runtime.Caller(0)
    	curFileBaseName := filepath.Base(curFile)
    	testFuncName := runtime.FuncForPC(pc).Name()
    
    	timeoutMsg := "timed out here!"
    
    	tests := []struct {
    		name        string
    		mustTimeout bool
    		wantResp    string
    	}{
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top