Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for handle_dtype (0.17 sec)

  1. tensorflow/compiler/jit/shape_inference.h

    namespace tensorflow {
    
    struct InferredShape {
      // Shape of the argument tensor.
      PartialTensorShape shape;
    
      // If the argument is a resource variable, the type and shape of the
      // variable's value.
      DataType handle_type = DT_INVALID;
      PartialTensorShape handle_shape;
    };
    typedef std::unordered_map<string, std::vector<InferredShape>> GraphShapeInfo;
    
    // Infer shapes for all Tensors in a graph, and save them in a map.  The vector
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-as-function-control-ret.pbtxt

        key: "index"
        value {
          i: 0
        }
      }
    }
    node {
      name: "arg1"
      op: "_Arg"
      attr {
        key: "T"
        value {
          type: DT_RESOURCE
        }
      }
      attr {
        key: "_handle_dtypes"
        value {
          list {
            type: DT_FLOAT
          }
        }
      }
      attr {
        key: "_handle_shapes"
        value {
          list {
            shape {
            }
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. src/log/slog/handler_test.go

    	ctx := context.Background()
    	count := 1000
    	for _, handlerType := range []string{"text", "json"} {
    		t.Run(handlerType, func(t *testing.T) {
    			var buf bytes.Buffer
    			var h Handler
    			switch handlerType {
    			case "text":
    				h = NewTextHandler(&buf, nil)
    			case "json":
    				h = NewJSONHandler(&buf, nil)
    			default:
    				t.Fatalf("unexpected handlerType %q", handlerType)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. pkg/test/echo/proto/echo_grpc.pb.go

    // It's only intended for direct use with grpc.RegisterService,
    // and not to be introspected or modified (even as a copy)
    var EchoTestService_ServiceDesc = grpc.ServiceDesc{
    	ServiceName: "proto.EchoTestService",
    	HandlerType: (*EchoTestServiceServer)(nil),
    	Methods: []grpc.MethodDesc{
    		{
    			MethodName: "Echo",
    			Handler:    _EchoTestService_Echo_Handler,
    		},
    		{
    			MethodName: "ForwardEcho",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 01:14:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-as-function.pbtxt

        key: "index"
        value {
          i: 0
        }
      }
    }
    node {
      name: "args_1"
      op: "_Arg"
      attr {
        key: "T"
        value {
          type: DT_RESOURCE
        }
      }
      attr {
        key: "_handle_dtypes"
        value {
          list {
            type: DT_FLOAT
          }
        }
      }
      attr {
        key: "_handle_shapes"
        value {
          list {
            shape {
              dim {
                size: 3
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 00:18:34 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/zsyscall_windows.go

    	ret = uintptr(r0)
    	return
    }
    
    func RtlVirtualUnwind(handlerType uint32, baseAddress uintptr, pc uintptr, entry uintptr, ctxt uintptr, data *uintptr, frame *uintptr, ctxptrs *byte) (ret uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/shape_inference_test.cc

                               &shape_info));
      auto iter = shape_info.find("sink");
      EXPECT_NE(iter, shape_info.end());
      EXPECT_EQ(iter->second.size(), 1);
      EXPECT_EQ(iter->second.at(0).handle_type, DT_FLOAT);
      TensorShape resource_shape;
      EXPECT_TRUE(iter->second.at(0).handle_shape.AsTensorShape(&resource_shape));
      EXPECT_EQ(resource_shape, TensorShape({2, 3}));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/syscall_windows.go

    //sys	RtlLookupFunctionEntry(pc uintptr, baseAddress *uintptr, table *byte) (ret uintptr) = kernel32.RtlLookupFunctionEntry
    //sys	RtlVirtualUnwind(handlerType uint32, baseAddress uintptr, pc uintptr, entry uintptr, ctxt uintptr, data *uintptr, frame *uintptr, ctxptrs *byte) (ret uintptr) = kernel32.RtlVirtualUnwind
    
    type SERVICE_STATUS struct {
    	ServiceType             uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1/api.pb.go

    		return srv.(ExampleServer).GetExampleInfo(ctx, req.(*ExampleRequest))
    	}
    	return interceptor(ctx, in, info, handler)
    }
    
    var _Example_serviceDesc = grpc.ServiceDesc{
    	ServiceName: "v1beta1.Example",
    	HandlerType: (*ExampleServer)(nil),
    	Methods: []grpc.MethodDesc{
    		{
    			MethodName: "GetExampleInfo",
    			Handler:    _Example_GetExampleInfo_Handler,
    		},
    	},
    	Streams:  []grpc.StreamDesc{},
    	Metadata: "api.proto",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.pb.go

    		return srv.(ExampleServer).GetExampleInfo(ctx, req.(*ExampleRequest))
    	}
    	return interceptor(ctx, in, info, handler)
    }
    
    var _Example_serviceDesc = grpc.ServiceDesc{
    	ServiceName: "v1beta2.Example",
    	HandlerType: (*ExampleServer)(nil),
    	Methods: []grpc.MethodDesc{
    		{
    			MethodName: "GetExampleInfo",
    			Handler:    _Example_GetExampleInfo_Handler,
    		},
    	},
    	Streams:  []grpc.StreamDesc{},
    	Metadata: "api.proto",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top